/*
Theme Name: Carmen Studio
Theme URI: https://carmenstudio.cc/
Author: Carmen Studio
Author URI: https://carmenstudio.cc/
Description: Ultra-modern dark luxury theme v2.1 — fixed mobile nav, lighter palette, gold accents, glassmorphism.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paradise-webcam
Tags: dark, luxury, gold, webcam, studio, responsive, modern, elegant
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    /* === Lighter Dark Luxury Palette === */
    --bg-deep:        #0d0d18;
    --bg-dark:        #121222;
    --bg-card:        #181830;
    --bg-elevated:    #1f1f3a;
    --bg-surface:     #242444;

    /* Gold System */
    --gold-light:     #f5d78e;
    --gold:           #d4a843;
    --gold-deep:      #a07825;
    --gold-gradient:  linear-gradient(135deg, #f5d78e 0%, #d4a843 40%, #a07825 100%);
    --gold-glow:      0 0 36px rgba(212, 168, 67, 0.3);

    /* Text */
    --text-primary:   #eeeae4;
    --text-secondary: #a8a5a0;
    --text-muted:     #6b6878;

    /* Borders */
    --border-gold:    rgba(212, 168, 67, 0.28);
    --border-subtle:  rgba(255, 255, 255, 0.08);

    /* Accents */
    --accent-rose:    #c8556a;
    --accent-violet:  #7c5cbf;

    /* Typography */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Layout */
    --container-width: 1260px;
    --header-height:   72px;

    /* Transitions */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-gradient); border-radius: 3px; }
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg-dark); }

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.28;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-light); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

/* ============================================
   UTILITY
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.875rem;
}

.section-title { color: var(--text-primary); margin-bottom: 1.25rem; }
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.section-header-center { text-align: center; margin-bottom: 3rem; }

/* Glow helpers */
.glow-tl { position: relative; overflow: hidden; }
.glow-tl::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.07;
    top: -130px; left: -80px;
    background: var(--gold);
    z-index: 0;
}
.glow-br { position: relative; overflow: hidden; }
.glow-br::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.06;
    bottom: -130px; right: -80px;
    background: var(--accent-violet);
    z-index: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--ease-out-quart), transform 0.65s var(--ease-out-quart);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="left"].revealed  { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.93); opacity: 0; }
[data-reveal="scale"].revealed { transform: scale(1); opacity: 1; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--ease-out-quart), transform 0.65s var(--ease-out-quart);
}
.fade-in-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--gold-gradient);
    color: #0d0d18;
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212, 168, 67, 0.5); color: #0d0d18; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}
.btn-outline:hover { background: rgba(212, 168, 67, 0.1); border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--gold-glow); }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); transform: translateY(-2px); }

/* ============================================
   HEADER  —  REDESIGNED FOR MOBILE
   ============================================ */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: rgba(13, 13, 24, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    transition: transform 0.4s var(--ease-out-quart), background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(13, 13, 24, 0.95);
    box-shadow: 0 6px 30px rgba(0,0,0,0.5), 0 1px 0 var(--border-gold);
}
.site-header.hidden  { transform: translateY(-100%); }
.site-header.visible { transform: translateY(0); }

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo — pushes everything to the right */
.site-branding { flex-shrink: 0; margin-right: auto; }
.site-branding a { display: flex; align-items: center; }
.custom-logo { height: 38px; width: auto; }
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Desktop Nav */
.main-navigation {
    display: flex;
    align-items: center;
}
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0; padding: 0;
    align-items: center;
}
.main-navigation ul li { position: relative; }
.main-navigation a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.main-navigation a:hover,
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
    color: var(--gold-light);
    background: rgba(212, 168, 67, 0.08);
}

/* Desktop action group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}
.header-socials {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 7px;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all 0.2s ease;
    background: transparent;
    flex-shrink: 0;
}
.header-social:hover {
    color: var(--gold-light);
    border-color: var(--border-gold);
    background: rgba(212, 168, 67, 0.1);
    transform: translateY(-1px);
}

/* Lang switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 7px;
    padding: 2px;
    flex-shrink: 0;
}
.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    -webkit-tap-highlight-color: transparent;
}
.lang-btn:hover, .lang-btn.active {
    color: var(--gold-light);
    background: rgba(212, 168, 67, 0.14);
}
.lang-separator { display: none; }

/* Header CTA (desktop only) */
.header-cta-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
}

