/* ===== Booking Section & Wizard ===== */
.booking {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, white, var(--neutral-50));
}

.wizard-wrapper {
    max-width: 1050px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 30px rgba(16, 185, 129, 0.05);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.1);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Wizard Progress */
.wizard-progress {
    padding: 2.5rem 2rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.progress-track {
    position: absolute;
    top: 3.6rem;
    left: 4.5rem;
    right: 4.5rem;
    height: 6px;
    background: var(--neutral-100);
    z-index: 1;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600), var(--accent-500));
    background-size: 200% auto;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 140px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--neutral-500);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    position: relative;
}

.progress-step.active .step-circle {
    border-color: var(--primary-500);
    background: var(--primary-500);
    color: white;
    box-shadow: 0 0 0 8px var(--primary-50), 0 0 25px rgba(16, 185, 129, 0.3);
    transform: scale(1.15);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-100), 0 0 25px rgba(16, 185, 129, 0.3);
    }

    70% {
        box-shadow: 0 0 0 15px transparent, 0 0 25px rgba(16, 185, 129, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 transparent, 0 0 25px rgba(16, 185, 129, 0.3);
    }
}

.progress-step.completed .step-circle {
    border-color: var(--primary-500);
    background: var(--primary-500);
    color: white;
}

.step-check {
    width: 22px;
    height: 22px;
    display: none;
    stroke-width: 3;
}

.progress-step.completed .step-number {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-600);
    letter-spacing: 0.3px;
}

.progress-step.active .step-label {
    color: var(--primary-600);
    font-weight: 700;
}

/* Wizard Body */
.wizard-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 600px;
    background: white;
}

/* Left Sidebar */
.booking-info {
    background: var(--neutral-50);
    padding: 3rem 2rem;
    border-right: 1px solid var(--neutral-100);
}

.booking-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--neutral-900);
    letter-spacing: -0.5px;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, white, var(--neutral-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-200);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--neutral-800);
}

.benefit-text p {
    font-size: 0.92rem;
    color: var(--neutral-500);
    line-height: 1.6;
    margin: 0;
}

/* Right Form Area */
.booking-form-container {
    padding: 3rem 3.5rem;
    position: relative;
    background: white;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* Animations for steps */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.slide-in-right {
    animation: slideInRight 0.4s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.4s ease-out forwards;
}

.slide-right {
    animation: slideOutRight 0.4s ease-in forwards;
}

.slide-left {
    animation: slideOutLeft 0.4s ease-in forwards;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-100);
}

.step-header-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: var(--neutral-50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-700);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.step-desc {
    color: var(--neutral-500);
    margin: 0;
    font-size: 1.05rem;
}

/* Cards & Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    font-weight: 700;
    color: var(--neutral-600);
    font-size: 0.85rem;
    margin-left: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
    color: var(--neutral-400);
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    /* Space for icon */
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--neutral-800);
    appearance: none;
}

.input-wrapper-select::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--neutral-300);
    background-color: var(--neutral-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px var(--primary-100), 0 10px 20px -5px rgba(16, 185, 129, 0.15);
    background-color: white;
    outline: none;
    padding-left: 3.75rem;
    /* Slight shift to the right */
}

.form-group input:focus+.input-icon,
.form-group:focus-within .input-icon {
    color: var(--primary-500);
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group.valid input,
.form-group.valid select {
    border-color: #10b981;
}

.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
    margin-left: 0.5rem;
    animation: slideDown 0.2s ease-out;
}

.field-error.visible {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Consultation Cards */
.consult-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.consult-card {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.consult-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consult-card-inner {
    border: 2px solid var(--neutral-200);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: white;
}

.consult-card:hover .consult-card-inner {
    border-color: var(--primary-300);
    background: var(--primary-50);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.consult-card input:checked+.consult-card-inner {
    border-color: var(--primary-500);
    background: var(--primary-50);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    background-image: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 70%);
}

.consult-card-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.consult-card-text strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--neutral-900);
    font-size: 1.1rem;
    font-weight: 700;
}

.consult-card-text span {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.4;
    display: block;
}

