/* ──────────────────────────────────────────────
   NightLight International — Global Stylesheet
   ────────────────────────────────────────────── */

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

@media (hover: none) and (pointer: coarse) {
    a, button {
        -webkit-tap-highlight-color: transparent;
    }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    padding-left: 1.2em;
}

/* ── CSS Variables ─────────────────────────── */
:root {
    --primary: #0f3460;
    --primary-dark: #0a2540;
    --accent: #f9d56e;
    --accent-hover: #e8c44f;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #f5f7fa;
    --bg-white: #ffffff;
    --dark: #1a1a2e;
    --border: #e8ecf1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --container: 1200px;
    --header-height: 70px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Container ─────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 72px 24px;
}

/* ── Header ────────────────────────────────── */
header {
    background: var(--dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    height: var(--header-height);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent);
    transition: opacity var(--transition);
}

.logo a:hover {
    opacity: 0.85;
    color: var(--accent);
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav a {
    color: #a0a8b4;
    text-decoration: none;
    margin-left: 32px;
    transition: color var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.3px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

nav a:hover,
nav a.active {
    color: #fff;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* ── Breadcrumbs ───────────────────────────── */
.breadcrumbs {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 0.85rem;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumbs li + li::before {
    content: '/';
    margin-right: 6px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .current {
    color: var(--text);
    font-weight: 500;
}

/* ── Hero ──────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 40%, var(--primary) 100%);
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 213, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-sm {
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #a0b4c8;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 213, 110, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.88rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* ── Product Grid ──────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrap {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #f8f9fb;
    border-radius: var(--radius-sm);
    padding: 12px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.product-card h3 a:hover {
    color: var(--primary);
}

.product-category {
    display: inline-block;
    background: #e8f0fe;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card > p[itemprop="description"] {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.6;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
}

.price-per-piece {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.price-carton {
    color: var(--text-light);
    font-size: 0.88rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    font-size: 1.1rem;
}

/* ── Filter Bar ────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-light);
    background: var(--bg-white);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.3);
}

/* ── Features Section ──────────────────────── */
.features {
    background: var(--dark);
    padding: 80px 24px;
    color: #fff;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 50px;
    color: var(--accent);
    letter-spacing: -0.3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition), background var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 1.15rem;
}

.feature-card p {
    color: #94a3b8;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ── About Preview ─────────────────────────── */
.about-preview {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-preview p {
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ── About Page ────────────────────────────── */
.about-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--text);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── Stats Grid ────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
}

/* ── Values Grid ───────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Steps ─────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.3);
}

.step h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── SEO Text ──────────────────────────────── */
.seo-text {
    max-width: 900px;
    margin: 50px auto 0;
}

.seo-text h2 {
    text-align: left;
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--text);
}

.seo-text h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary);
}

.seo-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ── FAQ Section ───────────────────────────── */
.faq-section {
    max-width: 860px;
    margin: 50px auto 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 30px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 50px 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    line-height: 1.4;
    transition: background var(--transition);
}

.faq-question:hover {
    background: #f8f9fb;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Contacts Grid ─────────────────────────── */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-light);
}

.contact-card .no-select {
    color: var(--primary);
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
}

/* ── WhatsApp CTA ──────────────────────────── */
.whatsapp-cta {
    text-align: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    margin-bottom: 50px;
    color: #fff;
}

.whatsapp-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.whatsapp-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #128c7e;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #128c7e;
}

/* ── Map Section ───────────────────────────── */
.map-section {
    margin-bottom: 50px;
}

.map-section h2 {
    margin-bottom: 24px;
    font-size: 1.6rem;
    color: var(--text);
}

.map-section iframe {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 420px;
    border: 0;
}

/* ── Jobs / Vacancies ──────────────────────── */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}

.vacancy-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vacancy-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
}

.vacancy-header h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 12px;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    background: #e8f0fe;
    color: var(--primary);
}

.meta-badge.location-badge {
    background: #fff3e0;
    color: #e67e22;
}

.meta-badge.type-badge {
    background: #e8f5e9;
    color: #27ae60;
}

.meta-badge.salary-badge {
    background: #fce4ec;
    color: #c0392b;
}

.vacancy-body {
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vacancy-section h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.vacancy-section ul {
    list-style: none;
    padding: 0;
}

.vacancy-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

.vacancy-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.no-vacancies {
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    font-size: 1.1rem;
}

.apply-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: var(--radius-md);
    padding: 48px 36px;
    margin-bottom: 40px;
}

