/* ==========================================================================
   ASTERIA ESCORT AGENCY - LUXURY PREMIUM DESIGN SYSTEM v2
   Typography: Inter (Body/UI) & Unbounded (Headings/Stats/Accents)
   Color Palette: Deep obsidian + warm gold + crimson glow
   ========================================================================== */

:root {
    /* Backgrounds */
    --bg-dark: #060409;
    --bg-surface: #0f0c17;
    --bg-card: #110e1a;
    --bg-glass: rgba(15, 12, 23, 0.8);

    /* Gold System */
    --gold-primary: #c9a84c;
    --gold-light: #f0d98a;
    --gold-pale: #fdf3d4;
    --gold-dark: #8a6520;
    --gold-glow: rgba(201, 168, 76, 0.18);
    --gold-glow-strong: rgba(201, 168, 76, 0.35);
    --gold-gradient: linear-gradient(135deg, #fdf3d4 0%, #e8c76a 40%, #c9a84c 70%, #8a6520 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(138, 101, 32, 0.05) 100%);

    /* Borders */
    --border-gold: rgba(201, 168, 76, 0.22);
    --border-gold-strong: rgba(201, 168, 76, 0.45);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-muted: rgba(255, 255, 255, 0.04);

    /* Crimson */
    --crimson: #7a0026;
    --crimson-soft: rgba(122, 0, 38, 0.2);

    /* Text */
    --text-primary: #f2eef8;
    --text-secondary: #a09ab0;
    --text-muted: #5e5870;

    /* Typography */
    --font-body: 'Inter', 'Onest', 'Exo 2', 'Comfortaa', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Unbounded', 'Inter', sans-serif;
    --font-luxury: 'Playfair Display', 'Georgia', serif;
    --font-handwriting: 'Caveat', cursive;
    --font-accent: 'Unbounded', 'Impact', sans-serif;

    /* Effects */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
    --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.75);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    caret-color: transparent !important;
}

input,
textarea,
[contenteditable="true"] {
    caret-color: var(--gold-light) !important;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    position: relative;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open,
body.modal-open,
body.drawer-open {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

/* ==========================================================================
   SVG ICON SYSTEM
   ========================================================================== */
.svg-icon-sm {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.svg-icon-btn {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    margin-left: 6px;
}

.svg-icon-card {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin-bottom: 1rem;
}

.svg-icon-lg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-icon-check {
    width: 14px;
    height: 14px;
    stroke: var(--gold-primary);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ==========================================================================
   AMBIENT BACKGROUND
   ========================================================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.4;
    animation: pulseGlow 14s infinite alternate ease-in-out;
    will-change: transform, opacity;
}

.glow-1 {
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(122, 0, 38, 0.55) 0%, transparent 70%);
}

.glow-2 {
    bottom: -25%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180, 130, 40, 0.18) 0%, transparent 70%);
}

.glow-3 {
    top: 35%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(90, 15, 50, 0.28) 0%, transparent 70%);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.25;
        transform: scale(0.94);
    }

    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ==========================================================================
   INTRO SPLASH OVERLAY
   ========================================================================== */
.intro-screen {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    background: #060409;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    cursor: pointer;
    transition: opacity 0.85s var(--transition, cubic-bezier(0.22, 1, 0.36, 1)), visibility 0.85s ease;
}

.intro-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #120f1c 0%, #060409 80%);
}

.intro-screen.leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
}

.intro-screen.hidden {
    display: none !important;
}

.intro-stage {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
}

.intro-goddess {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
    transition: opacity 1.2s var(--transition), transform 1.2s var(--transition);
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.intro-goddess.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.intro-goddess-img {
    max-width: 320px;
    width: 75%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    background: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.3));
}

.intro-text-reveal {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.8s var(--transition), opacity 0.6s ease;
}

.intro-text-reveal.reveal {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.intro-text-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    background: transparent;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.2));
}

/* ==========================================================================
   MAIN CONTENT & VIEW PANES
   ========================================================================== */
.main-content {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.main-content.visible {
    opacity: 1;
}

.view-pane {
    display: none;
}

.view-pane.active {
    display: block;
    animation: fadeInView 0.4s ease forwards;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 64px;
    padding: 0 clamp(1.2rem, 3vw, 2.8rem);
    background: rgba(6, 4, 9, 0.96);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

/* Brand Logo (Golden Statue Icon Centered on 'about' + Unfolding Text on other tabs) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.nav-brand:hover {
    opacity: 0.88;
}

/* Unfolding Page Title Text */
.nav-page-title {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease-out,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-14px);
    pointer-events: none;
    user-select: none;
}

.nav-page-title.expanded {
    max-width: 380px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.nav-title-sep {
    color: #c9a84c;
    font-weight: 300;
    font-size: 1.2rem;
    opacity: 0.6;
}

.nav-title-text {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(0.72rem, 1.2vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e0be6c;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-brand-icon {
    height: 36px;
    width: auto;
    mix-blend-mode: screen;
    background: transparent;
    flex-shrink: 0;
    display: block;
}

/* Brand Text Container (Unfolds out of statue logo) */
.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease-out,
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-12px);
    pointer-events: none;
}

.nav-brand-text.expanded {
    max-width: 260px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.nav-brand-main {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    color: #a88434;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .nav-brand-main {
        font-size: 0.95rem;
        letter-spacing: 0.16em;
    }

    .nav-brand-sub {
        font-size: 0.44rem;
        letter-spacing: 0.2em;
    }

    .nav-brand-text.expanded {
        max-width: 190px;
    }
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1rem;
    right: 1rem;
    height: 1.5px;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.3s var(--transition), opacity 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.06);
}

.nav-link.active {
    color: #fff;
    font-weight: 600;
}

.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.guest-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Balance Pill */
.btn-balance-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-balance-nav:hover {
    background: rgba(201, 168, 76, 0.16);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.2);
}

.balance-icon {
    font-size: 0.9rem;
    color: var(--gold-primary);
}

/* Primary Nav Button (Вход / Кабинет) */
.btn-primary-nav {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary-nav:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #060409;
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Secondary Nav Button (Регистрация) */
.btn-secondary-nav {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-secondary-nav:hover {
    color: var(--gold-light);
    border-color: var(--border-gold);
    background: rgba(201, 168, 76, 0.07);
}

/* Manager Nav Button (Telegram Link) */
.btn-manager-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(138, 101, 32, 0.06) 100%);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.btn-manager-nav:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #060409;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    transform: translateY(-1px);
}

.btn-manager-nav .telegram-icon {
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: transform 0.25s ease, color 0.25s ease;
}

.btn-manager-nav:hover .telegram-icon {
    color: #060409;
    transform: scale(1.1) rotate(-8deg);
}

