@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700;800;900&display=swap');

:root {
    /* --- Yorug' tema: oq fon + to'q sariq urg'u --- */
    --bg-page: #ffffff;
    --bg-soft: #f6f7f9;
    --bg-mute: #eef1f5;
    --bg-card: #ffffff;
    --bg-card-solid: #ffffff;
    --bg-card-hover: #fcfcfd;
    --bg-input: #f6f7f9;
    --bg-footer: #12161d;

    --border: #e4e7ec;
    --border-light: #d3d8e0;
    --border-accent: rgba(255, 90, 31, 0.4);
    --border-accent-strong: #ff5a1f;

    --accent: #ff5a1f;
    --accent-dim: #e04a12;
    --accent-soft: rgba(255, 90, 31, 0.09);
    --accent-glow: rgba(255, 90, 31, 0.22);
    --accent-on: #ffffff;

    /* Kartochka fonlari */
    --card-warm: #fffaf6;
    --card-warm-hover: #fff5ee;
    --card-warm-border: #f1e5db;

    --magenta: #e11d48;
    --magenta-dark: rgba(225, 29, 72, 0.08);
    --magenta-glow: rgba(225, 29, 72, 0.2);

    --emerald: #059669;
    --amber: #d97706;

    --text-strong: #10151c;
    --text-secondary: #4b5563;
    --text-muted: #77818f;
    --text-accent: #d94a12;

    /* Yumshoq soyalar (neon nur o'rniga) */
    --shadow-sm: 0 1px 2px rgba(16, 21, 28, 0.05);
    --shadow-md: 0 4px 14px rgba(16, 21, 28, 0.07);
    --shadow-lg: 0 12px 32px rgba(16, 21, 28, 0.10);
    --shadow-xl: 0 22px 48px rgba(16, 21, 28, 0.13);

    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-strong);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-strong);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-strong);
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.mono {
    font-family: var(--font-mono);
}

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Bo'lim tegi: yumshoq "pill" ko'rinish */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-accent);
    background: var(--accent-soft);
    border-radius: 999px;
    padding: 5px 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 780px;
    line-height: 1.6;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-cyan {
    background: var(--accent);
    color: var(--accent-on);
    box-shadow: var(--shadow-md);
}
.btn-cyan:hover {
    background: var(--accent-dim);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--bg-soft);
    color: var(--text-strong);
    border-color: var(--border);
    backdrop-filter: blur(10px);
}
.btn-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg-mute);
    transform: translateY(-2px);
}

.btn-red {
    background: linear-gradient(135deg, var(--magenta) 0%, #e11d48 100%);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}
.btn-red:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ==========================================================================
   1. NAVBAR / HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 74px;
}

/* Mobile Sub-Bar for Phone */
.mobile-concierge-bar {
    display: none;
    width: 100%;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 7px 0;
}

.mobile-concierge-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.06);
    border: 1px solid rgba(255, 90, 31, 0.22);
    transition: var(--transition);
}

.mobile-phone-link:hover {
    background: rgba(255, 90, 31, 0.15);
    box-shadow: var(--shadow-sm);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.brand-logo:hover .brand-logo-img {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.logo-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-strong);
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-top: 3px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 90, 31, 0.06);
    border: 1px solid rgba(255, 90, 31, 0.25);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--emerald);
    border-radius: 50%;
    box-shadow: none;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: inline-flex;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px;
}
.lang-btn {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    color: var(--text-muted);
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--accent);
    color: var(--accent-on);
}
.lang-btn:hover:not(.active) {
    color: var(--text-strong);
}

.concierge-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.concierge-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}
.concierge-number {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-strong);
    display: flex;
    align-items: center;
    gap: 5px;
}
.concierge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-strong);
    cursor: pointer;
    font-size: 1.5rem;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.4rem, 4.4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.text-gradient-cyan {
    background: linear-gradient(100deg, var(--accent) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.spec-box {
    display: flex;
    flex-direction: column;
}
.spec-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.spec-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
}
.spec-value.danger {
    color: var(--magenta);
}
.spec-detail {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Hero Right: Telemetry Car Card */
.telemetry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(14px);
}

.telemetry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
}
.telemetry-chassis {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}
.telemetry-live {
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.telemetry-coating-tag {
    background: var(--magenta);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
}

.telemetry-image-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}
.telemetry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.telemetry-overlay-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(16,21,28,0.45) 100%);
}