.apply-section h2 {
    color: var(--text);
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.apply-section p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.apply-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────── */
footer {
    background: var(--dark);
    color: #7a8599;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.footer-inner p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.footer-inner p:first-child {
    color: #a0a8b4;
    font-weight: 500;
}

/* ── Section Headings (global) ─────────────── */
.section h2,
.container > h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 40px;
    color: var(--text);
    letter-spacing: -0.3px;
}

/* ── Animations ────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.feature-card,
.stat-card,
.value-card,
.step,
.contact-card,
.vacancy-card {
    animation: fadeInUp 0.5s ease both;
}

.product-card:nth-child(2),
.feature-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3),
.feature-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4),
.feature-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }

/* ──────────────────────────────────────────────
   Mobile Menu Button (hamburger)
   ────────────────────────────────────────────── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Sticky Contact Bar ──────────────── */
.mobile-sticky-contact {
    display: none;
}

.contact-icon-small {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .mobile-sticky-contact {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        display: flex;
        background: var(--dark);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-sticky-contact a {
        flex: 1;
        text-align: center;
        padding: 16px 8px;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .mobile-sticky-contact a:first-child {
        background: var(--primary);
    }

    .mobile-sticky-contact a:last-child {
        background: #25d366;
    }

    body {
        padding-bottom: 56px;
    }
}

/* ── Mobile Overlay ─────────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.visible {
    display: block;
    opacity: 1;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .vacancy-body {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: auto;
    }

    /* ── Mobile header layout ─────────────── */
    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        position: relative;
        flex-direction: row;
        padding: 12px 0;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 24px 32px;
        gap: 0;
        transition: right var(--transition);
        z-index: 1050;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    nav.open {
        right: 0;
    }

    nav a {
        margin-left: 0;
        padding: 16px 12px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    nav a::after {
        bottom: 0;
        height: 3px;
    }

    /* ── Mobile hero ──────────────────────── */
    .hero {
        padding: 60px 0;
    }

    .hero-sm {
        padding: 45px 0;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .hero p {
        font-size: 1rem;
        padding: 0 12px;
    }

    /* ── Mobile grids ─────────────────────── */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    /* ── Mobile spacing ───────────────────── */
    .section {
        padding: 40px 16px;
    }

    .features {
        padding: 50px 16px;
    }

    footer {
        margin-top: 50px;
        padding: 30px 0;
    }

    /* ── Mobile cards ─────────────────────── */
    .product-card {
        padding: 20px;
    }

    .product-image-wrap {
        height: 180px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 24px 20px;
    }

    /* ── Mobile FAQ ───────────────────────── */
    .faq-question {
        padding: 18px 44px 18px 20px;
        font-size: 1rem;
        min-height: 48px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }

    /* ── Mobile vacancies ─────────────────── */
    .vacancy-header {
        padding: 20px;
    }

    .vacancy-body {
        padding: 20px;
    }

    .vacancy-header h3 {
        font-size: 1.2rem;
    }

    /* ── Mobile filters ───────────────────── */
    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin: 0 -16px 32px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── Mobile WhatsApp CTA ──────────────── */
    .whatsapp-cta {
        padding: 30px 20px;
    }

    .whatsapp-btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }

    /* ── Mobile map ───────────────────────── */
    .map-section iframe {
        height: 300px;
    }

    /* ── Mobile breadcrumbs ───────────────── */
    .breadcrumbs {
        font-size: 0.8rem;
        padding: 10px 0;
    }

    /* ── Mobile buttons ───────────────────── */
    .btn {
        padding: 14px 28px;
        min-height: 48px;
    }

    .btn-sm {
        padding: 12px 20px;
        min-height: 48px;
    }

    /* ── Mobile apply section ─────────────── */
    .apply-section {
        padding: 36px 20px;
    }

    .apply-contacts {
        flex-direction: column;
    }

    /* ── Touch-friendly links ─────────────── */
    a, button {
        min-height: 44px;
    }

    /* ── Prevent horizontal overflow ──────── */
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-sm {
        padding: 35px 0;
    }

    .section {
        padding: 32px 14px;
    }

    .features {
        padding: 40px 14px;
    }

    .container {
        padding: 0 14px;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .product-image-wrap {
        height: 160px;
    }

    .whatsapp-cta h3 {
        font-size: 1.2rem;
    }

    .apply-section h2 {
        font-size: 1.3rem;
    }

    .map-section iframe {
        height: 250px;
    }

    /* Make nav links extra touch-friendly on small screens */
    nav a {
        padding: 18px 12px;
        font-size: 1.15rem;
    }
}

/* ── Print Styles ──────────────────────────── */
@media print {
    header, footer, .filter-bar, .btn, .whatsapp-cta {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