/* Mobile Menu Manager Link */
.mobile-manager-item {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    margin-top: 0.5rem;
    padding-top: 0.85rem !important;
    text-decoration: none;
}

/* Hamburger */
.btn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
}

.btn-hamburger .bar {
    width: 100%;
    height: 1.5px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   SECTIONS - SHARED
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 3vw, 2rem);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gold divider line */
.gold-divider {
    width: 48px;
    height: 1.5px;
    background: var(--gold-gradient);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   VIEW 1: ОБ АГЕНТСТВЕ - HERO
   ========================================================================== */
/* Top padding for hero section */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 5rem;
    text-align: center;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* Remove vertical stick line above logo */
.hero-section::before {
    display: none !important;
}

/* Centered Goddess Statue Logo (Enlarged per user request) */
.hero-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.2rem;
}

.hero-logo-img {
    height: clamp(110px, 10vw, 155px);
    width: auto;
    display: block;
    mix-blend-mode: screen;
    background: transparent;
    filter: drop-shadow(0 0 35px rgba(201, 168, 76, 0.5));
    transition: transform 0.4s var(--transition), filter 0.4s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.75));
}

.hero-asteria-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-asteria-img {
    max-width: 560px;
    width: 85%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    background: transparent;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.12));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    background: rgba(201, 168, 76, 0.05);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 6px var(--gold-primary);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Stat Cards - Expanded Feature Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(22, 17, 33, 0.75) 0%, rgba(13, 9, 20, 0.88) 100%);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 20px;
    padding: 2.2rem 1.8rem 2rem 1.8rem;
    text-align: center;
    transition: transform 0.35s var(--transition), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 243, 212, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(28, 22, 42, 0.85) 0%, rgba(18, 13, 28, 0.94) 100%);
    border-color: rgba(201, 168, 76, 0.52);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(201, 168, 76, 0.22);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    margin-bottom: 0.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 10px rgba(201, 168, 76, 0.35));
}

.stat-value::after {
    content: '';
    display: block;
    width: 44px;
    height: 1.5px;
    background: var(--gold-gradient);
    margin: 0.75rem auto 0.85rem auto;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.stat-description {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(242, 238, 248, 0.82);
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

/* About - Story Section */
.about-detailed-section {
    padding: 4rem 0 7rem 0;
    position: relative;
    overflow: hidden;
}

.story-bg-emblem {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.16;
    pointer-events: none;
    filter: drop-shadow(0 0 35px rgba(201, 168, 76, 0.4));
    z-index: 0;
    height: 520px;
    width: auto;
}

.story-bg-emblem--left {
    left: -10px;
    max-width: 36vw;
}

.story-bg-emblem--right {
    right: -10px;
    max-width: 38vw;
}

.story-bg-emblem--mobile {
    display: none;
}

.about-story-grid {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.story-content-col {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.story-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 450;
}

.story-paragraphs p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    font-size: 0.93rem;
}

.presence-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2.2rem;
}

.p-badge {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border-gold);
    padding: 0.42rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.p-badge:hover {
    background: rgba(201, 168, 76, 0.14);
    transform: translateY(-2px);
}

/* Ethics Card */
.story-ethics-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, rgba(15, 12, 23, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 2.8rem 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.story-ethics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gold-gradient);
}

.ethics-emblem {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.story-ethics-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    letter-spacing: 0.06em;
}

.story-ethics-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

.ethics-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.eth-item {
    font-size: 0.83rem;
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border-muted);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: border-color 0.2s ease;
}

.eth-item:hover {
    border-color: var(--border-gold);
}

/* Slogan variant - larger text, more breathing room */
.eth-item--slogan {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.8rem 1.1rem;
    align-items: flex-start;
    color: var(--text-secondary);
    font-style: italic;
}

.eth-item--slogan svg {
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==========================================================================
   VIEW 2: БЕЗОПАСНОСТЬ
   ========================================================================== */
.security-pillars-section {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}

.security-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.sec-card-large {
    background: linear-gradient(135deg, rgba(22, 16, 32, 0.88) 0%, rgba(12, 8, 20, 0.94) 100%);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 22px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 243, 212, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sec-card-large:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 25px rgba(201, 168, 76, 0.18);
}

.sec-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.04) 100%);
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.sec-card-icon svg,
.sec-card-icon .svg-icon-card {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.sec-card-large h4 {
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 0.98vw, 0.98rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.9rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
}

.sec-card-large p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(242, 238, 248, 0.82);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.security-features-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(24, 18, 36, 0.9) 0%, rgba(12, 8, 20, 0.96) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.sec-banner-item {
    padding: 2.2rem 1.8rem;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.22);
    transition: background 0.3s ease;
}

.sec-banner-item:last-child {
    border-right: none;
}

.sec-banner-item:hover {
    background: rgba(201, 168, 76, 0.06);
}

.sec-banner-item h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.sec-banner-item p {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: rgba(242, 238, 248, 0.75);
    line-height: 1.55;
    margin: 0;
}

/* Security Protocol 3-Step Flow */
.security-protocol-section {
    padding: 3rem 0 5rem 0;
    position: relative;
}

.security-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    margin-top: 3.5rem;
}

.sec-step-item {
    background: linear-gradient(135deg, rgba(22, 16, 32, 0.88) 0%, rgba(12, 8, 20, 0.94) 100%);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 24px;
    padding: 2.5rem 1.8rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 243, 212, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.sec-step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 25px rgba(201, 168, 76, 0.2);
}

.sec-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.05) 100%);
    border: 1px solid rgba(201, 168, 76, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sec-step-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    background: linear-gradient(135deg, #fcebb6 0%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.85rem 0;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.sec-step-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(242, 238, 248, 0.8);
    line-height: 1.65;
    margin: 0;
}

/* Security CTA Actions Section & Group */
.security-cta-section {
    padding: 1rem 0 6rem 0;
    position: relative;
}

.security-actions-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.btn-support-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: #ffffff;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-support-glass:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.7);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.2);
}

.svg-icon-btn-support {
    stroke: currentColor;
}

