/* =====================================================
   DriveBayern — Premium Design
   Color: Royal Blue + White + Gold accents
   Fonts: Fraunces (display) + Inter (body)
   ===================================================== */

:root {
    --blue-deep: #0a1f44;
    --blue-royal: #1e3a8a;
    --blue-bright: #2952cc;
    --blue-soft: #eef2fb;
    --blue-line: #d6dfee;
    --gold: #c9a961;
    --gold-bright: #e8c878;
    --gold-soft: #f7f0e0;
    --white: #ffffff;
    --cream: #fafaf7;
    --black: #0a0e1a;
    --gray-900: #1a1f2e;
    --gray-700: #4a5168;
    --gray-500: #7c8398;
    --gray-300: #c5cad7;
    --gray-100: #f1f2f6;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --container: 1240px;
    --radius: 4px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============= NAVIGATION ============= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 14px 0;
    border-bottom: 1px solid var(--blue-line);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--blue-deep);
    font-weight: 700;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--blue-deep);
    color: var(--gold-bright);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-text em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--blue-deep);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blue-deep);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--blue-royal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.25);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--blue-deep);
    transition: all 0.3s;
}

/* ============= HERO ============= */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, #f5f6f9 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--blue-royal);
    top: -200px;
    right: -150px;
    opacity: 0.15;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
    opacity: 0.12;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--blue-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue-line) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--blue-line);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.04);
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: var(--gold);
    opacity: 0.25;
    z-index: -1;
    transform: skewX(-3deg);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-700);
    max-width: 620px;
    margin-bottom: 44px;
    line-height: 1.65;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--blue-deep);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blue-royal);
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(10, 31, 68, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

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

.btn-ghost {
    background: transparent;
    color: var(--blue-deep);
    border: 1.5px solid var(--blue-line);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: var(--blue-deep);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--blue-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--blue-line);
}

/* Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-top: 1px solid var(--blue-line);
    border-bottom: 1px solid var(--blue-line);
    background: var(--white);
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
}

.marquee-track span:nth-child(odd) {
    color: var(--blue-deep);
}

.marquee-track span:nth-child(even) {
    color: var(--gold);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============= SECTIONS ============= */
.section-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    font-weight: 600;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-desc {
    font-size: 18px;
    color: var(--gray-700);
    margin-top: 24px;
    line-height: 1.6;
}

/* ============= ABOUT ============= */
.about {
    padding: 140px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.4;
    color: var(--blue-deep);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-text p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-card {
    position: relative;
    background: var(--blue-deep);
    color: var(--white);
    padding: 48px;
    border-radius: 4px;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.2;
    transform: translate(50%, -50%);
}

.card-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold);
}

.card-corner-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.card-corner-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.card-corner-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.card-corner-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-card > .card-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 24px;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============= OPPORTUNITIES ============= */
.opportunities {
    padding: 140px 0;
    background: var(--white);
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.opp-card {
    background: var(--cream);
    padding: 48px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.opp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.opp-card:hover {
    background: var(--white);
    border-color: var(--blue-line);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(10, 31, 68, 0.12);
}

.opp-card:hover::before {
    transform: scaleX(1);
}

.opp-card-featured {
    background: var(--blue-deep);
    color: var(--white);
}

.opp-card-featured:hover {
    background: var(--blue-deep);
    border-color: var(--gold);
}

.opp-card-featured h3,
.opp-card-featured .opp-icon {
    color: var(--gold-bright);
}

.opp-card-featured p {
    color: rgba(255, 255, 255, 0.8);
}

.opp-card-featured .opp-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.opp-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.opp-icon {
    color: var(--blue-deep);
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.opp-card:hover .opp-icon {
    transform: scale(1.1) rotate(-5deg);
}

.opp-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.opp-card p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.opp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.opp-tags span {
    background: var(--white);
    border: 1px solid var(--blue-line);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============= BENEFITS ============= */
.benefits {
    padding: 140px 0;
    background: var(--blue-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.benefits .section-tag {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
}

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

.benefits .section-title em {
    color: var(--gold-bright);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.benefit {
    padding: 48px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
    position: relative;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.03);
}

.benefit-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-bright);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.benefit h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.benefit p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* ============= PROCESS ============= */
.process {
    padding: 140px 0;
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.step {
    position: relative;
    padding-top: 16px;
}

.step-line {
    position: absolute;
    top: 36px;
    left: 56px;
    right: -32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 0;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--blue-deep);
    color: var(--blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--blue-deep);
    color: var(--gold-bright);
    transform: scale(1.05);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

/* ============= APPLY FORM ============= */
.apply {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.apply-form {
    background: var(--white);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius-lg);
    padding: 56px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 0 30px 80px -20px rgba(10, 31, 68, 0.08);
}

.form-progress {
    margin-bottom: 48px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-500);
}

.progress-text strong {
    color: var(--blue-deep);
    font-weight: 600;
}

.form-step {
    display: none;
    border: none;
    padding: 0;
}

.form-step.active {
    display: block;
    animation: stepIn 0.4s ease;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-legend {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-soft);
    color: var(--blue-deep);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--blue-line);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-body);
}

.field-help {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 6px;
    font-style: italic;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio,
.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1.5px solid var(--blue-line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    user-select: none;
}

.radio:hover,
.checkbox:hover {
    border-color: var(--blue-bright);
    color: var(--blue-deep);
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    accent-color: var(--blue-deep);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.radio:has(input:checked),
.checkbox:has(input:checked) {
    background: var(--blue-soft);
    border-color: var(--blue-deep);
    color: var(--blue-deep);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-consent {
    display: flex;
    align-items: flex-start;
    background: var(--blue-soft);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--blue-line);
    line-height: 1.5;
}

.checkbox-consent input {
    margin-top: 3px;
}

.consent-link {
    color: var(--blue-deep);
    text-decoration: underline;
    font-weight: 600;
}

/* Upload */
.upload-area {
    position: relative;
    border: 2px dashed var(--blue-line);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    background: var(--blue-soft);
    transition: all 0.3s;
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--blue-deep);
    background: var(--white);
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-content {
    text-align: center;
    color: var(--blue-deep);
    pointer-events: none;
}

.upload-content svg {
    color: var(--blue-bright);
    margin-bottom: 12px;
}

.upload-content p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.upload-content small {
    font-size: 12px;
    color: var(--gray-500);
}

.file-list {
    list-style: none;
    margin-top: 16px;
}

.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius);
    margin-top: 8px;
    font-size: 13px;
    pointer-events: auto;
}

.file-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-size: 18px;
}

.file-remove:hover {
    color: #dc2626;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--blue-line);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success */
.form-success {
    display: none;
    background: var(--white);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: stepIn 0.5s ease;
}

.form-success.show {
    display: block;
}

.success-icon {
    color: #10b981;
    margin-bottom: 24px;
    display: inline-block;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.form-success p {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.success-small {
    font-size: 13px !important;
    color: var(--gray-500) !important;
    margin-top: 24px !important;
}

/* ============= FOOTER ============= */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: var(--gold);
    color: var(--black);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--blue-line);
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .opp-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-line {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-form {
        padding: 32px 24px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .about,
    .opportunities,
    .benefits,
    .process,
    .apply {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 56px;
    }
    
    .marquee-track {
        font-size: 18px;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