/* ── Burger button ── */
.mobile-menu-toggle {
    display: none;        /* hidden on desktop */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: none;
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1002;
}
.mobile-menu-toggle:hover {
    border-color: var(--border-gold);
    background: rgba(212, 168, 67, 0.08);
}
/* Three lines */
.burger-line {
    display: block;
    width: 18px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    position: absolute;
}
.burger-line:nth-child(1) { transform: translateY(-5px); }
.burger-line:nth-child(2) { transform: translateY(0); }
.burger-line:nth-child(3) { transform: translateY(5px); }
/* Open state — X */
.mobile-menu-toggle.is-open .burger-line:nth-child(1) { transform: translateY(0) rotate(45deg); }
.mobile-menu-toggle.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-open .burger-line:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── Mobile slide-down panel ── */
.mobile-nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(13, 13, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 999;
    padding: 1.25rem clamp(1rem, 4vw, 2rem) 2rem;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;

    /* Hidden by default */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s var(--ease-out-quart);
}
.mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Nav list inside panel — populated by JS */
.mobile-nav-links { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-subtle); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold-light); }

/* Panel bottom row */
.mobile-nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

/* Socials inside mobile panel */
.mobile-socials {
    display: flex;
    gap: 0.5rem;
}
.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.mobile-socials a:hover { color: var(--gold-light); border-color: var(--border-gold); background: rgba(212,168,67,0.1); }

/* CTA in mobile panel */
.mobile-cta-btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ────────────────────────────────────────────
   Breakpoints for header
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Hide desktop nav & action group */
    .main-navigation { display: none !important; }
    .header-actions  { display: none !important; }
    /* Show burger */
    .mobile-menu-toggle { display: flex; }
}

@media (min-width: 1025px) {
    .mobile-menu-toggle { display: none !important; }
    .mobile-nav-panel   { display: none !important; }
}

@media (max-width: 360px) {
    .site-logo { font-size: 1.15rem; }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.site-main { min-height: calc(100vh - var(--header-height)); }

.section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.section-alt    { background: var(--bg-dark); }
.section-deeper { background: var(--bg-card); }
.section-surface{ background: var(--bg-surface); }

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-deep);
    padding-top: var(--header-height);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.hero-slider { position: absolute; inset: 0; z-index: 2; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    filter: brightness(0.28) saturate(0.5);
}
.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(to right, rgba(13,13,24,0.93) 0%, rgba(13,13,24,0.55) 55%, rgba(13,13,24,0.12) 100%),
        linear-gradient(to top, rgba(13,13,24,0.85) 0%, transparent 45%);
}

/* Gold left bar */
.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%; bottom: 20%;
    width: 3px;
    background: var(--gold-gradient);
    z-index: 5;
    border-radius: 0 2px 2px 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem clamp(1rem, 4vw, 2rem) 5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s var(--ease-out-quart) both;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 26px; height: 1px;
    background: var(--gold-gradient);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.9s var(--ease-out-quart) 0.15s both;
}
.hero-title-line { display: block; color: var(--text-primary); }
.hero-title-accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.92rem, 2vw, 1.08rem);
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.9s var(--ease-out-quart) 0.28s both;
    line-height: 1.7;
}
.hero-subtitle-accent, .hero-description-accent { color: var(--gold-light); }

.hero-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    animation: fadeInUp 0.9s var(--ease-out-quart) 0.38s both;
}

.hero-cta {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s var(--ease-out-quart) 0.5s both;
}

.hero-stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    animation: fadeInUp 0.9s var(--ease-out-quart) 0.65s both;
    flex-wrap: wrap;
}
.hero-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0.2rem 0 0;
}

.hero-navigation {
    position: absolute;
    bottom: clamp(1.25rem, 4vw, 2.5rem);
    right: clamp(1rem, 4vw, 2.5rem);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}
.hero-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.hero-nav-btn:hover { background: rgba(212,168,67,0.15); box-shadow: var(--gold-glow); transform: scale(1.05); }