/* Mobile Media Queries for Security */
@media (max-width: 991px) {
    .security-detailed-grid,
    .security-steps-container {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .sec-card-large h4 {
        min-height: auto;
    }

    .security-features-banner {
        grid-template-columns: 1fr;
    }

    .sec-banner-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.22);
    }

    .sec-banner-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .security-pillars-section {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .sec-card-large {
        padding: 2rem 1.6rem;
        border-radius: 18px;
    }

    .sec-step-item {
        padding: 2rem 1.6rem;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .catalog-banner-card {
        padding: 2.8rem 1.4rem;
        border-radius: 22px;
        width: 100%;
        box-sizing: border-box;
    }

    .catalog-banner-content-centered {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .security-actions-group {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
        box-sizing: border-box;
    }

    .security-actions-group .btn-catalog-gold,
    .security-actions-group .btn-support-glass {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.95rem 1.2rem;
        font-size: 0.82rem;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .catalog-banner-card {
        padding: 2.2rem 1rem;
        border-radius: 20px;
    }

    .catalog-banner-title {
        font-size: clamp(1.25rem, 5.5vw, 1.55rem);
        margin: 0.4rem 0 1rem 0;
        word-break: break-word;
    }

    .catalog-banner-text {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1.6rem;
    }

    .security-actions-group {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.85rem;
        box-sizing: border-box;
    }

    .security-actions-group .btn-catalog-gold,
    .security-actions-group .btn-support-glass {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.9rem 0.8rem;
        font-size: 0.76rem;
        letter-spacing: 0.03em;
        gap: 0.5rem;
        white-space: nowrap;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .security-actions-group .btn-catalog-gold .btn-arrow-icon,
    .security-actions-group .svg-icon-btn-support {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .catalog-banner-card {
        padding: 1.8rem 0.75rem;
    }

    .security-actions-group .btn-catalog-gold,
    .security-actions-group .btn-support-glass {
        padding: 0.85rem 0.45rem;
        font-size: 0.7rem;
        letter-spacing: 0.015em;
        gap: 0.35rem;
    }

    .security-actions-group .btn-catalog-gold .btn-arrow-icon,
    .security-actions-group .svg-icon-btn-support {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   VIEW 3: НАШИ УСЛУГИ & ФОРМАТЫ СОПРОВОЖДЕНИЯ
   ========================================================================== */
.services-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
}

/* Section Sub-Headers within View */
.services-block-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-block-header.srv-mt-lg {
    margin-top: 4.5rem;
}

.srv-block-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.services-block-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.services-block-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(242, 238, 248, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   BLOCK 1: FLAGSHIP FORMATS (3 CARDS)
   ========================================================================== */
.services-flagship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.flagship-card {
    background: linear-gradient(180deg, rgba(20, 15, 30, 0.92) 0%, rgba(12, 8, 20, 0.96) 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s var(--transition), border-color 0.35s ease, box-shadow 0.35s ease;
}

.flagship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.4;
    transition: opacity 0.35s ease;
}

.flagship-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 168, 76, 0.15);
}

.flagship-card:hover::before {
    opacity: 1;
}

.flagship-card.highlight {
    border-color: rgba(201, 168, 76, 0.5);
    background: linear-gradient(180deg, rgba(28, 20, 42, 0.95) 0%, rgba(14, 9, 24, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 168, 76, 0.12);
}

.flagship-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.flagship-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.15);
}

.svg-flagship-icon {
    width: 24px;
    height: 24px;
}

.flagship-badge-label {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
}

.flagship-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.flagship-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1.4rem;
    line-height: 1.4;
}

.flagship-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.3) 0%, rgba(201, 168, 76, 0.05) 100%);
    margin-bottom: 1.4rem;
}

.flagship-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.flagship-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: rgba(242, 238, 248, 0.88);
    line-height: 1.5;
}

.flagship-check {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-flagship-action {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    padding: 0.95rem 1.4rem;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-flagship-action:hover {
    background: var(--gold-gradient);
    color: #0d0914;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.btn-flagship-action.btn-gold-fill {
    background: var(--gold-gradient);
    color: #0d0914;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.btn-flagship-action.btn-gold-fill:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d5b55b 100%);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.btn-action-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-flagship-action:hover .btn-action-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   BLOCK 2: PERSONAL SCENARIOS (5 CARDS)
   ========================================================================== */
.personal-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenario-card {
    background: rgba(18, 13, 26, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(201, 168, 76, 0.1);
}

.scenario-card.scenario-span-full {
    grid-column: 1 / -1;
}

.scenario-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

.svg-scenario-icon {
    width: 22px;
    height: 22px;
}

.scenario-content {
    flex: 1;
}

.scenario-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.scenario-desc {
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: rgba(242, 238, 248, 0.78);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   BLOCK 3: CONCIERGE SERVICES (6 CARDS)
   ========================================================================== */
.concierge-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.concierge-card {
    background: rgba(16, 11, 24, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.concierge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 168, 76, 0.1);
}

.concierge-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 1.1rem;
}

.svg-concierge-icon {
    width: 22px;
    height: 22px;
}

.concierge-card-title {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.concierge-card-desc {
    font-family: var(--font-body);
    font-size: 0.83rem;
    color: rgba(242, 238, 248, 0.74);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   BLOCK 4: CUSTOM REQUEST LUXURY BANNER
   ========================================================================== */
.custom-request-banner {
    background: linear-gradient(135deg, rgba(26, 18, 38, 0.94) 0%, rgba(14, 9, 22, 0.98) 100%);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 243, 212, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.custom-request-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.02) 55%, transparent 75%);
    pointer-events: none;
}

.custom-request-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.custom-request-header {
    margin-bottom: 0.9rem;
}

.custom-badge-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.custom-request-title {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.custom-request-text {
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: rgba(242, 238, 248, 0.85);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.btn-custom-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #fcebb6 0%, #c9a84c 50%, #9e7b2b 100%);
    color: #0d0914;
    padding: 1.05rem 2.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 235, 175, 0.5);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-custom-request:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.55);
    background: linear-gradient(135deg, #ffffff 0%, #d5b55b 100%);
    color: #0d0914;
}

.telegram-icon-custom {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   SERVICES RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .services-flagship-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .concierge-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .personal-scenarios-grid {
        grid-template-columns: 1fr;
    }

    .concierge-services-grid {
        grid-template-columns: 1fr;
    }

    .custom-request-banner {
        padding: 2.8rem 1.6rem;
        border-radius: 20px;
    }

    .custom-request-text {
        font-size: 0.88rem;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 480px) {
    .flagship-card {
        padding: 2rem 1.4rem;
        border-radius: 20px;
    }

    .scenario-card {
        padding: 1.4rem;
        gap: 1rem;
    }

    .concierge-card {
        padding: 1.4rem;
    }

    .custom-request-banner {
        padding: 2.2rem 1.2rem;
    }

    .btn-custom-request {
        padding: 0.9rem 1.5rem;
        font-size: 0.78rem;
        width: 100%;
    }
}


/* ==========================================================================
   VIEW 4: ДЛЯ ДЕВУШЕК
   ========================================================================== */
.join-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.join-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.join-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.join-icon {
    margin-bottom: 0.5rem;
}

.join-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1.3rem;
    line-height: 1.3;
}

.join-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.join-card li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.5;
}

.join-card li .svg-icon-check {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Application Form */
.join-form-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(15, 12, 23, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.join-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gold-gradient);
}

.form-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 2.2rem;
    line-height: 1.65;
}

.candidate-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

.flex-1 {
    flex: 1;
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-label {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    background: rgba(6, 4, 9, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.custom-textarea {
    resize: vertical;
    min-height: 110px;
}

.app-status-msg {
    font-size: 0.84rem;
    min-height: 1.2rem;
    text-align: center;
    padding: 0.3rem 0;
}

.app-status-msg.success {
    color: #56c9b7;
}

.app-status-msg.error {
    color: #e07070;
}

/* Shared Submit Button */
.btn-submit-deposit {
    width: 100%;
    background: var(--gold-gradient);
    border: none;
    color: #060409;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.95rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-submit-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-submit-deposit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   MODAL - SHARED BASE
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(201, 168, 76, 0.08);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s var(--transition);
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--border-gold);
    color: var(--gold-light);
}

.modal-header {
    padding: 2.5rem 2.8rem 0;
}

.modal-header.text-center {
    text-align: center;
}

.modal-subtitle {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Clean Goddess Face Logo (No frames/borders) */
.modal-logo-clean {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.2rem auto 1rem auto;
}

.modal-logo-face {
    height: 90px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 16px rgba(235, 200, 100, 0.75)) brightness(1.25) contrast(1.1);
}

.cabinet-modal-card .modal-header {
    padding: 2.2rem 2.2rem 0.5rem 2.2rem;
}

.cabinet-modal-card .modal-subtitle {
    font-family: var(--font-body);
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 0.35rem;
}

.cabinet-modal-card .modal-title {
    font-family: 'Cinzel', serif !important;
    font-size: 1.85rem !important;
    font-weight: 600 !important;
    background: var(--gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
    filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.35)) !important;
}

.cabinet-modal-card .modal-body {
    padding: 1.5rem 2.2rem 2.2rem 2.2rem;
}

.modal-body {
    padding: 1.8rem 2.8rem 2.5rem;
}

/* Auth Forms in Modal */
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 4px;
    margin-bottom: 1.6rem;
    gap: 4px;
}

.auth-tab-btn {
    background: transparent;
    border: none;
    color: rgba(242, 238, 248, 0.6);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.65rem 1rem;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.auth-tab-btn.active {
    background: var(--gold-gradient) !important;
    color: #0d0914 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35) !important;
    border-radius: 28px !important;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Floating Input Fields (Material Floating Labels) */
.floating-field {
    position: relative;
    margin-bottom: 1.25rem;
    width: 100%;
}

.floating-input {
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    padding: 1.35rem 1.1rem 0.35rem 1.1rem !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff !important;
    outline: none !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
    caret-color: var(--gold-light) !important;
    box-sizing: border-box !important;
}

.floating-input:focus {
    border-color: rgba(201, 168, 76, 0.75) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.25) !important;
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: rgba(242, 238, 248, 0.52);
    pointer-events: none;
    transition: all 0.22s ease-in-out;
    transform-origin: left top;
}

/* Active floating label on focus OR non-empty field */
.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    top: 0.52rem;
    transform: translateY(0);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 0.03em;
}

/* Gold Auth Submit Button */
.btn-auth-gold {
    width: 100% !important;
    height: 52px !important;
    background: var(--gold-gradient) !important;
    color: #0d0914 !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    margin-top: 0.8rem !important;
}

.btn-auth-gold:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.5) !important;
    filter: brightness(1.08) !important;
}

