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

:root {
    --bg: #0d0d1a;
    --bg-secondary: #14142a;
    --bg-card: #1a1a35;
    --accent: #e3000f;
    --accent-hover: #c6000d;
    --accent-glow: rgba(227, 0, 15, 0.15);
    --text: #ffffff;
    --text-secondary: #8899bb;
    --text-muted: #556688;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --font: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --nav-h: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,13,26,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: var(--nav-h); transition: var(--transition); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.nav-logo img { width: 36px; height: 36px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-links a:hover { color: var(--text); background: var(--accent-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-h); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%); pointer-events: none; z-index: 2; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; animation: heroFadeIn 2.5s ease-out forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,26,0.93) 0%, rgba(13,13,26,0.6) 40%, rgba(13,13,26,0.8) 70%, rgba(13,13,26,0.95) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
@keyframes heroFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.hero-label { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 20px; padding: 6px 16px; border: 1px solid var(--accent); border-radius: 50px; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.25); color: var(--text); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(227, 0, 15, 0.25); }
.btn-outline { border: 1px solid var(--border-light); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 12px; opacity: 0.7; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.section-desc { color: var(--text-secondary); font-size: 1rem; max-width: 540px; margin: 12px auto 0; line-height: 1.7; }

.about { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(227, 0, 15, 0.08); }
.service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border-radius: var(--radius-sm); margin-bottom: 20px; color: var(--accent); }
.service-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.contact-info p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.contact-info strong { color: var(--text); }
.contact-form { display: grid; gap: 16px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }

.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(13,13,26,0.98); backdrop-filter: blur(16px); flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); display: none; }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .about-stats { grid-template-columns: 1fr; }
}

/* ─── Preloader ─── */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-gear { width: 72px; height: 72px; margin-bottom: 28px; color: var(--accent); animation: preloaderSpin 2s linear infinite; }
.preloader-gear svg { width: 100%; height: 100%; }
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
.preloader-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); position: relative; }
.preloader-name::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--accent);
    animation: preloaderLine 1.2s ease-out 0.4s forwards;
}
@keyframes preloaderLine { to { width: 100%; } }
.preloader-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 20px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0; animation: preloaderFade 0.6s ease-out 1s forwards; }
@keyframes preloaderFade { to { opacity: 1; } }
.preloader-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.preloader-particle {
    position: absolute; width: 2px; height: 2px; background: var(--accent); border-radius: 50%;
    opacity: 0; animation: particleDrift 2.5s ease-out infinite;
}
@keyframes particleDrift {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-80vh) translateX(40px); }
}

/* ─── Products Gallery ─── */
.products-page { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; min-height: 100vh; }
.products-page .page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.products-page .page-sub { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 40px; max-width: 560px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.product-card {
    border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 2px solid rgba(227, 0, 15, 0.15);
    background: var(--bg-secondary);
    transition: var(--transition); position: relative;
}
.product-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(227, 0, 15, 0.15);
}
.product-img {
    width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.1); }
.product-card .view-icon {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(227, 0, 15, 0.9); color: white;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.8);
    transition: var(--transition); pointer-events: none;
    font-size: 1rem; font-weight: 700;
}
.product-card:hover .view-icon { opacity: 1; transform: scale(1); }
.custom-card { background: var(--bg-card); border: 2px dashed var(--accent); border-radius: var(--radius); padding: 40px 28px; text-align: center; transition: var(--transition); grid-column: 1 / -1; }
.custom-card:hover { background: var(--accent-glow); border-color: var(--accent); }
.custom-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border-radius: 16px; margin: 0 auto 16px; color: var(--accent); }
.custom-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.custom-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; max-width: 480px; margin: 0 auto 20px; }

/* ─── Clients Page — Carousel ─── */
.clients-page { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; min-height: 100vh; display: flex; flex-direction: column; }
.clients-page .page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.clients-page .page-sub { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 40px; max-width: 560px; }

.client-carousel-wrapper {
    overflow-x: auto; padding: 16px 0 24px; margin-bottom: 24px;
    scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
    scroll-snap-type: x mandatory;
}
.client-carousel-wrapper::-webkit-scrollbar { height: 6px; }
.client-carousel-wrapper::-webkit-scrollbar-track { background: transparent; }
.client-carousel-wrapper::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.client-carousel {
    display: flex; gap: 24px; padding: 0 4px 16px; will-change: scroll-position;
}
.client-card {
    flex: 0 0 calc(50% - 12px); min-width: 320px; max-width: 480px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 24px; text-align: center; scroll-snap-align: start;
    transition: var(--transition);
}
.client-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(227,0,15,0.1); border-color: var(--accent); }

.client-logo-wrap {
    width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em;
    margin: 0 auto 16px; position: relative; flex-shrink: 0;
}
.client-logo-ring {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--accent); opacity: 0.3; animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.08); opacity: 0.6; }
}
.client-initials { position: relative; z-index: 1; }
.client-industry {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 8px; display: block;
}
.client-name {
    font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px;
}
.client-desc {
    font-size: 0.8rem; color: var(--text-secondary); line-height: 1.7;
}

.client-controls {
    display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 8px;
}
.client-arrow {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
    transition: var(--transition); background: var(--bg-card);
}
.client-arrow:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.client-dots { display: flex; gap: 8px; }
.client-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--border);
    border: none; cursor: pointer; transition: var(--transition); padding: 0;
}
.client-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

.client-stats-row {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 32px;
}
.client-stat-box {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px 14px; text-align: center;
}
.client-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--accent); display: block; }
.client-stat-label { font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px; }