.hero-pagination {
    position: absolute;
    bottom: clamp(1.25rem, 4vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
}
.hero-dot {
    width: 20px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.22);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active { width: 40px; background: var(--gold-gradient); }

/* ============================================
   FEATURES GRID
   ============================================ */

.why-choose-section { background: var(--bg-dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.feature-item {
    background: var(--bg-card);
    padding: 1.875rem 1.5rem;
    transition: background 0.3s ease;
    position: relative;
}
.feature-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-quart);
}
.feature-item:hover { background: var(--bg-elevated); }
.feature-item:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 1.7rem; margin-bottom: 1rem; display: block; }
.feature-title { font-family: var(--font-primary); font-size: 0.92rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.35; }
.feature-description { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section { background: var(--bg-deep); overflow: hidden; }

.about-background {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) saturate(0.4);
    transform: scale(1.04);
}
.about-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,13,24,0.92) 0%, rgba(13,13,24,0.72) 55%, rgba(13,13,24,0.9) 100%);
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}
.about-section .section-header-center { position: relative; z-index: 2; }

.about-content-box {
    background: rgba(24, 24, 48, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}
.about-content-box h3 { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 1rem; }
.about-content-box p { color: var(--text-secondary); line-height: 1.85; }

.about-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.about-stat-box {
    background: rgba(24, 24, 48, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 1.625rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.about-stat-box:hover { background: rgba(30, 30, 58, 0.92); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35), var(--gold-glow); }
.about-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.375rem;
}
.about-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }

/* ============================================
   HOW TO START
   ============================================ */

.how-to-start-section { background: var(--bg-card); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold) 20%, var(--border-gold) 80%, transparent);
    pointer-events: none;
    z-index: 0;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.125rem 1.5rem;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 6px var(--bg-card), 0 0 0 7px var(--border-gold);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.step-item:hover .step-number {
    box-shadow: 0 0 0 6px var(--bg-card), 0 0 0 7px var(--gold), var(--gold-glow);
    transform: scale(1.05);
}
.step-item h4 { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); line-height: 1.6; max-width: 170px; }

/* ============================================
   WORK DESCRIPTION
   ============================================ */

.work-description-section { background: var(--bg-deep); }
.who-suitable { margin-top: 2.5rem; }
.who-suitable h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1rem; }

.suitable-list, .offer-list {
    list-style: none;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}
.suitable-list li, .offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
    line-height: 1.5;
}
.suitable-list li:hover, .offer-list li:hover { border-color: var(--border-gold); background: var(--bg-elevated); }
.suitable-list li::before, .offer-list li::before { content: '◆'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; margin-top: 0.3rem; }

.what-we-offer { margin-top: 2.5rem; }
.what-we-offer h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1rem; }

.callout {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.07);
    margin: 1.75rem 0;
    position: relative;
}
.callout::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 0 0 3px;
}
.callout-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.callout-text { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.callout-accent { color: var(--gold-light); font-weight: 600; }

/* Mini carousel */
.mini-carousel {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin: 2rem 0;
    aspect-ratio: 16/7;
    box-shadow: 0 14px 44px rgba(0,0,0,0.45);
    border: 1px solid var(--border-gold);
}
.mini-slider { position: relative; width: 100%; height: 100%; }
.mini-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.mini-slide.active { opacity: 1; }
.mini-nav { position: absolute; bottom: 0.875rem; right: 0.875rem; display: flex; gap: 0.375rem; z-index: 2; }
.mini-nav-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(13,13,24,0.75);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.mini-nav-btn:hover { background: rgba(212,168,67,0.2); }
.mini-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2; }
.mini-dot { width: 16px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s ease; }
.mini-dot.active { width: 28px; background: var(--gold-gradient); }

/* ============================================
   VACANCIES
   ============================================ */