.auth-error {
    font-size: 0.8rem;
    color: #e07070;
    min-height: 1rem;
    text-align: center;
}

.auth-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================================
   CABINET MODAL - AUTHENTICATED VIEW
   ========================================================================== */
.cabinet-modal-card {
    width: 100%;
    max-width: 420px;
    max-height: 88vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-gold) transparent;
    background: linear-gradient(145deg, rgba(20, 15, 32, 0.96) 0%, rgba(11, 8, 20, 0.98) 100%) !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(201, 168, 76, 0.15) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

.cabinet-modal-card::-webkit-scrollbar {
    width: 4px;
}

.cabinet-modal-card::-webkit-scrollbar-track {
    background: transparent;
}

.cabinet-modal-card::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 4px;
}

.drawer-state-view {
    display: flex;
    flex-direction: column;
}

/* Profile Header Box */
.profile-header-box {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.profile-header-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #060409;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.profile-details .profile-status {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
}

.profile-details .profile-id {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.profile-details .profile-session {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.1rem;
}

/* Balance Widget */
.balance-widget {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.balance-widget::after {
    content: '₮';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.balance-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.balance-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.balance-amount {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.btn-deposit-usdt {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-deposit-usdt:hover {
    background: var(--gold-gradient);
    color: #060409;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* Cabinet Internal Tabs */
.cabinet-tabs-wrapper {
    margin-bottom: 1.2rem;
}

.cabinet-tabs {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.cab-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
    letter-spacing: 0.01em;
}

.cab-tab-btn.active {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Tab Panes */
.ctab-pane {
    display: none !important;
}

.ctab-pane.active {
    display: block !important;
    padding-top: 1rem;
}

/* Cabinet Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.cabinet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.cabinet-table th {
    text-align: left;
    padding: 0.7rem 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-subtle);
}

.cabinet-table td {
    text-align: left;
    padding: 0.9rem 0.8rem;
    border-bottom: 1px solid var(--border-muted);
    color: var(--text-secondary);
    font-size: 0.83rem;
}

.cabinet-table tr:last-child td {
    border-bottom: none;
}

.cabinet-table tr:hover td {
    background: rgba(201, 168, 76, 0.02);
    color: var(--text-primary);
}

.tx-hash {
    font-family: monospace;
    color: var(--text-secondary);
}

.text-green {
    color: #56c9b7;
    font-weight: 600;
}

/* Security Settings in Cabinet */
.security-settings-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.5rem;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.setting-row h5 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.setting-row p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

/* Status Badges */
.status-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
}

.status-badge.success {
    background: rgba(86, 201, 183, 0.12);
    color: #56c9b7;
    border: 1px solid rgba(86, 201, 183, 0.25);
}

.status-badge.warning {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

.status-badge.error {
    background: rgba(224, 112, 112, 0.12);
    color: #e07070;
    border: 1px solid rgba(224, 112, 112, 0.25);
}

/* Logout */
.logout-section {
    margin-top: 1.8rem;
}

.btn-logout {
    width: 100%;
    padding: 0.82rem;
    background: transparent;
    border: 1px solid rgba(224, 112, 112, 0.3);
    border-radius: 30px;
    color: rgba(224, 112, 112, 0.75);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.btn-logout:hover {
    background: rgba(122, 0, 38, 0.18);
    border-color: #e07070;
    color: #e07070;
}

/* ==========================================================================
   USDT DEPOSIT MODAL
   ========================================================================== */
#usdt-modal {
    position: fixed;
    inset: 0;
    z-index: 21000;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#usdt-modal.open {
    opacity: 1;
    visibility: visible;
}

.usdt-modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    position: relative;
    transform: translateY(14px);
    transition: transform 0.35s var(--transition);
}

#usdt-modal.open .usdt-modal-card {
    transform: translateY(0);
}

.deposit-step {
    display: none;
}

.deposit-step.active {
    display: block;
}

.deposit-modal-header {
    padding: 2.2rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.deposit-modal-body {
    padding: 1.8rem 2.5rem 2.5rem;
}

.deposit-net-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.net-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.22s ease;
}

.net-chip:hover {
    border-color: var(--border-gold);
    color: var(--gold-light);
}

.net-chip.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    font-weight: 600;
}

.deposit-amt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amt-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.55rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.22s ease;
}

.amt-chip:hover {
    border-color: var(--border-gold);
    color: var(--gold-light);
}

.amt-chip.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    font-weight: 600;
}

.wallet-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.usdt-wallet-input {
    flex: 1;
    background: rgba(6, 4, 9, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.75rem;
    outline: none;
}

.btn-copy-wallet {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-copy-wallet:hover {
    background: rgba(201, 168, 76, 0.18);
}

.deposit-progress-bar-wrap {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 4px;
    overflow: hidden;
    margin: 1.2rem 0;
}

.deposit-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: width 1s linear;
}

.step-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-success-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(86, 201, 183, 0.12);
    border: 1px solid rgba(86, 201, 183, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-gold);
    padding: 2.2rem 0 2rem 0;
    margin-top: 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

/* ── FOOTER THREE COLUMNS LAYOUT ───────────────────── */

/* Three equal columns */
.footer-cols-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col--left,
.footer-col--center,
.footer-col--right {
    text-align: center;
}

.footer-col--left .footer-links,
.footer-col--center .footer-cities-list,
.footer-col--right .footer-info-list {
    align-items: center;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-link-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    text-align: center;
    transition: color 0.2s ease;
    letter-spacing: 0.05em;
}

.footer-link-btn:hover {
    color: var(--gold-light);
}

.footer-cities-list,
.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-cities-list li,
.footer-info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-muted);
    padding-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   Breakpoints:
   - Desktop large   > 1200px
   - Desktop small   1100px
   - Tablet          900px
   - Mobile large    768px
   - Mobile          640px
   - Mobile small    480px
   ========================================================================== */

/* ── Desktop small (< 1200px) ── */
/* ── Tablet & Mobile layout (< 900px) ── */
@media (max-width: 900px) {
    .nav-links {
        gap: 0.2rem;
    }

    .nav-link {
        font-size: 0.78rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .nav-container {
        position: relative;
    }

    /* (Dynamic JS controls the logo centering and text expansion on mobile) */

    /* Nav - hide links, show hamburger */
    .nav-links {
        display: none;
    }

    .btn-hamburger {
        display: flex;
    }

    /* Compact nav actions */
    .nav-actions {
        gap: 0.45rem;
        margin-left: auto;
    }

    .btn-primary-nav,
    .btn-secondary-nav {
        padding: 0.45rem 0.9rem;
        font-size: 0.78rem;
    }

    /* Mobile nav dropdown */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(6, 4, 9, 0.97);
        border-bottom: 1px solid var(--border-gold);
        padding: 1rem 1.2rem;
        gap: 0.25rem;
        z-index: 9999;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-open .nav-link {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        border-radius: var(--radius-sm);
        width: 100%;
        text-align: left;
    }

    .nav-links.mobile-open .nav-link::after {
        display: none;
    }

    .nav-links.mobile-open .nav-link.active {
        background: rgba(201, 168, 76, 0.08);
        color: var(--gold-light);
    }

    .btn-hamburger.open .bar-1 {
        transform: translateY(7px) rotate(45deg);
    }

    .btn-hamburger.open .bar-2 {
        opacity: 0;
        transform: scaleX(0);
    }

    .btn-hamburger.open .bar-3 {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Sections */
    .hero-section {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }

    .hero-section::before {
        display: none !important;
    }

    .about-detailed-section {
        padding: 2rem 0 5rem;
    }

    .standards-section,
    .services-section,
    .join-section {
        padding-top: 5.5rem;
        padding-bottom: 5rem;
    }

    /* Grids → 1 column */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .security-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .join-info-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .formats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    /* Security banner → stacked */
    .security-features-banner {
        grid-template-columns: 1fr;
    }

    .sec-banner-item {
        border-right: none;
        border-bottom: 1px solid var(--border-gold);
    }

    .sec-banner-item:last-child {
        border-bottom: none;
    }

    /* Services grid → 2 cols */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    /* Section header */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Footer stacked vertically top-to-bottom on tablet & mobile */
    .footer-cols-row {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        text-align: center;
    }

    /* Stat card padding */
    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* ── Mobile large (< 768px) ── */
@media (max-width: 768px) {

    /* Navbar - ultra compact */
    .navbar {
        padding: 0 1rem;
    }

    /* Hide balance button on small mobile - accessible from cabinet */
    .btn-balance-nav {
        display: none;
    }

    /* Guest actions - show only primary */
    .guest-header-actions .btn-secondary-nav {
        display: none;
    }

    /* Hero section */
    .hero-section {
        padding-top: 5rem;
    }

    .hero-section::before {
        display: none;
    }

    /* Stat cards - Centered Gold Text, Gold Divider Line, Centered White Text */
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        overflow: visible !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 420px !important;
    }

    .hero-stats .stat-card {
        background: linear-gradient(135deg, rgba(22, 17, 33, 0.8) 0%, rgba(13, 9, 20, 0.9) 100%) !important;
        border: 1px solid rgba(201, 168, 76, 0.28) !important;
        border-radius: 20px !important;
        padding: 1.6rem 1.4rem 1.4rem 1.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        position: relative !important;
        overflow: hidden !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 243, 212, 0.15) !important;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    }

    /* Top gold accent line */
    .hero-stats .stat-card::before {
        display: none !important;
    }

    .hero-stats .stat-card:hover,
    .hero-stats .stat-card:active {
        background: linear-gradient(135deg, rgba(28, 22, 42, 0.88) 0%, rgba(18, 13, 28, 0.94) 100%) !important;
        border-color: rgba(201, 168, 76, 0.48) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 168, 76, 0.22) !important;
    }

    /* Centered Gold Text */
    .hero-stats .stat-value {
        font-family: var(--font-heading) !important;
        font-size: 2.1rem !important;
        font-weight: 700 !important;
        background: var(--gold-gradient) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        letter-spacing: 0.01em !important;
        margin-bottom: 0.4rem !important;
        line-height: 1 !important;
        text-align: center !important;
        filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.4)) !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Gold Divider Line between Gold Text and White Text */
    .hero-stats .stat-value::after {
        content: '' !important;
        display: block !important;
        width: 44px !important;
        height: 1.5px !important;
        background: var(--gold-gradient) !important;
        margin: 0.7rem auto 0.2rem auto !important;
        border-radius: 2px !important;
        box-shadow: 0 0 8px rgba(201, 168, 76, 0.6) !important;
    }

    /* Centered White Text Below */
    .hero-stats .stat-label {
        font-size: 0.86rem !important;
        color: rgba(242, 238, 248, 0.92) !important;
        letter-spacing: 0.04em !important;
        line-height: 1.4 !important;
        font-weight: 500 !important;
        text-align: center !important;
        white-space: normal !important;
        margin-top: 0.25rem !important;
    }

    /* Story grid */
    .about-detailed-section {
        padding: 2rem 0 4rem;
    }

    .story-ethics-card {
        padding: 2rem 1.5rem;
    }

    /* Security cards */
    .sec-card-large {
        padding: 1.8rem;
    }

    .sec-card-large h4 {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.8rem;
    }

    /* Formats */
    .services-formats-card {
        padding: 2rem 1.5rem;
    }

    .formats-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    /* Join */
    .join-form-card {
        padding: 2.2rem 1.5rem;
    }

    /* Modal */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-card {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        overflow-y: auto;
    }

    .cabinet-modal-card {
        max-width: 100%;
        max-height: 92vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .modal-overlay.open .modal-card {
        transform: translateY(0) scale(1);
    }

    .modal-header {
        padding: 1.8rem 1.6rem 0;
    }

    .modal-body {
        padding: 1.4rem 1.6rem 2rem;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    /* USDT modal */
    #usdt-modal.modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .usdt-modal-card {
        max-width: 100%;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 92vh;
    }

    /* Mobile: Single combined couple emblem centered in background */
    @media (max-width: 991px),
    (pointer: coarse) {

        .story-bg-emblem--left,
        .story-bg-emblem--right {
            display: none !important;
        }

        .story-bg-emblem--mobile {
            display: block !important;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            max-width: 440px;
            height: auto;
            opacity: 0.38;
            pointer-events: none;
            filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.85));
            mix-blend-mode: screen;
            z-index: 0;
        }
    }

    /* Footer stacked vertically top-to-bottom */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-cols-row {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        text-align: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    /* Section container */
    .section-container {
        padding: 0 1rem;
    }

    /* Cabinet */
    .profile-header-box {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .profile-avatar {
        margin: 0 auto;
    }

    .balance-widget {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .balance-amount {
        font-size: 1.6rem;
    }

    .btn-deposit-usdt {
        width: 100%;
    }

    .cabinet-tabs {
        gap: 0;
    }

    .cab-tab-btn {
        font-size: 0.72rem;
        padding: 0.55rem 0.4rem;
    }
}

/* ── Mobile (< 640px) ── */
@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
        gap: 0.9rem;
    }

    /* Stat cards → 1 col on very small screens only if 3 cols too tight */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .hero-stats .stat-card {
        padding: 1rem 0.25rem;
    }

    .hero-stats .stat-value {
        font-size: clamp(1.15rem, 4.2vw, 1.45rem);
    }

    .hero-stats .stat-label {
        font-size: clamp(0.55rem, 2vw, 0.65rem);
        line-height: 1.3;
    }

    /* Amount chips in deposit */
    .amount-chips {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Network chips */
    .network-chips {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-copy {
        font-size: 0.72rem;
    }

    .footer-disclaimer {
        font-size: 0.68rem;
    }

    /* Section spacing */
    .standards-section,
    .services-section,
    .join-section {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    /* Presence badges - elegant flex wrap */
    .presence-badges {
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    /* Security banner items */
    .sec-banner-item {
        padding: 1.5rem 1.2rem;
    }

    .sec-banner-item h5 {
        font-size: 0.9rem;
    }

    /* Join form */
    .join-form-card {
        padding: 1.8rem 1.2rem;
    }

    .join-card {
        padding: 1.8rem;
    }

    /* Story ethics card */
    .story-ethics-card {
        padding: 1.5rem 1.1rem;
    }

    .story-ethics-card h4 {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    /* Footer columns */
    .footer-cols-row {
        gap: 1.8rem;
    }

    /* Modal header tighter */
    .modal-header {
        padding: 1.5rem 1.4rem 0;
    }

    .modal-body {
        padding: 1.2rem 1.4rem 1.8rem;
    }

    .success-screen-body {
        padding: 2rem 1.4rem 2.5rem;
    }
}

/* ── Mobile small (< 480px) ── */
@media (max-width: 480px) {

    /* Navbar */
    .nav-brand-main {
        font-size: 0.95rem;
        letter-spacing: 0.14em;
    }

    .btn-primary-nav {
        padding: 0.42rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero-asteria-img {
        max-width: 240px;
    }

    .hero-headline {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
    }

    /* Story Ethics Card for 430px / iPhone Pro Max */
    .story-ethics-card {
        padding: 1.3rem 0.9rem;
    }

    .story-ethics-card h4 {
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        word-break: break-word;
    }

    .story-ethics-card p {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 1.2rem;
    }

    .eth-item {
        font-size: 0.76rem;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    /* Stats → 3 tiny columns */
    .hero-stats {
        gap: 0.5rem;
    }

    .stat-value {
        font-size: 1.35rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.4rem;
    }

    /* Formats */
    .formats-title {
        font-size: 1.1rem;
    }

    /* Amount chips */
    .amount-chips {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Address box */
    .deposit-address-box {
        flex-direction: column;
    }

    .address-input-wrapper {
        flex-direction: column;
    }

    .btn-copy {
        width: 100%;
        text-align: center;
    }

    /* Cabinet tabs */
    .cab-tab-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
        letter-spacing: -0.01em;
    }

    /* Success screen */
    .success-screen-body {
        padding: 1.8rem 1.2rem 2.2rem;
    }

    .success-icon-badge {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .footer-tagline {
        font-size: 0.78rem;
    }
}

/* ── Prevent horizontal scroll globally ── */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ==========================================================================
   USDT MODAL - DETAILED COMPONENT STYLES
   ========================================================================== */

/* The USDT modal uses .modal-overlay class - override to be inline-flex */
#usdt-modal.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 21000;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#usdt-modal.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.network-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-top: 0.5rem;
}

.amount-chips {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin: 0.5rem 0 1rem 0;
}

.deposit-error {
    font-size: 0.8rem;
    color: #e07070;
    min-height: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-actions {
    margin-top: 0.5rem;
}

/* Step 2 - Payment waiting */
.payment-timer-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.timer-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.timer-countdown {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.06em;
}

.timer-progress-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 4px;
    overflow: hidden;
}

.timer-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: width 1s linear;
    width: 100%;
}

.deposit-address-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    margin-bottom: 1.5rem;
}

.qr-mockup {
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.address-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.addr-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.address-input-wrapper {
    display: flex;
    gap: 0.4rem;
}

.addr-input {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(6, 4, 9, 0.8);
}

.btn-copy {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: rgba(201, 168, 76, 0.18);
}

.addr-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.blockchain-status-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
}

.status-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status-headline {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.status-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pay-net-badge {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    letter-spacing: 0.03em;
}

/* Step 3 - Success */
.success-screen-body {
    padding: 2.5rem 2.8rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.success-icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(86, 201, 183, 0.1);
    border: 1px solid rgba(86, 201, 183, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.success-details-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1rem 0;
}

.success-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.3rem;
    border-bottom: 1px solid var(--border-muted);
    font-size: 0.84rem;
}

.success-row:last-child {
    border-bottom: none;
}

.success-row span:first-child {
    color: var(--text-muted);
}

.success-row span:last-child,
.success-row strong {
    color: var(--text-primary);
}

/* ==========================================================================
   HAMBURGER ANIMATION
   ========================================================================== */
.btn-hamburger.open .bar-1 {
    transform: translateY(7px) rotate(45deg);
}

.btn-hamburger.open .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.btn-hamburger.open .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
}

.bar-1,
.bar-2,
.bar-3 {
    display: block;
    transform-origin: center;
}

/* ==========================================================================
   ADDITIONAL AMOUNT CHIPS RESPONSIVE
   ========================================================================== */
@media (max-width: 500px) {
    .amount-chips {
        grid-template-columns: repeat(3, 1fr);
    }

    .network-chips {
        grid-template-columns: 1fr;
    }

    .address-input-wrapper {
        flex-direction: column;
    }

    .deposit-address-box {
        flex-direction: column;
    }

    .success-screen-body {
        padding: 2rem 1.5rem 2.5rem;
    }
}

/* ==========================================================================
   iOS SAFE AREA & NOTCH SUPPORT
   ========================================================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .navbar {
        padding-left: max(clamp(1rem, 3vw, 2.8rem), env(safe-area-inset-left));
        padding-right: max(clamp(1rem, 3vw, 2.8rem), env(safe-area-inset-right));
    }

    .modal-overlay {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    .modal-card,
    .cabinet-modal-card,
    .usdt-modal-card {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .nav-links.mobile-open {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   TOUCH OPTIMIZATION
   ========================================================================== */
/* Larger touch targets on mobile */
@media (max-width: 768px) {

    .nav-link,
    .btn-primary-nav,
    .btn-secondary-nav,
    .btn-hamburger,
    .cab-tab-btn,
    .auth-tab-btn,
    .net-chip,
    .amt-chip,
    .btn-order-service,
    .btn-deposit-usdt,
    .btn-logout,
    .btn-submit-deposit,
    .footer-link-btn {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    /* Minimum 44px touch target for interactive elements */
    .btn-hamburger {
        min-width: 44px;
        min-height: 44px;
    }

    .modal-close {
        min-width: 40px;
        min-height: 40px;
    }

    /* Disable hover effects that don't work on touch */
    .stat-card:hover,
    .sec-card-large:hover,
    .service-card:hover,
    .join-card:hover,
    .p-badge:hover,
    .eth-item:hover,
    .fmt-box:hover {
        transform: none;
    }

    /* Smooth scrolling on iOS */
    .cabinet-modal-card,
    .modal-card,
    .usdt-modal-card {
        -webkit-overflow-scrolling: touch;
    }
}

/* ==========================================================================
   INTRO SCREEN MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .intro-stage {
        width: 85%;
        max-width: 380px;
    }

    .intro-goddess-img {
        max-width: 240px;
    }

    .intro-text-reveal {
        max-width: 340px;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE - Services 3 cols
   ========================================================================== */
@media (min-width: 769px) and (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   PRINT STYLES (basic cleanup)
   ========================================================================== */
@media print {

    .navbar,
    .ambient-bg,
    .intro-screen,
    .modal-overlay,
    #usdt-modal,
    .btn-hamburger {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .view-pane {
        display: block !important;
    }
}

/* ==========================================================================
   HAMBURGER BUTTON - NEW ICON DESIGN
   ========================================================================== */
.btn-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gold-primary);
    padding: 0;
    z-index: 10001;
    flex-shrink: 0;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-hamburger:hover {
    color: var(--gold-light);
}

/* Show hamburger icon by default, hide close icon */
.btn-hamburger .hamburger-icon {
    display: block;
}

.btn-hamburger .close-icon {
    display: none;
}

/* When open: swap icons */
.btn-hamburger.open .hamburger-icon {
    display: none;
}

.btn-hamburger.open .close-icon {
    display: block;
    color: var(--gold-light);
}

/* ==========================================================================
   MOBILE FULL-SCREEN MENU OVERLAY
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: rgba(6, 4, 9, 0.98);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s var(--transition, cubic-bezier(0.22, 1, 0.36, 1));
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 0 2rem;
    overflow-y: auto;
}

/* Nav items */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.5rem 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.8rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    letter-spacing: 0.01em;
}

.mobile-nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.06);
}

.mobile-nav-item.active {
    color: #fff;
    font-weight: 600;
    background: rgba(201, 168, 76, 0.08);
}

.mobile-nav-item.active svg {
    color: var(--gold-primary);
}

.mobile-nav-item svg {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:hover svg {
    transform: translateX(3px);
    color: var(--gold-primary);
}

/* Footer badge in mobile menu */
.mobile-menu-footer {
    padding: 1.5rem 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.mobile-menu-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.mobile-sec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #56c9b7;
    box-shadow: 0 0 6px rgba(86, 201, 183, 0.5);
    flex-shrink: 0;
}

/* iOS safe area for mobile overlay */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-menu-inner {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Only show hamburger on mobile and hide desktop links */
@media (max-width: 768px) {
    .btn-hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .btn-secondary-nav {
        display: none !important;
    }

    .btn-manager-nav span {
        display: none;
    }

    .btn-manager-nav {
        padding: 0.5rem;
        border-radius: 50%;
    }
}

/* On desktop - overlay and hamburger both hidden */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }

    .btn-hamburger {
        display: none !important;
    }
}

/* ==========================================================================
   WORKFLOW STEPS SECTION (3-STEP PROCESS FLOW)
   ========================================================================== */
.workflow-section {
    padding: 5rem 0 6rem 0;
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    background: radial-gradient(circle at 50% 30%, rgba(20, 15, 32, 0.6) 0%, transparent 70%);
}

.workflow-header {
    margin-bottom: 4rem;
}

.workflow-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}

/* Connecting Line on Desktop behind step badges */
.workflow-line-bg {
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.65) 50%, rgba(201, 168, 76, 0.15) 100%);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
    z-index: 1;
}

.workflow-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-badge-wrapper {
    margin-bottom: 1.8rem;
    position: relative;
}

.step-num-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(28, 22, 42, 0.95) 0%, rgba(13, 9, 20, 0.98) 100%);
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.35), inset 0 0 12px rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step-item:hover .step-num-badge {
    transform: scale(1.1);
    box-shadow: 0 0 32px rgba(201, 168, 76, 0.6);
}