.telemetry-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 18px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}
.telemetry-stat-item {
    display: flex;
    flex-direction: column;
}
.tstat-lbl {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tstat-val {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 2px;
}
.tstat-val.pink {
    color: #f43f5e;
}

/* ==========================================================================
   3. SERVICES SECTION (SURFACE DEFENSE MATRIX)
   ========================================================================== */
.services-section {
    padding: 100px 0 80px;
    position: relative;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.07);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.card-icon.red {
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.35);
    color: var(--magenta);
}

.card-mod {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: var(--text-strong);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 24px;
}

.card-media {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    height: 140px;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-media-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
}
.card-tag-cyan {
    color: var(--accent);
}
.card-tag-sub {
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
}
.card-tag-red {
    color: var(--magenta);
}

/* ==========================================================================
   4. BEFORE & AFTER TRANSFORMATION GALLERY
   ========================================================================== */
.gallery-section {
    padding: 90px 0;
    position: relative;
    background: var(--bg-page);
}

.gallery-top-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.inspection-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}
.inspection-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Big Showcase Container */
.showcase-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    box-shadow: var(--shadow-xl);
    margin-bottom: 48px;
}

/* 50/50 Comparison Slider */
.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    user-select: none;
    background: var(--bg-mute);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-img-before {
    filter: none;
}

.slider-img-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--accent);
    box-shadow: 2px 0 10px rgba(16, 21, 28, 0.18);
    z-index: 2;
}
.slider-img-after-wrap .slider-img {
    width: 200%;
    max-width: none;
}

.slider-labels {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}
.slider-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}
.slider-badge-before {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}
.slider-badge-after {
    background: rgba(255, 90, 31, 0.95);
    color: var(--accent-on);
    box-shadow: var(--shadow-sm);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-mute);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-bottom-meta {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.target-car {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.target-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
}
.target-stats {
    display: flex;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}
.tstat-pair {
    display: flex;
    gap: 6px;
}
.tstat-pair span:first-child {
    color: var(--text-muted);
}
.tstat-pair span:last-child {
    color: var(--accent);
    font-weight: 700;
}

/* Showcase Details (Right Panel) */
.showcase-details {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
}

.protocol-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.lab-time {
    color: var(--accent);
}

.showcase-title {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.telemetry-bars-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    background: var(--bg-soft);
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.tbar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tbar-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}
.tbar-lbl {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tbar-val {
    font-weight: 700;
    color: var(--accent);
}
.tbar-track {
    width: 100%;
    height: 5px;
    background: var(--bg-soft);
    border-radius: 3px;
    overflow: hidden;
}
.tbar-fill {
    height: 100%;
    background: var(--accent);
    box-shadow: none;
}
.tbar-fill.pink {
    background: linear-gradient(90deg, var(--magenta) 0%, #f43f5e 100%);
    box-shadow: none;
}

.showcase-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.mini-spec-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.06em;
}

/* 3 Case Study Cards */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.case-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
}
.case-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--bg-soft);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 3px;
}

.case-body {
    padding: 22px;
}
.case-num {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.case-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.case-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 18px;
}
.case-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
}
.case-footer span:first-child {
    color: var(--accent);
}
.case-footer span:last-child {
    color: var(--text-muted);
    font-size: 0.68rem;
}

/* ==========================================================================
   5. VIRTUAL DETAILING CONFIGURATOR (CALCULATE YOUR PROTECTION)
   ========================================================================== */
.configurator-section {
    padding: 90px 0;
    position: relative;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.configurator-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    margin-top: 48px;
    align-items: start;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.step-title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: 0.08em;
}
.step-indicator {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.08em;
}

/* Vehicle Size Selector Tabs */
.size-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.size-tab-btn {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}
.size-tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.size-tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-on);
    box-shadow: var(--shadow-sm);
}

.step-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text-strong);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

