/* ============================
   Eryon Agency
   Dark Navy + Gold theme
   Playfair Display + DM Sans
   ============================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
    --bg:         #07090F;
    --bg-2:       #0C1020;
    --bg-card:    rgba(255,255,255,0.035);
    --bg-card-h:  rgba(255,255,255,0.055);
    --border:     rgba(255,255,255,0.07);
    --gold:       #C9962A;
    --gold-light: #E8B84B;
    --gold-dim:   rgba(201,150,42,0.15);
    --gold-glow:  rgba(201,150,42,0.25);
    --white:      #FFFFFF;
    --muted:      rgba(255,255,255,0.5);
    --muted-2:    rgba(255,255,255,0.35);
    --font-body:  'DM Sans', sans-serif;
    --font-head:  'Playfair Display', serif;
    --radius:     12px;
    --radius-sm:  8px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 1;
    animation: loaderFadeIn 0.5s ease-out;
}

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

.loader-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.loader-mark {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: #07090F;
    box-shadow: 0 0 40px var(--gold-glow);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 30px var(--gold-glow); }
    50%       { box-shadow: 0 0 60px rgba(201,150,42,0.45); }
}

.loader-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.loader-name {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.loader-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--gold-glow);
}

.loader-hint {
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    animation: loaderBlink 1.8s ease-in-out infinite;
}

@keyframes loaderBlink {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}

/* Background orbs on loader */
.loader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.loader-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,150,42,0.1), transparent 70%);
    top: -120px; right: -120px;
    animation: orbFloat 7s ease-in-out infinite;
}

.loader-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,150,42,0.07), transparent 70%);
    bottom: -80px; left: -80px;
    animation: orbFloat 9s ease-in-out infinite reverse;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: #07090F;
    flex-shrink: 0;
}

.logo-mark-sm {
    width: 32px; height: 32px;
    font-size: 17px;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav { display: none; }
.desktop-nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
}

.desktop-nav-list .nav-link {
    display: block;
    padding: 8px 13px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s;
    letter-spacing: 0.2px;
}

.desktop-nav-list .nav-link:hover,
.desktop-nav-list .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

@media (min-width: 1080px) {
    .desktop-nav { display: block; }
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.25s;
}

.header-phone svg { color: var(--gold); flex-shrink: 0; }
.header-phone:hover { color: var(--white); }

@media (min-width: 768px) {
    .header-phone { display: flex; }
}

.btn-header-cta {
    display: none;
    padding: 8px 20px;
    background: var(--gold);
    color: #07090F;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.btn-header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

@media (min-width: 900px) {
    .btn-header-cta { display: block; }
}

/* Hamburger */
.hamburger {
    background: none; border: none; cursor: pointer;
    padding: 8px; display: flex; flex-direction: column;
    gap: 5px; z-index: 1001;
}

.hamburger span {
    width: 22px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1080px) {
    .hamburger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: rgba(7, 9, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 999;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-inner {
    padding: 90px 28px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 32px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-list .nav-link {
    display: block;
    padding: 13px 16px;
    color: var(--muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-nav-list .nav-link:hover {
    color: var(--white);
    background: var(--bg-card);
    padding-left: 22px;
}

.mobile-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-phone-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mobile-cta { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #07090F;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,150,42,0.4);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
}

/* ============ SECTIONS ============ */
section { padding: 90px 0; }

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-label-light { color: rgba(232,184,75,0.8); }

.section-title {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 15, 0.62);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,150,42,0.12), transparent 70%);
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,150,42,0.07), transparent 70%);
    bottom: -50px; left: 10%;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
    top: 40%; left: 50%;
    animation-delay: 5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.05); }
    66% { transform: translate(15px, -15px) scale(0.97); }
}

.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-content {
    max-width: 700px;
    padding-top: 110px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,150,42,0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease-out;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-head);
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease-out 0.1s backwards;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeUp 0.7s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp 0.7s ease-out 0.3s backwards;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeUp 0.7s ease-out 0.5s backwards;
}

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

.metric-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.metric-plus {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-left: 2px;
}

.metric-label {
    font-size: 12px;
    color: var(--muted-2);
    font-weight: 500;
    margin-top: 6px;
}

.metric-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    animation: fadeUp 1s ease-out 1s backwards;
}

.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ SERVICES ============ */
.services {
    background: var(--bg-2);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: var(--bg-card-h);
    border-color: rgba(201,150,42,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card.service-dark {
    background: linear-gradient(135deg, rgba(201,150,42,0.08), rgba(201,150,42,0.03));
    border-color: rgba(201,150,42,0.2);
}

.service-card.service-featured {
    grid-column: span 1;
}

.service-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.7;
}

.service-icon-wrap {
    width: 52px; height: 52px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,150,42,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.2s;
    letter-spacing: 0.3px;
}

.service-link:hover { color: var(--gold-light); }

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

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 14px);
    right: calc(10% + 14px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent 20%, var(--border) 50%, transparent 80%, var(--gold));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px; height: 56px;
    background: var(--bg-2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.process-step:hover .step-number {
    background: var(--gold);
    color: #07090F;
    box-shadow: 0 0 20px var(--gold-glow);
}

.step-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.step-arrow {
    display: none;
}

/* ============ HEADHUNTING ============ */
.headhunting {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.headhunting-bg {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,150,42,0.06), transparent 60%);
    pointer-events: none;
}

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

