/* ═══════════════════════════════════════════════════════════════
   HANS AGENCY LIVE — PREMIUM RECRUITMENT LANDING
   Bloomberg Terminal × Underground Media Production
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Core Colors — Editorial + Terminal */
    --black: #000000;
    --near-black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --mid-gray: #2A2A2A;
    
    /* Gold Accents — Serious Money */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    
    /* Terminal Green */
    --terminal-green: #00FF41;
    --terminal-dim: #00AA2B;
    
    /* Text */
    --white: #FFFFFF;
    --gray-light: #CCCCCC;
    --gray-mid: #999999;
    --gray-dark: #666666;
    
    /* Accent */
    --red: #FF0000;
    --blue: #0066FF;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */

/* Fade in from bottom */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll reveal animation class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════
   TERMINAL CURSOR — DISABLED
   ═══════════════════════════════════════════════════════════════ */

.terminal-cursor {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED SVG BACKGROUND
   ═══════════════════════════════════════════════════════════════ */

.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Animated Lines */
.svg-line {
    stroke-dasharray: 1920;
    stroke-dashoffset: 1920;
    animation: drawLine 8s ease-in-out infinite;
}

.svg-line-1 { animation-delay: 0s; }
.svg-line-2 { animation-delay: 2s; }
.svg-line-3 { animation-delay: 4s; }
.svg-line-4 { animation-delay: 6s; }

@keyframes drawLine {
    0%, 100% {
        stroke-dashoffset: 1920;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
}

/* Animated Dots */
.svg-dot {
    animation: pulseDot 3s ease-in-out infinite;
}

.svg-dot-1 { animation-delay: 0s; }
.svg-dot-2 { animation-delay: 0.5s; }
.svg-dot-3 { animation-delay: 1s; }
.svg-dot-4 { animation-delay: 1.5s; }
.svg-dot-5 { animation-delay: 2s; }
.svg-dot-6 { animation-delay: 2.5s; }

@keyframes pulseDot {
    0%, 100% {
        opacity: 0.2;
        r: 3;
    }
    50% {
        opacity: 0.8;
        r: 5;
    }
}

/* Data Stream Lines */
.svg-stream {
    stroke-dasharray: 20 10;
    animation: flowStream 15s linear infinite;
}

.svg-stream-1 { animation-delay: 0s; }
.svg-stream-2 { animation-delay: 5s; }
.svg-stream-3 { animation-delay: 10s; }

@keyframes flowStream {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0.1;
    }
}

/* Geometric Shapes */
.svg-shape {
    animation: rotateShape 20s linear infinite;
    transform-origin: center;
}

.svg-shape-1 { animation-duration: 20s; }
.svg-shape-2 { animation-duration: 25s; animation-direction: reverse; }
.svg-shape-3 { animation-duration: 30s; }
.svg-shape-4 { animation-duration: 35s; animation-direction: reverse; }

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.2;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .svg-background {
        opacity: 0.3;
    }
    
    .svg-stream,
    .svg-shape {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GRID OVERLAY
   ═══════════════════════════════════════════════════════════════ */

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-mark {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    border-radius: 2px;
    position: relative;
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
}

.brand-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-lang {
    display: flex;
    gap: 10px;
    margin-left: 30px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--mid-gray);
    color: var(--gray-mid);
    padding: 8px 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gray-mid);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
}

.badge-icon {
    font-size: 8px;
}

.badge-pulse {
    position: absolute;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 120px;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    color: var(--white);
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-light);
    max-width: 600px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.stat-card {
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
}

.stat-card:hover::before {
    width: 5px;
    box-shadow: 0 0 10px var(--gold);
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 10px;
    padding-left: 20px;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-mid);
    padding-left: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   TERMINAL WIDGET
   ═══════════════════════════════════════════════════════════════ */

.hero-terminal {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    z-index: 3;
}

.terminal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
}