.step-content-box {
    background: linear-gradient(145deg, rgba(22, 17, 33, 0.6) 0%, rgba(13, 9, 20, 0.8) 100%);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 20px;
    padding: 2.2rem 1.6rem 2rem 1.6rem;
    width: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    flex: 1;
}

.workflow-step-item:hover .step-content-box {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(201, 168, 76, 0.18);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.step-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(242, 238, 248, 0.82);
    line-height: 1.65;
    margin: 0;
}

/* Mobile Media Query for Workflow Steps */
@media (max-width: 768px) {
    .workflow-section {
        padding: 3.5rem 0 4rem 0;
    }

    .workflow-header {
        margin-bottom: 2.5rem;
    }

    .workflow-steps-container {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        position: relative;
        max-width: 440px;
        margin: 0 auto;
    }

    /* Disable container-level full lines */
    .workflow-steps-container::before,
    .workflow-line-bg {
        display: none !important;
    }

    .workflow-step-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        /* Vertically centers the number circle on the side of each card */
        text-align: left;
        gap: 1.2rem;
        position: relative;
        z-index: 2;
    }

    /* Vertical line connecting center of Item N to center of Item N+1 ONLY */
    .workflow-step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 28px;
        /* Centered through 56px badge (56px / 2 = 28px) */
        transform: translateX(-50%);
        width: 2px;
        height: calc(100% + 1.8rem);
        /* Extends from center of circle N to center of circle N+1 */
        background: linear-gradient(180deg, rgba(201, 168, 76, 0.75) 0%, rgba(201, 168, 76, 0.4) 100%);
        box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
        z-index: 1;
        pointer-events: none;
    }

    .step-badge-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .step-content-box {
        padding: 1.5rem 1.25rem;
    }
}

