/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --bg-dark: #050B14;
    --bg-card: #0F1C2E;
    --primary: #E6B17E;
    --primary-dim: rgba(230, 177, 126, 0.15);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --blur: blur(12px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: -20%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(230, 177, 126, 0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--primary); }
.text-gradient {
    background: linear-gradient(90deg, #E6B17E, #F7D794);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: 0.4s ease;
    transform: translateY(-100%);
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: var(--blur);
    border-bottom: var(--glass-border);
}
.navbar.visible { transform: translateY(0); }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

.btn-nav {
    border: 1px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary) !important;
}
.btn-nav:hover { background: var(--primary); color: var(--bg-dark) !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger span { width: 25px; height: 2px; background: #fff; transition: 0.3s; }

/* ========================================
   INITIAL SCREEN
   ======================================== */
.initial-screen {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    z-index: 200;
    background: var(--bg-dark);
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    text-align: center;
}
.initial-screen.scrolled { transform: translateY(-100%); }

.brand-reveal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.brand-title {
    font-family: var(--font-head);
    font-size: 7rem;
    color: var(--primary);
    opacity: 0;
    animation: fadeInScale 1.5s ease forwards;
    margin: 0;
    line-height: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.arrow-down {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: 0 auto;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}
.bg-darker { background: #020408; }

.section-title {
    font-family: var(--font-head);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-dim);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 177, 126, 0.2);
}

.hero-content h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; }
.hero-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 40px; max-width: 500px; }

.hero-form .input-wrapper {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: flex-end;
    transition: 0.3s;
}
.hero-form .input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(230, 177, 126, 0.1);
}
.hero-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: none;
    height: 80px;
}
.hero-form textarea:focus { outline: none; }

.btn-glow {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 177, 126, 0.2);
}

.glass-card-visual {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.visual-header { display: flex; gap: 8px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.skeleton-line { height: 12px; background: rgba(255,255,255,0.1); border-radius: 6px; margin-bottom: 12px; }
.w-80 { width: 80%; } .w-60 { width: 60%; } .w-90 { width: 90%; }

.analysis-result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(230, 177, 126, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}
.status-badge {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.analysis-result p { font-size: 0.9rem; color: #fff; margin: 0; }

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.problem-card {
    position: relative;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(230, 177, 126, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.problem-card:hover .card-glow { opacity: 1; }
.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 177, 126, 0.3);
}
.card-content { position: relative; z-index: 2; }

.icon-box {
    width: 60px; height: 60px;
    background: rgba(230, 177, 126, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 177, 126, 0.1);
}
.problem-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}
.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230, 177, 126, 0.3), transparent);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 30px;
}
.step-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}
.step-circle {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 0 0 4px rgba(230, 177, 126, 0.05);
}
.step-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 177, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease;
}
.step:hover .step-circle {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(230, 177, 126, 0.4);
}
.step:hover .step-glow { opacity: 1; }

.step h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}
.step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================================
   LAWYERS RECRUITMENT SECTION
   ======================================== */
#lawyers-join {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #020408 100%);
    padding: 100px 0;
}
.recruitment-box {
    background: linear-gradient(135deg, rgba(230, 177, 126, 0.05), rgba(5, 11, 20, 0.95));
    border: 1px solid rgba(230, 177, 126, 0.25);
    border-radius: 32px;
    padding: 70px 50px;
    backdrop-filter: blur(20px);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.recruitment-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 177, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.recruitment-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 177, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.recruitment-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.badge-gold {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(230, 177, 126, 0.15);
    color: var(--primary);
    border: 1px solid rgba(230, 177, 126, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.recruitment-header h2 {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.recruitment-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.lawyers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}
.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 177, 126, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 177, 126, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(230, 177, 126, 0.3);
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* ========================================
   FORM STYLES — BEAUTIFUL & RESPONSIVE
   ======================================== */

/* Form Container */
.lawyer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Input Group */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--primary);
    opacity: 0.7;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 3;
}

/* Input Fields */
.form-input {
    width: 100%;
    padding: 16px 18px 16px 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(15, 28, 46, 0.9), rgba(5, 11, 20, 0.95));
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(5, 11, 20, 1);
    box-shadow: 0 0 0 4px rgba(230, 177, 126, 0.15);
}

.form-input:focus::placeholder {
    opacity: 0.5;
}

.input-group:focus-within .input-icon {
    opacity: 1;
    transform: scale(1.05);
}

/* City Autocomplete Dropdown */
.city-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0f1c2e;
    border: 1px solid rgba(230, 177, 126, 0.35);
    border-radius: 14px;
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(230, 177, 126, 0.1);
}

.city-suggestions.show {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
.city-suggestions::-webkit-scrollbar { width: 5px; }
.city-suggestions::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.25); border-radius: 3px; }
.city-suggestions::-webkit-scrollbar-thumb { background: rgba(230, 177, 126, 0.5); border-radius: 3px; }
.city-suggestions { scrollbar-width: thin; scrollbar-color: rgba(230, 177, 126, 0.5) rgba(0, 0, 0, 0.25); }