.terminal-dot:nth-child(1) { background: #FF5F56; }
.terminal-dot:nth-child(2) { background: #FFBD2E; }
.terminal-dot:nth-child(3) { background: #27C93F; }

.terminal-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    color: var(--gray-mid);
    margin-left: auto;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 30px;
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
}

.terminal-line {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-light);
}

.terminal-prompt {
    color: var(--gold);
    font-weight: 700;
}

.terminal-text {
    flex: 1;
}

.text-success {
    color: var(--terminal-green);
    font-weight: 600;
}

.text-gold {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1400px) {
    .hero-terminal {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 60px;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 30px 40px;
    }
    
    .hero-title {
        font-size: 60px;
        letter-spacing: -2px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   CALCULATOR SECTION
   ═══════════════════════════════════════════════════════════════ */

.calculator {
    padding: 150px 60px;
    background: var(--near-black);
    position: relative;
}

.calculator-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
}

.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 0.9;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-mid);
    max-width: 600px;
}

.calculator-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white);
}

.control-value {
    color: var(--gold);
    font-size: 14px;
}

.control-slider {
    width: 100%;
    height: 2px;
    background: var(--mid-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.control-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--black);
}

.control-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--black);
}

.control-marks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray-dark);
    font-family: 'Space Grotesk', monospace;
}

.performance-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.performance-btn {
    padding: 12px;
    background: transparent;
    border: 1px solid var(--mid-gray);
    color: var(--gray-mid);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.performance-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.performance-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-display {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
}

.result-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-mid);
    margin-bottom: 20px;
}

.result-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 30px;
}

.currency {
    font-size: 48px;
}

.decimal {
    font-size: 36px;
    color: var(--gray-dark);
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--mid-gray);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-light);
}

.breakdown-item span:last-child {
    color: var(--white);
    font-weight: 600;
}

.result-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.6;
}

.result-note i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   POSITION SECTION
   ═══════════════════════════════════════════════════════════════ */

.position {
    padding: 150px 60px;
    background: var(--black);
}