/* Step 2: Protection Packages Checkboxes */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}
.package-item:hover {
    border-color: var(--border-light);
    background: var(--bg-soft);
}
.package-item.active {
    border-color: var(--border-accent);
    background: rgba(255, 90, 31, 0.05);
}

.pkg-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pkg-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-on);
    margin-top: 2px;
    transition: var(--transition);
    flex-shrink: 0;
}
.package-item.active .pkg-checkbox {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.pkg-checkbox svg {
    display: none;
    width: 12px;
    height: 12px;
}
.package-item.active .pkg-checkbox svg {
    display: block;
}

.pkg-info {
    display: flex;
    flex-direction: column;
}
.pkg-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
}
.pkg-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.pkg-price-col {
    text-align: right;
    flex-shrink: 0;
}
.pkg-price {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
}
.pkg-tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* Configurator Sticky Summary Card */
.summary-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 30px;
    position: sticky;
    top: 96px;
    box-shadow: var(--shadow-xl);
}

.summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.08em;
}
.cleanroom-tag {
    font-size: 0.62rem;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 3px;
}

.summary-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.summary-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.sspec-item {
    display: flex;
    flex-direction: column;
}
.sspec-lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.sspec-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
}
.sspec-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.turnaround-box {
    margin-bottom: 28px;
}
.turnaround-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    margin-bottom: 8px;
}
.turnaround-header span:first-child {
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.turnaround-header span:last-child {
    color: var(--text-strong);
    font-weight: 700;
}
.turnaround-bar {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-soft);
    overflow: hidden;
    margin-bottom: 8px;
}
.turnaround-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--magenta) 100%);
    box-shadow: var(--shadow-sm);
}
.turnaround-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.investment-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 22px;
}
.invest-lbl-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.invest-included {
    color: var(--accent);
}
.invest-amount-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.invest-total {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-strong);
    letter-spacing: -0.02em;
}
.invest-currency {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   6. FEATURE MATRIX (4 PILLARS)
   ========================================================================== */
.features-section {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.feature-box:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-icon.red {
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.35);
    color: var(--magenta);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.feature-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   7. CLIENT REVIEWS & INSPECTIONS
   ========================================================================== */
.reviews-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(255, 90, 31, 0.05);
    border: 1px solid var(--border-accent);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}
.stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.review-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-strong);
}
.author-car {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.06em;
}

/* ==========================================================================
   8. CONSULTATION BOOKING & STUDIO CLEANROOM
   ========================================================================== */
.contact-section {
    padding: 90px 0;
    position: relative;
}

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

.booking-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    user-select: none;
    margin-top: 6px;
}
.checkbox-label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

/* Right Studio Card */
.studio-box {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.studio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lab-open-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 6px;
}
.lab-open-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: none;
}

.studio-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sinfo-item {
    display: flex;
    gap: 14px;
}
.sinfo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.sinfo-text {
    display: flex;
    flex-direction: column;
}
.sinfo-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 2px;
}
.sinfo-sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.studio-map-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 230px;
}
.studio-map-card img,
.studio-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    filter: none;
}
.map-cleanroom-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: var(--shadow-md);
}

.transport-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.transport-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.3);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.transport-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.transport-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    position: relative;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 340px;
}
.footer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.cert-chip {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 90, 31, 0.05);
    border: 1px solid var(--border-accent);
    padding: 4px 10px;
    border-radius: 3px;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-hours-text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.footer-hours-text strong {
    color: var(--text-strong);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 18px;
}
.newsletter-input {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--text-strong);
    font-size: 0.82rem;
    outline: none;
    flex: 1;
}
.newsletter-input:focus {
    border-color: var(--accent);
}
.newsletter-btn {
    background: var(--accent);
    color: var(--accent-on);
    border: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-btn:hover {
    background: var(--accent-dim);
}

.social-icons-row {
    display: flex;
    gap: 12px;
}
.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}
.social-icon-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}
.footer-legal-links {
    display: flex;
    gap: 24px;
}
.footer-legal-links a:hover {
    color: var(--accent);
}

