/* ============================================
   NESTOR-STYLE LANDING PAGE
   Colors from lp_1: #9a359a (purple primary)
   Style: Modern, conversational, smooth animations
   ============================================ */

:root {
    --primary-color: #9a359a;
    --primary-dark: #7a2b7a;
    --primary-light: #b14fb1;
    --secondary-color: #471B51;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --shadow-sm: 0 2px 8px rgba(154, 53, 154, 0.1);
    --shadow-md: 0 4px 16px rgba(154, 53, 154, 0.15);
    --shadow-lg: 0 8px 32px rgba(154, 53, 154, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #fdfcfd 0%, #ffffff 50%, #fdfcfd 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    position: relative;
}

/* Dégradés subtils sur les côtés en desktop */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 0;
    pointer-events: none;
}

body::before {
    left: 0;
    background: linear-gradient(to right,
        rgba(154, 53, 154, 0.03) 0%,
        rgba(154, 53, 154, 0.015) 50%,
        transparent 100%);
}

body::after {
    right: 0;
    background: linear-gradient(to left,
        rgba(177, 79, 177, 0.03) 0%,
        rgba(177, 79, 177, 0.015) 50%,
        transparent 100%);
}

@media (max-width: 1024px) {
    body::before,
    body::after {
        display: none;
    }
}

/* Optimisation des images pour les performances */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimisation du rendu */
.form-container,
.reassurance-section {
    will-change: auto;
    contain: layout style paint;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 12px rgba(154, 53, 154, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(154, 53, 154, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-logo img {
    height: 65px;
    width: auto;
}

.header-tagline {
    text-align: right;
    line-height: 1.3;
}

.header-tagline .tagline-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 4px 0;
    font-weight: 400;
}

.header-tagline .tagline-url {
    font-size: 15px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    /* .header-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    } */

    .header-logo {
        justify-content: center;
    }

    .header-logo img {
        height: 50px;
    }

    .header-tagline {
        text-align: center;
    }

    .header-tagline .tagline-text {
        font-size: 11px;
        line-height: 1.2;
        margin: 0 0 2px 0;
    }

    .header-tagline .tagline-url {
        font-size: 12px;
    }
}

.header-logo svg {
    height: 80px;
    width: auto;
}

.header-logo-comparison {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-option svg {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-option:hover svg {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header-logo-comparison {
        gap: 20px;
    }

    .logo-option svg {
        height: 55px;
    }

    .logo-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .header-logo-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .logo-option svg {
        height: 50px;
    }
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 90px);
    padding: 40px 20px;
    background: transparent;
}

/* Layout desktop: formulaire à gauche, reassurance à droite */
@media (min-width: 1200px) {
    .main-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }

    .main-wrapper > .form-container {
        width: 100%;
    }

    .main-content-wrapper {
        display: flex;
        gap: 40px;
        width: 100%;
        align-items: flex-start;
    }

    .left-column {
        flex: 0 0 60%;
        max-width: 60%;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 2px 20px rgba(154, 53, 154, 0.08),
                    0 0 1px rgba(154, 53, 154, 0.15);
        border: 1px solid rgba(154, 53, 154, 0.08);
        backdrop-filter: blur(10px);
    }

    .right-column {
        flex: 0 0 40%;
        max-width: 40%;
        min-width: auto;
        position: sticky;
        top: 100px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 2px 20px rgba(154, 53, 154, 0.08),
                    0 0 1px rgba(154, 53, 154, 0.15);
        border: 1px solid rgba(154, 53, 154, 0.08);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 1199px) {
    .main-content-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .left-column,
    .right-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 20px 15px;
        min-height: auto;
    }
}

/* ============================================
   HERO TITLE SECTION
   ============================================ */
.hero-title-section {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    border: 2px solid rgba(154, 53, 154, 0.15);
    backdrop-filter: blur(10px);
}

@media (min-width: 1200px) {
    .hero-title-section {
        margin-bottom: 40px;
    }
}

.hero-title-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(154, 53, 154, 0.15), rgba(177, 79, 177, 0.08));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
}

.hero-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title-section {
        margin-bottom: 20px;
        padding: 15px;
    }

    .hero-main-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}

.form-container {
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    background: transparent;
}

@media (min-width: 1200px) {
    .form-container {
        max-width: none;
        margin: 0;
    }
}