.position-container {
    max-width: 1600px;
    margin: 0 auto;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.position-card {
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.position-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.position-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-color: var(--gold);
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 30px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 30px;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-list li {
    font-size: 15px;
    color: var(--gray-light);
    padding-left: 25px;
    position: relative;
}

.card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.career-path {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.career-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.step-duration,
.step-income {
    font-size: 13px;
    color: var(--gray-mid);
}

.step-income {
    color: var(--gold);
    font-weight: 600;
}

.career-arrow {
    color: var(--gold);
    font-size: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS TIMELINE
   ═══════════════════════════════════════════════════════════════ */

.process {
    padding: 150px 60px;
    background: var(--near-black);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border: 3px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--black);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    flex: 1;
    padding: 20px 0;
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.timeline-duration {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */

.faq {
    padding: 150px 60px;
    background: var(--black);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 2px;
    background: rgba(212, 175, 55, 0.2);
}

.faq-item {
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

.faq-item.active {
    background: var(--near-black);
}

.faq-question {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 40px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 40px 30px 40px;
}

/* ═══════════════════════════════════════════════════════════════
   APPLICATION FORM
   ═══════════════════════════════════════════════════════════════ */

.application {
    padding: 150px 60px;
    background: var(--near-black);
}

.application-container {
    max-width: 1200px;
    margin: 0 auto;
}

.application-header {
    margin-bottom: 80px;
}

.application-form {
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-mid);
}

.form-input,
.form-select {
    padding: 16px 20px;
    background: var(--black);
    border: 1px solid var(--mid-gray);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-input::placeholder {
    color: var(--gray-dark);
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-notice {
    text-align: center;
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 80px 60px 40px;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-info {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--mid-gray);
    font-size: 12px;
    color: var(--gray-dark);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SELECTION MODAL
   ═══════════════════════════════════════════════════════════════ */

.lang-modal {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    padding: 60px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.lang-modal::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(20px);
}

.lang-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--black);
    animation: pulse 2s ease-in-out infinite;
}

.lang-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.lang-modal-subtitle {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 40px;
    line-height: 1.6;
}

.lang-modal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lang-modal-btn {
    padding: 25px 30px;
    background: var(--black);
    border: 2px solid var(--mid-gray);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lang-modal-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.lang-flag {
    font-size: 36px;
}

.lang-name {
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lang-modal {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .lang-modal-buttons {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-gray);
    border: 1px solid var(--gold);
    padding: 60px;
    max-width: 500px;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--black);
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.modal-text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.modal-id {
    color: var(--gold);
    font-weight: 700;
}

.modal-subtext {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 40px;
}

.modal-btn {
    padding: 15px 40px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .calculator-widget {
        grid-template-columns: 1fr;
    }
    
    .position-grid {
        grid-template-columns: 1fr;
    }
    
    .position-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .calculator,
    .position,
    .process,
    .faq,
    .application {
        padding: 80px 30px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .career-path {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .career-arrow {
        transform: rotate(90deg);
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SELECTION MODAL
   ═══════════════════════════════════════════════════════════════ */

.lang-modal {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    padding: 60px;
    max-width: 600px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .lang-modal {
    transform: scale(1);
}

.lang-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--black);
}

.lang-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.lang-modal-subtitle {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 40px;
    line-height: 1.6;
}

.lang-modal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lang-modal-btn {
    padding: 20px;
    background: var(--black);
    border: 1px solid var(--mid-gray);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lang-modal-btn:hover,
.lang-modal-btn.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.lang-flag {
    font-size: 28px;
}

.lang-name {
    font-size: 16px;
}

@media (max-width: 768px) {
    .lang-modal {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .lang-modal-buttons {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE TOUCH IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Better touch targets for mobile */
@media (max-width: 768px) {
    /* Ensure all interactive elements have minimum 44px touch target */
    .btn,
    .nav-cta,
    .lang-btn,
    .performance-btn,
    .faq-question,
    .form-submit,
    .modal-btn,
    .lang-modal-btn {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Smooth scrolling on mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent text selection on buttons */
    .btn,
    .nav-cta,
    .lang-btn,
    .performance-btn,
    .form-submit,
    .modal-btn,
    .lang-modal-btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Better input focus on mobile */
    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }
    
    /* Prevent zoom on input focus (iOS) */
    .form-input,
    .form-select {
        font-size: 16px !important;
    }
    
    /* Better slider touch area */
    .control-slider {
        height: 44px;
        background: transparent;
        position: relative;
    }
    
    .control-slider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--mid-gray);
        transform: translateY(-50%);
        pointer-events: none;
    }
    
    /* Larger slider thumb for mobile */
    .control-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
        margin-top: -10px;
        position: relative;
        z-index: 2;
    }
    
    .control-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Section CTA Buttons */
.section-cta {
    margin-top: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
    min-width: 280px;
}

/* Tablet & Mobile Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobile menu toggle - hidden by default, shown on mobile */
    .nav-menu-toggle {
        display: none;
    }
    
    .nav-lang {
        gap: 8px;
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Hero */
    .hero-container {
        padding: 120px 30px 60px;
    }
    
    .hero-title {
        font-size: 64px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 600px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .hero-terminal {
        max-width: 500px;
        padding: 20px;
    }
    
    /* Calculator */
    .calculator-widget {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-result {
        padding: 40px 30px;
    }
    
    /* Position Cards */
    .position-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 40px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: -65px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Portrait (max-width: 768px) */
@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 48px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Navigation */
    .nav {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-brand {
        order: 1;
        flex: 1;
    }
    
    .nav-menu-toggle {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .nav-lang {
        order: 3;
        margin-left: 0;
        gap: 6px;
    }
    
    .nav-cta {
        order: 4;
        width: 100%;
        margin-top: 10px;
        padding: 14px 30px;
        font-size: 12px;
    }
    
    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .brand-tag {
        font-size: 10px;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-badge {
        padding: 8px 20px;
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 48px;
        margin: 30px 0;
        letter-spacing: -2px;
    }
    
    .title-highlight::after {
        bottom: 5px;
        height: 2px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px 0;
    }
    
    .stat-card {
        padding: 15px 0;
    }
    
    .stat-card::before {
        width: 2px;
    }
    
    .stat-value {
        font-size: 32px;
        padding-left: 15px;
    }
    
    .stat-label {
        font-size: 10px;
        padding-left: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .hero-terminal {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 40px 0 0;
    }
    
    .terminal-header {
        padding: 12px 15px;
    }
    
    .terminal-body {
        padding: 20px;
        font-size: 12px;
    }
    
    .terminal-line {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    /* Sections */
    .calculator,
    .position,
    .process,
    .faq,
    .application,
    .about-company {
        padding: 80px 20px;
    }
    
    .calculator-container,
    .position-container,
    .process-container,
    .faq-container,
    .application-container {
        padding: 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    /* Calculator */
    .calculator-widget {
        padding: 40px 25px;
        gap: 40px;
    }
    
    .calculator-controls {
        gap: 35px;
    }
    
    .control-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .control-value {
        font-size: 14px;
    }
    
    .control-slider {
        height: 3px;
    }
    
    .control-slider::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
    }
    
    .control-slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
    }
    
    .control-marks {
        font-size: 10px;
        margin-top: 8px;
    }
    
    .performance-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .performance-btn {
        padding: 14px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .calculator-result {
        padding: 0;
    }
    
    .result-display {
        padding: 30px 25px;
    }
    
    .result-label {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .result-value {
        font-size: 48px;
        margin-bottom: 25px;
    }
    
    .result-value .currency {
        font-size: 32px;
    }
    
    .result-value .decimal {
        font-size: 28px;
    }
    
    .result-breakdown {
        gap: 12px;
        padding-top: 25px;
    }
    
    .breakdown-item {
        font-size: 13px;
    }
    
    .result-note {
        padding: 18px;
        font-size: 12px;
        gap: 12px;
    }
    
    /* Position Cards */
    .position-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .position-card {
        padding: 35px 25px;
    }
    
    .position-card.featured {
        grid-column: span 1;
    }
    
    .card-number {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 22px;
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }
    
    .card-list {
        gap: 12px;
    }
    
    .card-list li {
        font-size: 14px;
        padding-left: 25px;
        line-height: 1.6;
    }
    
    .card-list li::before {
        left: 0;
    }
    
    .career-path {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .career-arrow {
        transform: rotate(90deg);
        font-size: 18px;
        margin: 5px 0;
    }
    
    .career-step {
        width: 100%;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-duration,
    .step-income {
        font-size: 13px;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 15px;
        width: 2px;
    }
    
    .timeline-item {
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .timeline-marker {
        width: 36px;
        height: 36px;
        font-size: 14px;
        left: -55px;
        border-width: 2px;
    }
    
    .timeline-content {
        padding: 10px 0;
    }
    
    .timeline-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .timeline-duration {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* FAQ */
    .faq-grid {
        gap: 1px;
    }
    
    .faq-question {
        padding: 25px 20px;
        font-size: 15px;
        line-height: 1.4;
    }
    
    .faq-question i {
        font-size: 16px;
        margin-left: 10px;
    }
    
    .faq-answer {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 20px 25px 20px;
    }
    
    /* Form */
    .application-form {
        padding: 40px 25px;
    }
    
    .form-grid {
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .form-group {
        gap: 10px;
    }
    
    .form-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .form-input,
    .form-select {
        padding: 16px 18px;
        font-size: 15px;
        border-width: 1px;
    }
    
    .form-input::placeholder {
        font-size: 14px;
    }
    
    .form-submit {
        padding: 18px 40px;
        font-size: 13px;
        letter-spacing: 1.5px;
        gap: 12px;
    }
    
    .form-notice {
        font-size: 11px;
        line-height: 1.5;
        margin-top: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 11px;
        padding-top: 30px;
    }
    
    /* Modals */
    .modal,
    .lang-modal {
        max-width: 90%;
        padding: 30px 25px;
        margin: 20px;
    }
    
    .modal-title,
    .lang-modal-title {
        font-size: 24px;
    }
    
    .lang-modal-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .lang-modal-btn {
        padding: 15px;
    }
    
    .lang-flag {
        font-size: 28px;
    }
    
    .lang-name {
        font-size: 13px;
    }
    
    /* Section CTA */
    .section-cta {
        margin-top: 60px;
    }
    
    .btn-large {
        width: 100%;
        padding: 18px 40px;
        font-size: 14px;
        min-width: auto;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 90px 15px 50px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 6px 16px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }
    
    .section-tag {
        font-size: 9px;
        padding: 6px 16px;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    /* Calculator */
    .calculator-widget {
        padding: 30px 20px;
    }
    
    .result-value {
        font-size: 40px;
    }
    
    .result-value .currency {
        font-size: 28px;
    }
    
    .result-value .decimal {
        font-size: 24px;
    }
    
    /* Performance Buttons */
    .performance-btn {
        padding: 12px 10px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    /* Position Cards */
    .position-card {
        padding: 30px 20px;
    }
    
    .card-number {
        font-size: 11px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-list li {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 35px;
    }
    
    .timeline-marker {
        width: 32px;
        height: 32px;
        font-size: 13px;
        left: -50px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px 18px;
        font-size: 14px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 20px 18px;
    }
    
    /* Form */
    .application-form {
        padding: 35px 20px;
    }
    
    .form-input,
    .form-select {
        padding: 15px 16px;
    }
    
    .form-submit {
        padding: 16px 35px;
        font-size: 12px;
    }
    
    /* Language Modal */
    .lang-modal {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .lang-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .lang-modal-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .lang-modal-subtitle {
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .lang-modal-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .lang-modal-btn {
        padding: 18px;
    }
    
    .lang-flag {
        font-size: 32px;
    }
    
    .lang-name {
        font-size: 14px;
    }
    
    /* About Company */
    .about-company {
        padding: 70px 15px;
    }
    
    .about-description p {
        font-size: 13px;
    }
    
    .about-stat-value {
        font-size: 24px;
    }
    
    .about-stat-label {
        font-size: 10px;
    }
    
    .about-card {
        padding: 20px 18px;
    }
    
    .about-card h3 {
        font-size: 15px;
    }
    
    .about-card p {
        font-size: 12px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
    }
    
    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .brand-name {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .brand-tag {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 25px;
        font-size: 12px;
        gap: 8px;
    }
    
    .btn-large {
        padding: 16px 35px;
        font-size: 13px;
    }
    
    /* Section CTA */
    .section-cta {
        margin-top: 50px;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-container {
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 40px;
        margin: 20px 0;
    }
    
    .hero-stats {
        margin: 30px 0;
    }
    
    .hero-terminal {
        display: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .grid-overlay {
        opacity: 0.03;
    }
    
    .hero-grid {
        opacity: 0.05;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .terminal-cursor {
        display: none;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Already dark by default */
}

/* Print Styles */
@media print {
    .nav,
    .hero-terminal,
    .terminal-cursor,
    .grid-overlay,
    .hero-bg,
    .section-cta,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-title,
    .section-title {
        color: black;
    }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT COMPANY SECTION
   ═══════════════════════════════════════════════════════════════ */

.about-company {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    color: #FFFFFF;
}

.about-description {
    margin: 40px 0;
}

.about-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.about-stat-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.about-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.about-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-icon i {
    font-size: 24px;
    color: #D4AF37;
}

.about-card h3 {
    font-family: 'Space Grotesk', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.about-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* About Company Mobile */
@media (max-width: 768px) {
    .about-company {
        padding: 80px 20px;
    }
    
    .about-container {
        padding: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-description {
        margin: 30px 0;
    }
    
    .about-description p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    
    .about-stat {
        padding: 18px 15px;
    }
    
    .about-stat-value {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .about-stat-label {
        font-size: 11px;
    }
    
    .about-visual {
        gap: 15px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }
    
    .about-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .about-card-icon i {
        font-size: 20px;
    }
    
    .about-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .about-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}