/* Toast / Alert Feedback */
.alert-box {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-top: 14px;
    display: none;
}
.alert-success {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid var(--emerald);
    color: var(--emerald);
}
.alert-error {
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid var(--magenta);
    color: var(--magenta);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-container {
        grid-template-columns: 1fr;
    }
    .configurator-grid {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sarlavha: tor ekranlarda menyu va telefon blokini qayta joylash */
@media (max-width: 900px) {
    .site-header .concierge-phone {
        display: none;
    }
    .mobile-concierge-bar {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .size-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   PRESTIGE TUNING — Andijon uchun qo'shimchalar
   ============================================================ */

/* Xizmat tanlash panelidagi "tanlangan xizmatlar" ro'yxati */
.selected-services-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    max-height: 190px;
    overflow-y: auto;
}
.selected-services-list li {
    position: relative;
    padding: 5px 0 5px 18px;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text-strong);
}
.selected-services-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: none;
}
.selected-services-list li.ssl-empty {
    padding-left: 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-style: italic;
}
.selected-services-list li.ssl-empty::before {
    display: none;
}

/* Xizmat kartochkasidagi teg ustuni (narx olib tashlangandan keyin) */
.pkg-price-col {
    display: flex;
    align-items: center;
}

/* Filial xarita havolalari */
.sinfo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}
.sinfo-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.sinfo-links a:hover {
    border-bottom-color: var(--accent);
}

/* Bo'limlar bo'yicha telefon raqamlari */
.sinfo-phones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 8px;
}
.sinfo-phones a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}
.sinfo-phones .ph-label {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.sinfo-phones .ph-num {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-strong);
    transition: color 0.2s ease;
}
.sinfo-phones a:hover .ph-num {
    color: var(--accent);
}

/* Xarita va ijtimoiy tarmoq kartochkalari endi havola */
a.studio-map-card,
a.transport-card {
    text-decoration: none;
    color: inherit;
}
a.transport-card:hover .transport-title {
    color: var(--accent);
}