.headhunting-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.headhunting-text > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.headhunting-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.headhunting-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.hh-check {
    width: 24px; height: 24px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,150,42,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Headhunting Visual */
.headhunting-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hh-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.hh-card:hover {
    border-color: rgba(201,150,42,0.25);
    transform: translateX(6px);
    background: var(--bg-card-h);
}

.hh-card-icon {
    width: 46px; height: 46px;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

.hh-card strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3px;
}

.hh-card span {
    font-size: 13px;
    color: var(--muted);
}

.hh-card-2 { margin-left: 24px; }

.hh-glow {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,150,42,0.12), transparent 70%);
    pointer-events: none;
    filter: blur(30px);
}

/* ============ RESULTS ============ */
.results {
    background: var(--bg);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.result-item {
    background: var(--bg-card);
    padding: 44px 28px;
    text-align: center;
    transition: background 0.3s;
}

.result-item:hover { background: var(--bg-card-h); }

.result-item-accent {
    background: var(--gold-dim);
}

.result-item-accent:hover {
    background: rgba(201,150,42,0.12);
}

.result-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.result-num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.result-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.result-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ============ WHY US ============ */
.why {
    background: var(--bg-2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--bg-card-h);
    border-color: rgba(201,150,42,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.why-icon {
    width: 48px; height: 48px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,150,42,0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ============ FAQ ============ */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(201,150,42,0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
    text-align: left;
}

.faq-question span {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
}

.faq-toggle {
    width: 28px; height: 28px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s;
}

.faq-toggle span {
    position: absolute;
    width: 10px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.faq-toggle span:last-child {
    transform: rotate(90deg);
}

.faq-item.open .faq-toggle {
    background: var(--gold);
}

.faq-item.open .faq-toggle span {
    background: #07090F;
}

.faq-item.open .faq-toggle span:last-child {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

/* ============ CONTACT ============ */
.contact-section {
    background: var(--bg-2);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-block h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 10px;
}

.contact-info-block > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cd-icon {
    width: 40px; height: 40px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,150,42,0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.cd-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted-2);
    font-weight: 600;
    margin-bottom: 4px;
}

.cd-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

a.cd-value:hover { color: var(--gold); }

/* Form */
.contact-form-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-2);
}

.form-field input,
.form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    transition: all 0.25s;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
    background: rgba(255,255,255,0.06);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted-2);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted-2);
    margin-top: 12px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contacts li span {
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--muted-2);
}

/* ============ FLOAT BUTTON ============ */
.float-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: #07090F;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 8px 24px var(--gold-glow);
    transition: all 0.3s;
    animation: floatPulse 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(201,150,42,0.5);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 24px var(--gold-glow), 0 0 0 0 rgba(201,150,42,0.4); }
    50% { box-shadow: 0 8px 24px var(--gold-glow), 0 0 0 12px rgba(201,150,42,0); }
}

/* ============ MODAL ============ */
.modal {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    align-items: center; justify-content: center;
}

.modal.active { display: flex; }

.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    background: #0D1320;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    max-width: 440px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute; top: 14px; right: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: var(--bg-card-h);
    color: var(--white);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.modal-icon {
    width: 46px; height: 46px;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.modal-header p {
    font-size: 13px;
    color: var(--muted);
}

.callback-form .form-field { margin-bottom: 14px; }

/* ============ TOASTS ============ */
.toast-container {
    position: fixed; top: 20px; right: 20px;
    z-index: 20000;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 360px;
    pointer-events: none;
}

.toast {
    background: #0D1320;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex; align-items: flex-start; gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    animation: toastIn 0.35s ease-out;
    pointer-events: all;
    min-width: 280px;
}

.toast.success { border-left: 3px solid #4CAF50; }
.toast.error   { border-left: 3px solid #EF5350; }
.toast.warning { border-left: 3px solid var(--gold); }

.toast-icon { font-size: 15px; margin-top: 1px; }
.toast.success .toast-icon { color: #4CAF50; }
.toast.error   .toast-icon { color: #EF5350; }
.toast.warning .toast-icon { color: var(--gold); }

.toast-content { flex: 1; }
.toast-title { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.toast-message { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.toast-close {
    background: none; border: none;
    color: var(--muted-2); cursor: pointer;
    font-size: 18px; line-height: 1;
    padding: 0; margin-top: -1px;
    transition: color 0.2s;
}

.toast-close:hover { color: var(--white); }

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

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

.toast.removing { animation: toastOut 0.3s ease-out forwards; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .section-title { font-size: 32px; }
    .hero-title { font-size: 52px; }
    .headhunting-title { font-size: 36px; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .process-step { flex-direction: row; align-items: flex-start; gap: 20px; text-align: left; padding: 0; }
    .step-number { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .headhunting-content { grid-template-columns: 1fr; gap: 48px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 44px; }
    section { padding: 70px 0; }
}

@media (max-width: 680px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-metrics { flex-direction: column; gap: 20px; align-items: flex-start; }
    .metric-sep { display: none; }
    .section-title { font-size: 26px; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-block { padding: 28px 22px; }
    section { padding: 56px 0; }
    .hero-content { padding-top: 100px; padding-bottom: 60px; }
    .hh-card-2 { margin-left: 0; }
    .hero-scroll-hint { display: none; }
}

@media (max-width: 440px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 30px; }
    .hero-badge { font-size: 11px; padding: 7px 14px; }
    .btn { padding: 11px 22px; font-size: 14px; }
    .float-btn { bottom: 18px; right: 18px; width: 50px; height: 50px; }
    .toast-container { top: 10px; right: 10px; left: 10px; max-width: none; }
    .toast { min-width: auto; width: 100%; }
}