.consult-card-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: var(--primary-500);
    border-radius: 50%;
    color: white;
    padding: 5px;
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.consult-card input:checked+.consult-card-inner .consult-card-check {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Location Cards */
.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card-radio {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.location-card-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.location-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    transition: all 0.2s;
    background: white;
}

.location-card-pin {
    font-size: 1.5rem;
    background: var(--neutral-50);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card-info {
    flex: 1;
}

.location-card-info strong {
    display: block;
    color: var(--neutral-900);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.location-card-info span {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
}

.location-card-info .location-hours {
    font-size: 0.85rem;
    color: var(--primary-600);
    margin-top: 0.5rem;
    font-weight: 600;
    background: var(--primary-50);
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.location-card-check {
    width: 24px;
    height: 24px;
    color: var(--primary-500);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.location-card-radio input:checked+.location-card-inner {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

.location-card-radio input:checked+.location-card-inner .location-card-check {
    opacity: 1;
    transform: translateX(0);
}

/* Review Summary */
.review-summary-card {
    background: linear-gradient(135deg, white 0%, var(--neutral-50) 100%);
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.review-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

.review-section-title {
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-family: var(--font-display);
}

.review-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--neutral-100);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

.review-item {
    display: flex;
    flex-direction: column;
}

.review-label {
    font-size: 0.8rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.review-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.review-item-highlight .review-value {
    color: var(--primary-700);
    font-weight: 800;
}

.review-fee {
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.review-divider {
    height: 1px;
    background: var(--neutral-200);
    margin: 2rem 0;
}

.review-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px dashed var(--neutral-300);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--neutral-600);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-100);
}

.btn-wizard-next,
.btn-wizard-prev {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-wizard-next::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-wizard-next:hover::after {
    left: 120%;
}

.btn-wizard-next:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn-wizard-prev:hover {
    background: var(--neutral-100);
    transform: translateX(-5px);
}

.wizard-nav button {
    min-width: 140px;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* Payment Timer */
.payment-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 1rem;
    color: var(--neutral-600);
    margin-top: 1.5rem;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.payment-timer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-300);
}

.payment-timer strong {
    font-variant-numeric: tabular-nums;
    color: var(--primary-600);
    font-weight: 800;
    font-size: 1.1rem;
}

.payment-timer.timer-warning {
    background: #fff1f2;
    color: #e11d48;
    border-color: #fecdd3;
    animation: pulseWarning 1.5s infinite;
}

@keyframes pulseWarning {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

/* Confetti */
.confetti-piece {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: var(--color);
    top: 0;
    left: var(--x);
    opacity: 0;
    animation: fall 3s ease-in-out forwards;
    animation-delay: var(--delay);
    z-index: 100;
}

.confetti-circle {
    border-radius: 50%;
}

.confetti-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(600px) rotate(var(--rotation));
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Success State Enhancements */
.success-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.success-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-100);
    border-radius: 50%;
    animation: ringGrow 2s ease-out infinite;
}

@keyframes ringGrow {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.success-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
    animation: scaleCheck 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleCheck {
    0% {
        transform: scale(0) rotate(-45deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/* Form Shake Animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

.review-disclaimer {
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: var(--primary-50);
    border-radius: 12px;
    border: 1px solid var(--primary-100);
}

.disclaimer-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.5;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--neutral-300);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all 0.2s;
    background: white;
}

.disclaimer-checkbox input {
    display: none;
}

.disclaimer-checkbox input:checked+.checkbox-custom {
    background: var(--primary-500);
    border-color: var(--primary-500);
}

.disclaimer-checkbox input:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .wizard-body {
        grid-template-columns: 260px 1fr;
    }

    .booking-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 900px) {
    .wizard-body {
        grid-template-columns: 1fr;
    }

    .booking-info {
        display: none;
        /* Hide sidebar on mobile */
    }

    .booking-form-container {
        padding: 2rem 1.5rem;
    }

    .wizard-progress {
        padding: 2rem 1rem 0;
        margin-bottom: 2rem;
    }

    .progress-track {
        top: 3.2rem;
        left: 3rem;
        right: 3rem;
    }
}

@media (max-width: 600px) {
    .step-label {
        font-size: 0.75rem;
    }

    .consult-type-cards {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wizard-nav {
        flex-direction: column-reverse;
        /* Stack buttons */
        gap: 1rem;
        margin-top: 2rem;
    }

    .wizard-nav button {
        width: 100%;
        justify-content: center;
    }

    .progress-track {
        top: 2.5rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .progress-step {
        width: auto;
    }

    .step-header {
        gap: 1rem;
    }

    .step-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
        border-radius: 12px;
    }

    .step-title {
        font-size: 1.35rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }
}