@media (max-width: 768px) {
    .client-carousel-wrapper { padding: 12px 0 20px; }
    .client-card { flex: 0 0 85%; min-width: 280px; max-width: none; }
    .client-logo-wrap { width: 80px; height: 80px; font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .client-carousel { gap: 16px; }
    .client-card { flex: 0 0 95%; padding: 24px 16px; }
    .client-controls { gap: 12px; }
    .client-arrow { width: 40px; height: 40px; }
}

/* ─── Location Section ─── */
.location { background: var(--bg-secondary); }
.location .section-header { margin-bottom: 40px; }
.location .map-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); aspect-ratio: 16 / 6;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.location .map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }
.location .map-address {
    text-align: center; margin-top: 20px;
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}
.location .map-address strong { color: var(--text); display: block; margin-bottom: 2px; }

@media (max-width: 768px) {
    .location .map-wrap { aspect-ratio: 4 / 3; }
}

/* ─── Lightbox ─── */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 92vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-inner img {
    max-width: 92vw; max-height: 90vh; width: auto; height: auto;
    display: block; border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    opacity: 0; transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox.open .lightbox-inner img { opacity: 1; transform: scale(1); }
.lightbox-close {
    position: fixed; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(227, 0, 15, 0.9); color: white;
    border: none; font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10001;
}
.lightbox-close:hover { background: var(--accent); transform: scale(1.1); }
.lightbox-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(227, 0, 15, 0.85); color: white;
    border: none; font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10001;
}
.lightbox-nav:hover { background: var(--accent); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.6); padding: 6px 16px;
    border-radius: 50px; z-index: 10001;
}

@media (max-width: 768px) {
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* ─── Clients Page — 3D Hexagon Carousel ─── */
.clients-page {
    padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; min-height: 100vh;
    display: flex; flex-direction: column;
}
.clients-page .page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.clients-page .page-sub { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; max-width: 560px; }

.hex-section {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 10px 0 20px; position: relative;
}
.hex-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(227,0,15,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(37,99,235,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hex-wrapper {
    perspective: 1000px; height: 400px; display: flex; align-items: center; justify-content: center;
    position: relative; margin: 0 auto; width: 100%; max-width: 500px;
}
.hex-carousel {
    position: relative; width: 260px; height: 300px; transform-style: preserve-3d;
    transition: none; cursor: default;
}
.hex-face {
    position: absolute; width: 260px; height: 300px; border-radius: 20px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 28px 20px; text-align: center; backface-visibility: hidden;
    transition: box-shadow 0.4s;
}
.hex-face::before {
    content: ''; position: absolute; inset: -1px; border-radius: 21px;
    background: linear-gradient(135deg, var(--face-color) 0%, transparent 50%);
    opacity: 0.15; transition: opacity 0.4s; z-index: -1;
}
.hex-face:hover::before { opacity: 0.35; }

.hex-logo {
    width: 72px; height: 72px; border-radius: 50%; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(135deg, var(--face-color)18 0%, transparent 100%);
    position: relative; overflow: hidden;
}
.hex-logo::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid var(--face-color); opacity: 0.3;
    animation: hexPulse 3s ease-in-out infinite;
}
@keyframes hexPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0; }
}
.hex-initials { position: relative; z-index: 1; color: var(--face-color); }

.hex-stars { font-size: 1rem; letter-spacing: 4px; color: var(--face-color); margin-bottom: 10px; opacity: 0.8; }
.hex-name { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 8px; }
.hex-note { font-size: 0.7rem; color: var(--text-secondary); line-height: 1.5; max-width: 200px; font-style: italic; }

.hex-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; position: relative; z-index: 2; }
.hex-arrow {
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
    transition: var(--transition); background: var(--bg-card); cursor: pointer; flex-shrink: 0;
}
.hex-arrow:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); transform: scale(1.05); }
.hex-arrow:active { transform: scale(0.95); }
.hex-arrow:disabled { opacity: 0.25; cursor: default; transform: none; }

.hex-dots { display: flex; gap: 8px; }
.hex-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--border);
    border: none; cursor: pointer; transition: var(--transition); padding: 0;
}
.hex-dot.active { background: var(--accent); width: 26px; border-radius: 5px; }

.hex-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
    max-width: 600px; margin-left: auto; margin-right: auto; width: 100%;
}
.hex-stat {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px 12px; text-align: center;
}
.hex-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--accent); display: block; }
.hex-stat-label { font-size: 0.7rem; color: var(--text-secondary); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 768px) {
    .clients-page .page-sub { margin-bottom: 10px; }
    .hex-wrapper { height: 340px; perspective: 850px; }
    .hex-carousel { width: 240px; height: 280px; }
    .hex-face { width: 240px; height: 280px; padding: 24px 16px; border-radius: 18px; }
    .hex-face::before { border-radius: 19px; }
    .hex-logo { width: 64px; height: 64px; font-size: 1.6rem; }
    .hex-name { font-size: 0.95rem; }
    .hex-note { font-size: 0.65rem; }
    .hex-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
    .hex-wrapper { height: 300px; perspective: 900px; }
    .hex-carousel { width: 200px; height: 240px; }
    .hex-face { width: 200px; height: 240px; padding: 20px 14px; border-radius: 16px; }
    .hex-face::before { border-radius: 17px; }
    .hex-logo { width: 54px; height: 54px; font-size: 1.4rem; margin-bottom: 12px; }
    .hex-stars { font-size: 0.85rem; }
    .hex-name { font-size: 0.85rem; }
    .hex-note { font-size: 0.6rem; }
    .hex-arrow { width: 42px; height: 42px; }
    .hex-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 24px; }
    .hex-stat { padding: 14px 10px; }
    .hex-stat-num { font-size: 1.3rem; }
}
