/* ============================================
   EA Directory Landing Page Styles
   Professional & Corporate Design
   ============================================ */

/* CSS Variables */
:root {
    /* 
     * ===============================================
     * [IMPORTANT] THEME COLORS - UPDATE ME
     * ===============================================
     * Please update these Hex codes to match your new Logo.
     * Use a color picker tool to find the exact codes from your logo image.
     */
    --navy-primary: #1a365d;
    /* Primary Brand Color (e.g., Dark Blue) */
    --navy-dark: #0f2744;
    /* Darker shade of Primary */
    --navy-light: #2c5282;
    /* Lighter shade of Primary */

    --gold-primary: #d69e2e;
    /* Secondary/Accent Color (e.g., Gold) */
    --gold-light: #ecc94b;
    /* Lighter Accent */
    --gold-dark: #b7791f;
    /* Darker Accent */

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f7fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success: #38a169;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(214, 158, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
}

.btn-secondary:hover {
    background: var(--navy-primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Section Styles */
.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(214, 158, 46, 0.1);
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    color: var(--navy-primary);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-ea {
    color: var(--gold-primary);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.875rem;
}

.nav-cta:hover {
    background: var(--gold-light);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(214, 158, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(214, 158, 46, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.typewriter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.2em;
}

.typewriter {
    color: var(--gold-primary);
    font-weight: 800;
}

.cursor {
    color: var(--gold-primary);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.title-static {
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ============================================
   Hook Section
   ============================================ */
.hook {
    padding: var(--section-padding) 0;
    background: var(--navy-dark);
}

.hook-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hook-title {
    color: var(--white);
    margin-bottom: 24px;
}

.hook-title .highlight {
    color: var(--gold-primary);
    position: relative;
}

.hook-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-expand 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes underline-expand {
    to {
        transform: scaleX(1);
    }
}

.hook-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hook-text strong {
    color: var(--gold-primary);
}

/* ============================================
   Value Proposition Section
   ============================================ */
.value-prop {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.problem-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--gold-primary);
    border-radius: 16px;
    margin-bottom: 24px;
}

.problem-title {
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.problem-text {
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
}

@media (max-width: 560px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 0.9375rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 161, 105, 0.1);
    color: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   Proof / Stats Section
   ============================================ */
.proof {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
}

.proof-content {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.proof-text {
    max-width: 700px;
    margin: 0 auto 48px;
}

.proof-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.proof-text strong {
    color: var(--gold-primary);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-badge svg {
    color: var(--gold-primary);
}

/* ============================================
   CTA / Form Section
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.cta-text {
    padding-right: 40px;
}

@media (max-width: 968px) {
    .cta-text {
        padding-right: 0;
        text-align: center;
    }
}

.cta-title {
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 968px) {
    .cta-features {
        align-items: center;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.cta-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.cta-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.form-container {
    min-height: 600px;
    position: relative;
}

.form-container iframe {
    position: relative;
    z-index: 1;
}

.form-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 40px;
}

.form-placeholder-content {
    text-align: center;
}

.form-placeholder h3 {
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.form-placeholder p {
    margin-bottom: 24px;
}

.form-placeholder code {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 24px;
    background: var(--navy-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 8px;
}

.footer-links a {
    color: var(--gold-primary);
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grids */
.problems-grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.problems-grid .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.problems-grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.benefits-grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.benefits-grid .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.benefits-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.benefits-grid .reveal:nth-child(4) {
    transition-delay: 0.25s;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll {
        display: none;
    }

    .problem-card {
        padding: 32px 24px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .benefit-check {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .hook-text {
        font-size: 1.0625rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cursor {
        animation: none;
    }

    .scroll-indicator::after {
        animation: none;
    }

    .hook-title .highlight::after {
        animation: none;
        transform: scaleX(1);
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

/* ============================================
   Multi-Step Form Styles
   ============================================ */
.multi-step-form {
    padding: 40px;
}

@media (max-width: 600px) {
    .multi-step-form {
        padding: 24px;
    }
}

/* Progress Bar */
.form-progress {
    margin-bottom: 32px;
}

.progress-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
    width: 50%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 120px;
    margin: 0 auto;
}

.progress-step {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50%;
    transition: var(--transition-base);
}

.progress-step.active {
    background: var(--gold-primary);
    color: var(--white);
}

.progress-step.completed {
    background: var(--success);
    color: var(--white);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step-title {
    color: var(--navy-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-step-desc {
    color: var(--text-light);
    margin-bottom: 28px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-group .required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23718096' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkbox-item:hover {
    border-color: var(--gray-300);
}

.checkbox-item:has(input:checked) {
    border-color: var(--gold-primary);
    background: rgba(214, 158, 46, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-prev {
    flex: 0 0 auto;
}

.btn-next,
.btn-submit {
    flex: 1;
}

.btn-submit {
    position: relative;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Error */
.form-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    color: #c53030;
    font-size: 0.9375rem;
    margin-top: 24px;
}

.form-error svg {
    flex-shrink: 0;
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e53e3e;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

/* Mobile Form Adjustments */
@media (max-width: 600px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-prev {
        order: 2;
    }

    .btn-next,
    .btn-submit {
        order: 1;
    }
}