.vacancies-section { background: var(--bg-dark); }
.vacancies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.vacancy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
}
.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-quart);
}
.vacancy-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 18px 46px rgba(0,0,0,0.45), 0 0 30px rgba(212,168,67,0.07); background: var(--bg-elevated); }
.vacancy-card:hover::before { transform: scaleX(1); }
.vacancy-card h3 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.875rem; }
.vacancy-description { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.vacancy-salary {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section { background: var(--bg-deep); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.375rem 0;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.faq-question:hover h4 { color: var(--gold-light); }
.faq-question h4 { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 500; color: var(--text-primary); transition: color 0.2s; line-height: 1.5; }
.faq-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
}
.faq-item.open .faq-toggle { background: rgba(212,168,67,0.12); border-color: var(--border-gold); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-quart); }
.faq-answer p { padding-bottom: 1.375rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin: 0; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================
   BLOG
   ============================================ */

.blog-section { background: var(--bg-dark); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.post-thumbnail { aspect-ratio: 16/9; overflow: hidden; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.82) saturate(0.7); }
.post-card:hover .post-thumbnail img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.post-content { padding: clamp(1.125rem, 3vw, 1.625rem); flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.post-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.4; }
.post-title a { color: inherit; transition: color 0.2s; }
.post-title a:hover { color: var(--gold-light); }
.post-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 1.125rem; }
.read-more { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s ease, color 0.2s; align-self: flex-start; }
.read-more:hover { gap: 0.7rem; color: var(--gold-light); }

/* ============================================
   APPLICATION FORM
   ============================================ */

.application-section { background: var(--bg-deep); }
.application-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: clamp(1.75rem, 5vw, 3.25rem);
    box-shadow: 0 28px 65px rgba(0,0,0,0.4), 0 0 50px rgba(212,168,67,0.04);
}
.application-form { display: flex; flex-direction: column; gap: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.8rem 0.95rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input[type="file"] { padding: 0.7rem; cursor: pointer; color: var(--text-muted); }
.form-group input[type="file"]::file-selector-button { background: var(--gold-gradient); border: none; color: #0d0d18; font-size: 0.72rem; font-weight: 700; padding: 0.4rem 0.8rem; border-radius: 5px; cursor: pointer; margin-right: 0.75rem; }
.form-checkbox label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.8rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.55; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold); margin-top: 2px; cursor: pointer; }
.required { color: var(--accent-rose); }
.btn-submit { align-self: flex-start; min-width: 175px; margin-top: 0.25rem; }

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info-section { background: var(--bg-dark); }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.contact-info-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.contact-info-item:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: 0 14px 36px rgba(0,0,0,0.35), var(--gold-glow); background: var(--bg-elevated); }
.contact-info-item:hover::before { transform: scaleX(1); }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 13px; background: rgba(212,168,67,0.08); border: 1px solid var(--border-gold); color: var(--gold); margin: 0 auto 1.125rem; transition: all 0.3s ease; }
.contact-info-item:hover .contact-icon { background: rgba(212,168,67,0.15); box-shadow: var(--gold-glow); }
.contact-info-item h3 { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.contact-info-item p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }
.contact-info-item a { color: var(--gold-light); }