.form-background {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.form-background svg {
    width: 100%;
    height: auto;
}

/* Decorative waves */
.decorative-waves {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}

.decorative-waves-top {
    top: -50px;
    height: 120px;
}

.decorative-waves-section {
    top: -80px;
    height: 180px;
}

.decorative-waves svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Motifs décoratifs supplémentaires */
.form-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(154, 53, 154, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.form-content::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(177, 79, 177, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .form-content::before,
    .form-content::after {
        display: none;
    }

    .decorative-waves-top {
        height: 80px;
    }


}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* ============================================
   FORM CONTENT
   ============================================ */
.form-content {
    position: relative;
    z-index: 1;
    background: transparent;
}

.form-steps {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
    min-height: 400px;
    position: relative;
    border: none;
    overflow: hidden;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(154, 53, 154, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.form-steps::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(177, 79, 177, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 1;
}

.form-step.active {
    display: block;
    animation: slideInUp 0.5s ease-out forwards;
}

.form-step.exit {
    animation: slideOutUp 0.4s ease-out forwards;
}

/* ============================================
   QUESTION BOX
   ============================================ */
.question-box {
    width: 100%;
}

.question-label {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* ============================================
   OPTIONS GRID (for icons)
   ============================================ */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(154, 53, 154, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: center;
    min-height: 140px;
    will-change: transform;
    backface-visibility: hidden;
}

.option-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(154, 53, 154, 0.08) 0%, rgba(154, 53, 154, 0.15) 100%);
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-md);
}

.option-btn:active {
    transform: translate3d(0, -2px, 0);
}

.option-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.option-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.option-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   OPTIONS LIST (vertical buttons)
   ============================================ */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.option-btn-list {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(154, 53, 154, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    width: 100%;
}

.option-btn-list:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(154, 53, 154, 0.08) 0%, rgba(154, 53, 154, 0.12) 100%);
    transform: translate3d(4px, 0, 0);
    box-shadow: var(--shadow-sm);
}

.option-icon-sm {
    font-size: 24px;
    margin-right: 15px;
}

.option-text-list {
    flex: 1;
}

/* ============================================
   FORM INPUTS
   ============================================ */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.text-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(154, 53, 154, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.text-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 53, 154, 0.1);
}

.text-input::placeholder {
    color: #999;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 20px;
    box-shadow: var(--shadow-md);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(0);
}

/* Sticky CTA container */
.sticky-cta-container {
    position: relative;
}

@media (max-width: 768px) {
    .sticky-cta-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
        padding: 12px 16px 16px;
        z-index: 999;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    }

    .sticky-cta-container .btn-next,
    .sticky-cta-container .btn-submit {
        box-shadow: 0 4px 16px rgba(154, 53, 154, 0.3);
    }

    /* Ajouter un espace en bas pour le sticky button */
    .form-step[data-step="2"] .question-box,
    .form-step[data-step="5"] .question-box {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .sticky-cta-container {
        position: sticky;
        bottom: 20px;
        z-index: 10;
    }
}

.btn-next svg,
.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-next:hover svg,
.btn-submit:hover svg {
    transform: translateX(4px);
}

/* Button Back */
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: none;
}

.btn-back:hover {
    background: rgba(154, 53, 154, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-back:active {
    transform: translateY(0);
}

.btn-back svg {
    transition: transform 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(-4px);
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.btn-group .btn-back {
    flex: 0 0 auto;
    width: auto;
    min-width: 120px;
}

.btn-group .btn-next,
.btn-group .btn-submit {
    flex: 1 1 auto;
    margin-top: 0;
}

@media (max-width: 480px) {
    .btn-group {
        gap: 8px;
    }

    .btn-group .btn-back {
        min-width: 100px;
        padding: 16px 20px;
    }

    .btn-group .btn-next,
    .btn-group .btn-submit {
        padding: 16px 24px;
    }
}

/* ============================================
   CHECKBOX
   ============================================ */
.checkbox-group {
    margin: 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================
   SUCCESS BOX
   ============================================ */
.success-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.success-box::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.success-box::after {
    content: '🎉';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.success-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.success-subtext {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-redirect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-redirect:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-icon {
    font-size: 20px;
}

.privacy-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale3d(0, 0, 1);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
        opacity: 0.8;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .form-steps {
        padding: 20px 16px;
        min-height: 350px;
    }

    .question-label {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .option-btn {
        padding: 16px 10px;
        min-height: 110px;
    }

    .option-icon {
        font-size: 32px;
    }

    .option-text {
        font-size: 14px;
    }

    .trust-indicators {
       /* flex-direction: column; */
        gap: 15px;
    }
    .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-light);
}

.trust-icon {
    font-size: 12px;
}

    .trust-item {
        justify-content: center;
    }
}

/* ============================================
   REASSURANCE SECTION
   ============================================ */
.reassurance-section {
    background: transparent;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Sur desktop, la section est dans la colonne de droite */
@media (min-width: 1200px) {
    .reassurance-section {
        padding: 0;
    }
}

.reassurance-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(154, 53, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reassurance-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(177, 79, 177, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reassurance-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 400px;
    touch-action: pan-y;
}

.reassurance-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    width: 100%;
    min-height: 380px;
}

.reassurance-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Features */
.service-features {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.reviews-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.reassurance-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 53, 154, 0.08);
    border-radius: 50%;
    padding: 12px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Reviews Container */
.reviews-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trustpilot-logo {
    height: 32px;
    width: auto;
}

.reviews-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars img {
    height: 20px;
    width: auto;
}

.review-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.review-date {
    font-size: 11px;
    color: var(--text-light);
}

/* Slider Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--primary-light);
}

/* Responsive Reassurance */
@media (max-width: 768px) {
    .reassurance-section {
        padding: 40px 20px;
    }

    .service-features,
    .reviews-container {
        padding: 24px;
    }

    .reassurance-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .hero-main-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-wrapper {
        padding: 10px 10px;
    }

    .form-steps {
        padding: 16px 12px;
        min-height: 300px;
    }

    .question-label {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .option-btn {
        padding: 14px 10px;
        min-height: 100px;
    }

    .option-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .option-text {
        font-size: 13px;
    }

    .option-desc {
        font-size: 11px;
    }

    .btn-next,
    .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-features,
    .reviews-container {
        padding: 20px;
    }

    .hero-main-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-title-section {
        margin-bottom: 16px;
    }
}
