:root {
    --primary: #d2ff00;
    --dark: #1A1A1A;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --red-500: #ef4444;
    --font-sans: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--gray-50);
}

/* Layout */
.split-layout {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    width: 40%;
    background-color: var(--dark);
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    overflow: hidden;
}

.right-panel {
    width: 60%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

@media (max-width: 768px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
    }
}

/* Left Panel Content */
.panel-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease;
}

.quote {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(207, 239, 0, 0.2);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 24px 24px;
}

.progress-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    height: 0.375rem;
    width: 0.375rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.dot.active {
    width: 2rem;
    background-color: var(--primary);
}

/* Form Area */
.form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 42rem;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.form-step {
    display: none;
    animation: slideIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--gray-600);
}

/* Inputs */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
}

input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(207, 239, 0, 0.2);
}

.phone-wrapper {
    position: relative;
}

.country-code {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.75rem;
    border-right: 1px solid var(--gray-200);
}

.country-code img {
    width: 1.25rem;
    border-radius: 2px;
}

.phone-wrapper input {
    padding-left: 6.5rem;
}

/* Checkbox */
.checkbox-group {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem !important;
    color: var(--gray-600) !important;
    line-height: 1.4;
    font-weight: 400 !important;
}

.checkbox-label input {
    margin-top: 0.2rem;
    accent-color: var(--primary);
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
    color: var(--primary);
}


.error-msg {
    color: var(--red-500);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.25rem;
}

.error-msg.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--gray-600);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-ghost:hover {
    background-color: var(--gray-100);
    border-radius: 0.5rem;
}

.full-width {
    width: 100%;
}

.btn-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.flex-1 {
    flex: 1;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 0.75rem;
}

.options-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .options-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

.option-btn,
.option-card {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-600);
}

.option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.option-btn.selected,
.option-card.selected {
    border-color: var(--primary);
    background-color: rgba(207, 239, 0, 0.05);
    color: var(--dark);
    font-weight: 500;
}

.option-card.selected .icon {
    background-color: var(--primary);
    color: var(--dark);
}

/* Radio List */
.radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    background-color: var(--gray-50);
}

.radio-option input:checked+span {
    font-weight: 600;
    color: var(--dark);
}

.radio-option:has(input:checked) {
    border-color: var(--primary);
    background-color: rgba(207, 239, 0, 0.05);
}

.radio-option input {
    margin-right: 1rem;
    accent-color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
}

/* Review Step */
.review-card {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

.review-item h4 {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.review-item p {
    font-weight: 500;
}

.review-item.full {
    grid-column: 1 / -1;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray-600);
}

/* Success */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.success-icon span {
    font-size: 5rem;
}

/* Footer */
.form-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.form-footer a {
    color: inherit;
    text-decoration: none;
}

.form-footer a:hover {
    color: var(--dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hidden {
    display: none !important;
}

.loader {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--dark);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}