/* ============================================
   MODALS
   ============================================ */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(13,13,24,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.modal.active { display: flex; animation: fadeInModal 0.3s ease; }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: clamp(1.5rem, 5vw, 2.75rem);
    max-width: 520px;
    width: 100%;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.35s var(--ease-out-quart);
    box-shadow: 0 28px 65px rgba(0,0,0,0.5), 0 0 44px rgba(212,168,67,0.06);
}
@keyframes modalSlideUp {
    from { transform: translateY(22px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.modal-content h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.modal-close {
    position: absolute;
    top: 1rem; right: 1.25rem;
    font-size: 1.35rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    font-family: sans-serif;
    line-height: 1;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { color: var(--gold-light); }
.success-message { text-align: center; padding: 1.5rem 0; }
.success-message h2 { color: var(--gold-light); margin-bottom: 0.75rem; }
.callback-form { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 1.75rem; right: 1.75rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #0d0d18;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-quart);
    box-shadow: 0 5px 18px rgba(212,168,67,0.4);
    -webkit-tap-highlight-color: transparent;
}
.scroll-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-to-top:hover { transform: translateY(-3px); box-shadow: 0 9px 26px rgba(212,168,67,0.55); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer { background: var(--bg-dark); border-top: 1px solid var(--border-gold); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.15rem; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; white-space: nowrap; }
.footer-copy { font-size: 0.77rem; color: var(--text-muted); text-align: center; margin: 0; flex: 1; }
.footer-socials { display: flex; gap: 0.375rem; }
.footer-social { width: 32px; height: 32px; border-radius: 7px; background: var(--bg-card); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s ease; }
.footer-social:hover { color: var(--gold-light); border-color: var(--border-gold); background: rgba(212,168,67,0.08); transform: translateY(-2px); }

/* ============================================
   INNER PAGES
   ============================================ */

.page-hero { padding: 6rem 0 4rem; background: var(--bg-dark); border-bottom: 1px solid var(--border-subtle); text-align: center; margin-top: var(--header-height); }
.page-content-section { background: var(--bg-deep); padding: 5rem 0; }
.single-post-wrapper, .single-model-wrapper { max-width: 760px; margin: 0 auto; padding: 4rem clamp(1rem, 4vw, 2rem); }
.post-header { margin-bottom: 2.5rem; border-bottom: 1px solid var(--border-subtle); padding-bottom: 2rem; }
.post-body p { color: var(--text-secondary); line-height: 1.85; }
.post-body h2, .post-body h3 { color: var(--text-primary); margin: 2rem 0 0.875rem; }
.archive-section { background: var(--bg-deep); padding: 5rem 0; margin-top: var(--header-height); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.review-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: clamp(1.25rem, 3vw, 2rem); transition: all 0.3s ease; }
.review-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.review-stars { color: var(--gold); font-size: 0.92rem; letter-spacing: 2px; margin-bottom: 0.875rem; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 600; color: var(--text-primary); font-size: 0.875rem; }

.contact-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-sidebar-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-sidebar-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(212,168,67,0.08); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-sidebar-text h4 { font-size: 0.92rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.contact-sidebar-text p, .contact-sidebar-text a { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE  —  COMPLETE
   ============================================ */

/* ── Large tablets ── */
@media (max-width: 1200px) {
    .features-grid         { grid-template-columns: repeat(2, 1fr); }
    .steps-grid            { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .steps-grid::before    { display: none; }
    .about-content-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-stats           { grid-template-columns: repeat(3, 1fr); }
    .archive-grid          { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablets ── */
@media (max-width: 900px) {
    .section { padding: 4.5rem 0; }
    .vacancies-grid    { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-grid        { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .suitable-list, .offer-list { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    .form-row   { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ── Phones ── */
@media (max-width: 640px) {
    :root { --header-height: 60px; }
    .section { padding: 3.5rem 0; }
    .section-subtitle { margin-bottom: 2.25rem; }

    .features-grid     { grid-template-columns: 1fr; gap: 1px; }
    .steps-grid        { grid-template-columns: 1fr; gap: 1.25rem; }
    .vacancies-grid    { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .posts-grid        { grid-template-columns: 1fr; }
    .archive-grid      { grid-template-columns: 1fr; }
    .about-stats       { grid-template-columns: 1fr; gap: 0.875rem; }

    /* Hero */
    .hero-content      { padding: 2rem 1rem 4rem; }
    .hero-cta          { flex-direction: column; gap: 0.75rem; }
    .hero-cta .btn     { width: 100%; justify-content: center; }
    .hero-stats        { flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
    .hero-stat         { flex: 1; min-width: 80px; }
    .hero-navigation   { bottom: 1.25rem; right: 0.875rem; }
    .hero-pagination   { bottom: 1.25rem; }
    .hero-dot          { width: 14px; }
    .hero-dot.active   { width: 24px; }

    /* Mini carousel */
    .mini-carousel { aspect-ratio: 4/3; }

    /* Form */
    .application-form-wrapper { padding: 1.5rem 1rem; border-radius: 14px; }
    .btn-submit { width: 100%; justify-content: center; }

    /* About */
    .about-content-wrapper { gap: 1.5rem; }

    /* Steps */
    .step-number { width: 62px; height: 62px; font-size: 1.3rem; }

    /* Footer */
    .footer-inner   { flex-direction: column; align-items: center; text-align: center; gap: 0.875rem; }
    .footer-copy    { order: 3; }

    /* Scroll to top */
    .scroll-to-top  { bottom: 1.25rem; right: 1.25rem; }
}

/* ── Small phones ── */
@media (max-width: 380px) {
    :root { --header-height: 56px; }
    .hero-title    { font-size: 2rem; }
    .section-title { font-size: 1.5rem; }
    .about-stat-value { font-size: 1.7rem; }
}

/* ── Print ── */
@media print {
    .site-header, .scroll-to-top, .hero-navigation,
    .hero-pagination, .mobile-nav-panel, .mobile-menu-toggle { display: none !important; }
    body { background: white; color: black; }
}