/* Sarlavhadagi telefon havolasi */
a.concierge-phone {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    /* Sarlavhalar telefon ekraniga sig'sin */
    .hero-headline {
        font-size: clamp(1.75rem, 7.5vw, 2.6rem);
    }
    .section-title {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    }
    .container {
        padding: 0 18px;
    }
    /* Ikki ustunli bloklarni bitta ustunga */
    .form-grid-2,
    .step-inputs-row,
    .summary-specs-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    /* Yonma-yon turgan sarlavha + belgi bloklarini tik joylash */
    .gallery-top-bar,
    .reviews-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    /* Xizmat kartochkasidagi teg pastga tushsin */
    .package-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .studio-map-card {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .sinfo-phones {
        grid-template-columns: 1fr;
    }
    .size-tabs {
        grid-template-columns: 1fr;
    }
    .hero-headline {
        font-size: 1.7rem;
        line-height: 1.15;
    }
    .section-tag {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

/* ============================================================
   KARTOCHKA FONLARI
   Xizmat kartochkalari — har biri o'z yumshoq rangida.
   Boshqa kartochkalar — bitta iliq krem rang.
   ============================================================ */

/* --- Kontent kartochkalari: iliq krem --- */
.case-card,
.feature-box,
.review-card {
    background: var(--card-warm);
    border-color: var(--card-warm-border);
}
.case-card:hover,
.feature-box:hover,
.review-card:hover {
    background: var(--card-warm-hover);
}

/* --- Xizmat kartochkalari: 6 xil rang --- */
.service-card {
    background: var(--c-bg);
    border-color: var(--c-border);
}
.service-card:hover {
    background: var(--c-bg-hover);
    border-color: var(--c-accent);
}
.service-card .card-icon,
.service-card .card-icon.red {
    background: var(--c-icon-bg);
    border-color: var(--c-border);
    color: var(--c-accent);
}
.service-card .card-mod {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--c-border);
    color: var(--c-accent);
}
.service-card .card-tag-cyan {
    color: var(--c-accent);
}
.service-card .card-footer {
    border-top-color: var(--c-border);
}

/* 01 — shaftoli (avtotuning) */
.services-grid .service-card:nth-child(6n + 1) {
    --c-bg: #fff4ed;
    --c-bg-hover: #ffece1;
    --c-border: #ffdcc9;
    --c-icon-bg: #ffe4d3;
    --c-accent: #c2410c;
}
/* 02 — ko'k (shumka) */
.services-grid .service-card:nth-child(6n + 2) {
    --c-bg: #eef4ff;
    --c-bg-hover: #e3ecff;
    --c-border: #d4e2ff;
    --c-icon-bg: #dde9ff;
    --c-accent: #1d4ed8;
}
/* 03 — yashil (polirovka va keramika) */
.services-grid .service-card:nth-child(6n + 3) {
    --c-bg: #edf9f2;
    --c-bg-hover: #e0f4e9;
    --c-border: #cdebdb;
    --c-icon-bg: #d7f0e3;
    --c-accent: #047857;
}
/* 04 — siyohrang (ximchistka) */
.services-grid .service-card:nth-child(6n + 4) {
    --c-bg: #f5f1ff;
    --c-bg-hover: #ebe5ff;
    --c-border: #e0d7ff;
    --c-icon-bg: #e8e0ff;
    --c-accent: #6d28d9;
}
/* 05 — sariq (salon yoritgichlari) */
.services-grid .service-card:nth-child(6n + 5) {
    --c-bg: #fffaeb;
    --c-bg-hover: #fff4d8;
    --c-border: #fbeec3;
    --c-icon-bg: #fcf0cd;
    --c-accent: #b45309;
}
/* 06 — pushti (signalizatsiya va barlar) */
.services-grid .service-card:nth-child(6n + 6) {
    --c-bg: #fff1f4;
    --c-bg-hover: #ffe6eb;
    --c-border: #ffd7de;
    --c-icon-bg: #ffe0e6;
    --c-accent: #be123c;
}

/* "Nega biz?" ikonkalari — xizmat kartochkalari bilan bir xil rang oilasi */
.features-grid .feature-box:nth-child(1) .feature-icon,
.features-grid .feature-box:nth-child(1) .feature-icon.red {
    background: #ffe4d3;
    border-color: #ffdcc9;
    color: #c2410c;
}
.features-grid .feature-box:nth-child(2) .feature-icon,
.features-grid .feature-box:nth-child(2) .feature-icon.red {
    background: #dde9ff;
    border-color: #d4e2ff;
    color: #1d4ed8;
}
.features-grid .feature-box:nth-child(3) .feature-icon,
.features-grid .feature-box:nth-child(3) .feature-icon.red {
    background: #d7f0e3;
    border-color: #cdebdb;
    color: #047857;
}
.features-grid .feature-box:nth-child(4) .feature-icon,
.features-grid .feature-box:nth-child(4) .feature-icon.red {
    background: #e8e0ff;
    border-color: #e0d7ff;
    color: #6d28d9;
}

/* ============================================================
   IJTIMOIY TARMOQLAR BO'LIMI (eski galereya o'rnida)
   ============================================================ */
.social-feed-section {
    padding: 90px 0;
    background: var(--bg-page);
}

.social-feed-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}
.social-feed-head .section-desc {
    max-width: 640px;
    margin-bottom: 0;
}

.social-stats {
    display: flex;
    gap: 36px;
    flex-shrink: 0;
    padding-bottom: 4px;
}
.social-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}
.ss-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
}
.ss-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-warm-border);
    background: var(--card-warm);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.channel-card:hover {
    background: var(--card-warm-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.channel-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.channel-instagram .channel-icon { background: #ffe0e6; color: #be123c; border-color: #ffd7de; }
.channel-shop      .channel-icon { background: #ffe4d3; color: #c2410c; border-color: #ffdcc9; }
.channel-youtube   .channel-icon { background: #ffdcdc; color: #c81e1e; border-color: #ffcccc; }
.channel-telegram  .channel-icon { background: #dde9ff; color: #1d4ed8; border-color: #d4e2ff; }

.channel-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.channel-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-strong);
}
.channel-handle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
}
.channel-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.channel-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
}
.channel-card:hover .channel-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

.social-cta {
    display: inline-flex;
}

@media (max-width: 900px) {
    .social-feed-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .social-stats {
        gap: 28px;
    }
    .social-stat {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
    .social-feed-section {
        padding: 70px 0;
    }
}