/* ==========================================================================
   PRIVATE CATALOG CALL-TO-ACTION BANNER
   ========================================================================== */
.private-catalog-banner {
    padding: 3.5rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.catalog-banner-card {
    background: linear-gradient(135deg, rgba(24, 18, 36, 0.92) 0%, rgba(12, 8, 20, 0.96) 100%);
    border: 1px solid rgba(201, 168, 76, 0.32);
    border-radius: 28px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 243, 212, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.03) 55%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.catalog-banner-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.catalog-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0.6rem 0 1.2rem 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.catalog-banner-text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: rgba(242, 238, 248, 0.84);
    line-height: 1.75;
    margin-bottom: 2.4rem;
    max-width: 680px;
}

/* Modern Sleek CTA Button (Unbounded font, smooth arrow glide) */
.btn-catalog-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    background: linear-gradient(135deg, #fcebb6 0%, #c9a84c 50%, #9e7b2b 100%);
    color: #0d0914;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 235, 175, 0.5);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.btn-catalog-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.55);
    background: linear-gradient(135deg, #ffffff 0%, #d5b55b 100%);
    color: #0d0914;
}

.btn-catalog-gold .btn-arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-catalog-gold:hover .btn-arrow-icon {
    transform: translateX(5px);
}

/* Mobile Media Query for Catalog Banner */
@media (max-width: 768px) {
    .catalog-banner-card {
        padding: 3rem 1.6rem;
        border-radius: 22px;
    }

    .catalog-banner-text {
        font-size: 0.94rem;
        margin-bottom: 2rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .catalog-banner-card {
        padding: 2.4rem 1.2rem;
    }

    .btn-catalog-gold {
        padding: 0.9rem 1.6rem;
        font-size: 0.82rem;
        gap: 0.6rem;
    }
}

/* ==========================================================================
   MODEL COOPERATION SECTION
   ========================================================================== */
.models-cooperation-section {
    padding: 1rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.cooperation-card {
    background: linear-gradient(135deg, rgba(20, 14, 30, 0.94) 0%, rgba(10, 6, 16, 0.98) 100%);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 28px;
    padding: 4.5rem 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 243, 212, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.cooperation-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.03) 60%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.cooperation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.cooperation-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0.6rem 0 1.2rem 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.cooperation-text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: rgba(242, 238, 248, 0.84);
    line-height: 1.75;
    margin-bottom: 3.2rem;
    max-width: 720px;
}

/* Perks Grid inside Cooperation Card */
.cooperation-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    width: 100%;
    margin-bottom: 3.2rem;
}

.coop-perk-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 20px;
    padding: 2.2rem 1.6rem;
    text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.coop-perk-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.coop-perk-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fcebb6 0%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coop-perk-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.02em;
}