/* Suggestion Item */
.city-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}
.city-suggestion-item:last-child { border-bottom: none; }

.city-suggestion-item .city-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    opacity: 0.85;
}

.city-suggestion-item .city-name {
    flex: 1;
    font-weight: 500;
}

.city-suggestion-item .city-name mark {
    background: rgba(230, 177, 126, 0.25);
    color: var(--primary);
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 600;
}

.city-suggestion-item .city-region {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    margin-left: 8px;
}

.city-suggestion-item:hover,
.city-suggestion-item.active {
    background: rgba(230, 177, 126, 0.12);
}
.city-suggestion-item:hover .city-icon,
.city-suggestion-item.active .city-icon { opacity: 1; }
.city-suggestion-item:hover .city-region,
.city-suggestion-item.active .city-region { color: var(--primary); }

/* Empty / Loading State */
.city-suggestions.empty,
.city-suggestions.loading {
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.city-suggestions.loading .spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(230, 177, 126, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Submit Button */
.btn-lawyer-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #d49a65);
    color: var(--bg-dark);
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}
.btn-lawyer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 177, 126, 0.3);
    filter: brightness(1.05);
}
.btn-lawyer-submit:active { transform: translateY(-1px); }
.btn-lawyer-submit:hover svg { transform: translateX(4px); }
.btn-lawyer-submit svg { transition: transform 0.3s ease; }

/* Privacy Note */
.privacy-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
    padding: 10px 16px;
    background: rgba(230, 177, 126, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(230, 177, 126, 0.12);
}

/* Form Errors */
.form-errors {
    background: rgba(255, 80, 80, 0.12);
    border: 1px solid rgba(255, 80, 80, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 8px;
    color: #ff8a8a;
    font-size: 0.9rem;
}
.form-errors p { margin: 0 0 6px 0; font-weight: 600; }
.form-errors ul { margin: 0; padding-left: 20px; }
.form-errors li { margin: 3px 0; }

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ========================================
   RESPONSIVE — TABLET (≤768px)
   ======================================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .brand-title { font-size: 4rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content p { margin: 0 auto 30px; }
    .hero-form .input-wrapper { flex-direction: column; }
    .btn-glow { width: 100%; justify-content: center; margin-top: 10px; }
    
    .problems-grid { grid-template-columns: 1fr; }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    .steps-container::before { display: none; }
    
    .nav-links {
        position: fixed;
        top: 70px; left: 0; width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px;
        transform: translateY(-150%);
        border-bottom: var(--glass-border);
    }
    .nav-links.active { transform: translateY(0); }
    .hamburger { display: flex; }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .form-input {
        padding: 15px 18px 15px 50px;
        font-size: 0.95rem;
    }
    .input-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    .city-suggestions {
        max-height: 220px;
        border-radius: 12px;
    }
    .city-suggestion-item {
        padding: 11px 16px;
        font-size: 0.92rem;
    }
    .btn-lawyer-submit {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    
    .recruitment-box {
        padding: 50px 30px;
        border-radius: 24px;
    }
    .recruitment-header h2 { font-size: 2.2rem; }
    .lawyers-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-card { padding: 24px 20px; }
    .stat-number { font-size: 2.8rem; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤480px)
   ======================================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .brand-title { font-size: 3rem; }
    .scroll-indicator span { font-size: 0.7rem; }
    .arrow-down { height: 40px; }
    
    .section { padding: 80px 0; min-height: auto; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    
    .hero-content h2 { font-size: 2.2rem; }
    .glass-card-visual {
        transform: none;
        max-width: 100%;
    }
    
    .lawyer-form { gap: 14px; }
    .form-input {
        padding: 14px 16px 14px 46px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    .input-icon {
        left: 14px;
        width: 17px;
        height: 17px;
    }
    .city-suggestions {
        top: calc(100% + 4px);
        max-height: 200px;
        border-radius: 12px;
    }
    .city-suggestion-item {
        padding: 10px 14px;
        font-size: 0.9rem;
        gap: 10px;
    }
    .city-suggestion-item .city-icon {
        width: 16px;
        height: 16px;
    }
    .city-suggestion-item .city-region {
        font-size: 0.75rem;
        display: none;
    }
    .btn-lawyer-submit {
        padding: 15px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    .privacy-note {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .recruitment-box {
        padding: 35px 20px;
        border-radius: 20px;
    }
    .recruitment-header h2 { font-size: 1.8rem; }
    .recruitment-header p { font-size: 0.95rem; }
    .badge-gold {
        padding: 6px 18px;
        font-size: 0.75rem;
    }
    .stat-number { font-size: 2.4rem; }
    .stat-label { font-size: 0.9rem; }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (≤360px)
   ======================================== */
@media (max-width: 360px) {
    .brand-title { font-size: 2.5rem; }
    
    .form-input {
        padding: 13px 14px 13px 44px;
        font-size: 0.85rem;
    }
    .input-icon {
        left: 13px;
        width: 16px;
        height: 16px;
    }
    .city-suggestion-item {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
    .btn-lawyer-submit {
        padding: 14px 20px;
        font-size: 0.85rem;
    }
}