:root {
    /* Color Palette */
    --clr-bg: #0A192F;
    --clr-surface: #112240;
    --clr-accent: #B8860B;
    --clr-accent-rgb: 184, 134, 11;
    --clr-success: #9DC183;
    --clr-warning: #FF6B6B;
    --clr-text-main: #F8F9FA;
    --clr-text-muted: #CBD5E1;
    --clr-border: rgba(248, 249, 250, 0.1);

    /* Typography */
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--clr-border);
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--clr-text-main);
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    letter-spacing: 2px;
    color: var(--clr-accent);
    font-style: italic;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--clr-accent);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--clr-accent);
    color: #000;
}

.btn-primary:hover {
    background-color: #E5C354;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--clr-accent-rgb), 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #000;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-link {
    background: transparent;
    color: var(--clr-text-muted);
}

.btn-link:hover {
    color: var(--clr-text-main);
}

.btn-hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--clr-bg) 40%, transparent 100%),
        url('verithic_hero_brand.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 .accent {
    color: var(--clr-accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Visual Card */
.visual-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-border);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-label {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-value.highlight {
    color: var(--clr-accent);
}

.stat-value-money {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-success);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 2rem;
}

.progress-fill {
    height: 100%;
    background: var(--clr-accent);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Lead Capture Card (Hero) */
.lead-card {
    padding: 2rem;
    background: rgba(16, 22, 36, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lead-card .card-header {
    background: transparent;
    color: var(--clr-text-main);
    padding: 0 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.lead-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--clr-accent);
}

.card-body {
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' 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: right 1rem center;
    background-size: 1.2em;
    cursor: pointer;
}

.form-group select option {
    background: #0A0F1E;
    color: white;
    padding: 10px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group select.error,
.form-group input.error {
    border-color: var(--clr-warning);
}

.full-width {
    width: 100%;
}

.form-note {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* RGPD Consent row */
.rgpd-consent {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.rgpd-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.15rem;
    width: 14px;
    height: 14px;
    accent-color: var(--clr-accent);
    cursor: pointer;
}

.rgpd-consent a {
    color: var(--clr-accent);
    text-decoration: underline;
}

/* Multi-step Form */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.step-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.step-indicator .dot.active {
    background: var(--clr-accent);
    transform: scale(1.2);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-actions.row-actions {
    gap: 1rem;
}

.form-message {
    text-align: center;
    margin-bottom: 2rem;
}

.form-message h4 {
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.form-message p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Radio Cards */
.radio-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.05rem;
    font-weight: 400;
    color: #E2E8F0;
    letter-spacing: 0.3px;
    min-height: 64px;
    /* Better mobile tap target */
}

.radio-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card.selected {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--clr-accent);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15), inset 0 0 0 1px var(--clr-accent);
}

.rc-text {
    flex-grow: 1;
}

/* Custom Luxury Radio Circle */
.radio-card::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-card.selected::before {
    border-color: var(--clr-accent);
    background: radial-gradient(circle, var(--clr-accent) 0%, var(--clr-accent) 35%, transparent 40%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Steps Section */
.section-steps {
    padding: 8rem 0;
    background: #0A0F1E;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-5px);
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-heading);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--clr-accent);
}

.step-content p {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

/* Builder Section */
.section-builder {
    padding: 8rem 0;
    background: rgba(22, 28, 44, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Card */
.service-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(157, 193, 131, 0.1);
    color: var(--clr-success);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(157, 193, 131, 0.3);
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.toggle-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--clr-success);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.service-card.selected {
    border-color: var(--clr-success);
    background: rgba(157, 193, 131, 0.05);
}

/* Builder Summary */
.builder-summary {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-accent);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.summary-metric .label {
    display: block;
    color: var(--clr-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.summary-metric .value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard Styles */
.section-dashboard {
    padding: 8rem 0;
    min-height: 100vh;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.sidebar-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Radial Progress */
.radial-progress {
    position: relative;
    width: 150px;
    margin: 0 auto;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: var(--clr-border);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: var(--clr-accent);
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Kanban */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kanban-column {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
}

.kanban-column h4 {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kanban-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.card-tag.high {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.card-tag.medium {
    background: rgba(212, 175, 55, 0.2);
    color: var(--clr-accent);
}

.card-tag.low {
    background: rgba(157, 193, 131, 0.2);
    color: var(--clr-success);
}

.progress-mini {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 1rem;
}

.progress-mini .fill {
    height: 100%;
    background: var(--clr-accent);
    border-radius: 2px;
}

/* Forms & Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: #0A0F1E;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: white;
}

/* FAQ Section */
.section-faq {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.faq-item h3 {
    color: var(--clr-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--clr-text-muted);
}

/* Activity Feed */
.activity-feed {
    list-style: none;
}

.activity-feed li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.85rem;
}

.activity-feed li .time {
    color: var(--clr-accent);
    font-weight: 700;
    margin-right: 1rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

.footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Success Section */
.section-success {
    padding: 8rem 0;
}

.success-card {
    background: var(--clr-surface);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.success-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    color: var(--clr-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.success-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.success-content p {
    color: var(--clr-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.success-stats {
    display: flex;
    gap: 3rem;
}

.s-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--clr-accent);
}

.s-stat span {
    color: var(--clr-text-muted);
    font-size: 0.8rem;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .success-card {
        grid-template-columns: 1fr;
    }

    .success-content {
        padding: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.hidden {
    display: none;
}

/* Slot Picker */
.slot-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.slot-chip {
    padding: 0.6rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.03);
    user-select: none;
}

.slot-chip:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: white;
    background: rgba(212, 175, 55, 0.06);
}

.slot-chip.selected {
    border-color: var(--clr-accent);
    background: rgba(212, 175, 55, 0.12);
    color: var(--clr-accent);
    font-weight: 600;
    box-shadow: 0 0 0 1px var(--clr-accent);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .builder-summary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Exit-Intent Modal */
.modal-exit {
    background: linear-gradient(145deg, var(--clr-surface) 0%, #0d121f 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
}

.exit-header {
    text-align: center;
    margin-bottom: 2rem;
}

.exit-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.exit-header p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.exit-form input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Force email input visibility in step 5 */
#email {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 50;
    border: 2px solid var(--clr-accent) !important;
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}