.coop-perk-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(242, 238, 248, 0.78);
    line-height: 1.6;
    margin: 0;
}

.cooperation-action {
    display: flex;
    justify-content: center;
}

/* Mobile Media Queries for Cooperation */
@media (max-width: 991px) {
    .cooperation-perks-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .coop-perk-item {
        padding: 1.8rem 1.4rem;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cooperation-card {
        padding: 3rem 1.6rem;
        border-radius: 22px;
    }

    .cooperation-text {
        font-size: 0.94rem;
        margin-bottom: 2.4rem;
    }
}

@media (max-width: 480px) {
    .cooperation-card {
        padding: 2.4rem 1.2rem;
    }
}


/* Floating Labels in Candidate Application Form */
.candidate-form .floating-field {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.candidate-form .form-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
}

.candidate-form textarea.floating-input {
    height: auto !important;
    min-height: 120px !important;
    padding: 1.6rem 1.1rem 0.6rem 1.1rem !important;
    line-height: 1.5;
    resize: vertical;
}

.candidate-form .floating-label-textarea {
    top: 1.2rem !important;
    transform: none !important;
}

.candidate-form textarea.floating-input:focus ~ .floating-label-textarea,
.candidate-form textarea.floating-input:not(:placeholder-shown) ~ .floating-label-textarea {
    top: 0.52rem !important;
    transform: translateY(0) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    color: var(--gold-primary) !important;
}

.join-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.join-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.6rem 2.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}

.join-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}
