/* ===== Blue Waters - Main Stylesheet ===== */

/* ===== Fonts ===== */
@font-face {
    font-family: 'TBC Contractica CAPS';
    src: url('../fonts/TBCContracticaCAPS-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TBC Contractica CAPS';
    src: url('../fonts/TBCContracticaCAPS-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGO';
    src: url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-georgian-500-normal.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGO';
    src: url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-georgian-700-normal.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGO';
    src: url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-georgian-900-normal.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/@fontsource/fira-go@5.2.7/files/fira-go-latin-900-normal.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BPG Mrgvlovani';
    src: url('../fonts/bpg_mrgvlovani_2010.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'bpg_mrgvlovani_2010';
    src: url('../fonts/bpg_mrgvlovani_2010.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BPG Mrgvlovani CAPS';
    src: url('../fonts/bpg_mrgvlovani_caps_2010.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #1F49E0;
    --color-primary-hover: #1a3fc4;
    --color-dark: #0B1B3B;
    --color-text: #1a1a1a;
    --color-white: #ffffff;
    --container-max: 1400px;
    --header-height: 80px;
    --topbar-height: 40px;
    --transition: 0.35s ease;
    --font: 'FiraGO', system-ui, -apple-system, sans-serif;
    --font-display: 'TBC Contractica CAPS', 'FiraGO', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img, svg {
    display: block;
    max-width: 100%;
}

/* ===== Header ===== */
/* ===== Top bar (in flow, scrolls away naturally) ===== */
.topbar {
    position: relative;
    z-index: 101;
    width: 100%;
    height: var(--topbar-height);
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
}

.topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.topbar__inner {
    width: 100%;
    height: 100%;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

.topbar__contact:hover {
    color: var(--color-white);
}

.topbar__contact-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(31, 73, 224, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background var(--transition);
}

.topbar__contact:hover .topbar__contact-icon {
    background: var(--color-primary);
}

.topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
}

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

.topbar__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.topbar__lang-opt {
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.topbar__lang-opt.is-active {
    color: var(--color-white);
    font-weight: 900;
}

.topbar__lang-sep {
    color: rgba(255, 255, 255, 0.35);
}

.topbar__lang:hover .topbar__lang-opt {
    color: var(--color-white);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.header__inner {
    width: 100%;
    height: var(--header-height);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background var(--transition);
}

.header__logo {
    display: block;
    position: relative;
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
    transition: opacity var(--transition), height var(--transition);
}

.header__logo-img--dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.header__nav {
    display: flex;
    justify-content: flex-start;
    margin-right: auto;
}

.header__menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.header__menu-link {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    transition: color var(--transition), opacity var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 10px 0;
    letter-spacing: 0.01em;
}

.header__menu-link:hover {
    opacity: 0.8;
}

.header__caret {
    font-size: 10px;
    line-height: 1;
    transition: transform var(--transition);
}

.header__menu-item--has-dropdown {
    position: relative;
}

.header__menu-item--has-dropdown:hover .header__caret {
    transform: rotate(180deg);
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.header__menu-item--has-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.header__dropdown-link:hover {
    background: #F3F6FB;
    color: var(--color-primary);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.header__cta--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white) !important;
}

.header__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
}

.header__cta--primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white) !important;
}

.header__cta--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

/* Scrolled / Solid state */
.header.is-scrolled,
.header--solid {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 6px 24px rgba(15, 23, 42, 0.06);
}

.header.is-scrolled .header__inner,
.header--solid .header__inner {
    height: 60px;
}

.header.is-scrolled .header__logo-img--light,
.header--solid .header__logo-img--light,
.header--light .header__logo-img--light {
    opacity: 0;
}

.header.is-scrolled .header__logo-img--dark,
.header--solid .header__logo-img--dark,
.header--light .header__logo-img--dark {
    opacity: 1;
}

.header.is-scrolled .header__menu-link,
.header--solid .header__menu-link,
.header--light .header__menu-link {
    color: var(--color-text);
}

.header.is-scrolled .header__cta--ghost,
.header--solid .header__cta--ghost,
.header--light .header__cta--ghost {
    border-color: rgba(11, 27, 59, 0.2);
    color: var(--color-text) !important;
}

.header.is-scrolled .header__cta--ghost:hover,
.header--solid .header__cta--ghost:hover,
.header--light .header__cta--ghost:hover {
    background: rgba(11, 27, 59, 0.05);
    border-color: var(--color-dark);
}

/* Light topbar variant (over light page bg) */
.topbar--light {
    color: rgba(11, 27, 59, 0.7);
}

.topbar--light::after {
    background: linear-gradient(90deg,
        rgba(11, 27, 59, 0) 0%,
        rgba(11, 27, 59, 0.12) 50%,
        rgba(11, 27, 59, 0) 100%);
}

.topbar--light .topbar__contact {
    color: rgba(11, 27, 59, 0.7);
}

.topbar--light .topbar__contact:hover {
    color: var(--color-text);
}

.topbar--light .topbar__contact-icon {
    background: rgba(31, 73, 224, 0.12);
    color: var(--color-primary);
}

.topbar--light .topbar__contact:hover .topbar__contact-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.topbar--light .topbar__divider {
    background: rgba(11, 27, 59, 0.15);
}

.topbar--light .topbar__lang {
    color: var(--color-text);
}

.topbar--light .topbar__lang-opt {
    color: rgba(11, 27, 59, 0.45);
}

.topbar--light .topbar__lang-opt.is-active {
    color: var(--color-text);
}

.topbar--light .topbar__lang-sep {
    color: rgba(11, 27, 59, 0.25);
}

.topbar--light .topbar__lang:hover .topbar__lang-opt {
    color: var(--color-text);
}

.header__menu-link.is-active {
    color: #1F59F9 !important;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: calc(-1 * (var(--header-height) + var(--topbar-height)));
    overflow: hidden;
    color: var(--color-white);
    transition: margin-top var(--transition);
}

.header.is-scrolled + .hero {
    margin-top: calc(-1 * (60px + var(--topbar-height)));
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 27, 59, 0.65) 0%, rgba(11, 27, 59, 0.35) 35%, rgba(11, 27, 59, 0.75) 100%),
        radial-gradient(ellipse at 25% 50%, rgba(11, 27, 59, 0.55) 0%, rgba(11, 27, 59, 0) 60%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    min-height: 100vh;
    padding: calc(var(--header-height) + var(--topbar-height) + 24px) 28px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero__top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero__text {
    flex: 1;
    max-width: 760px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--color-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease 0.15s forwards;
}

.hero__title-line {
    display: block;
    white-space: nowrap;
}

.hero__lead {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease 0.25s forwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease 0.35s forwards;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
    will-change: transform;
}

.hero__btn svg {
    transition: transform var(--transition);
}

.hero__btn:hover svg {
    transform: translateX(4px);
}

.hero__btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.hero__stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease 0.45s forwards;
}

.hero__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    position: relative;
}

.hero__stat + .hero__stat::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0) 100%);
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-white);
    display: inline-flex;
    align-items: flex-start;
    letter-spacing: -0.01em;
}

.hero__stat-num sup {
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 2px;
    margin-top: 4px;
}

.hero__stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(77, 227, 166, 0.25);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(77, 227, 166, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__eyebrow,
    .hero__title,
    .hero__lead,
    .hero__actions,
    .hero__stats,
    .hero__form,
    .hero__scroll {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .hero__eyebrow-dot {
        animation: none;
    }
}

/* Scroll cue */
.hero__scroll {
    display: none;
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.8s forwards;
    transition: color var(--transition);
}

.hero__scroll:hover {
    color: var(--color-white);
}

.hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-white);
    animation: heroScroll 1.8s ease-in-out infinite;
}

@keyframes heroScroll {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(64px); opacity: 0; }
}

/* Hero call-back form (glassmorphic) */
.hero__form {
    width: 380px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease 0.35s forwards;
}

.hero__form-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero__form-sub {
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.hero__form-trust {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

.hero__form-trust svg {
    color: rgba(255, 255, 255, 0.8);
}

.hero__form-input {
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-white);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.hero__form-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.hero__form-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.hero__form-submit {
    width: 100%;
    height: 46px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition);
    margin-top: 4px;
}

.hero__form-submit:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

/* Hero footer (socials + contacts) */
.hero__footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hero__socials {
    display: flex;
    gap: 14px;
}

.hero__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    backdrop-filter: blur(8px);
    transition: background var(--transition);
}

.hero__socials a:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero__contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    transition: opacity var(--transition);
}

.hero__contact:hover {
    opacity: 0.8;
}

/* ===== Categories Section ===== */
.categories {
    background: #ffffff;
    padding: 72px 0 48px;
}

.categories__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: stretch;
}

.categories__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 8px;
}

.categories__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.categories__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.categories__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.categories__title em {
    font-style: normal;
    color: var(--color-primary);
}

.categories__lead {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11, 27, 59, 0.65);
    margin-bottom: 28px;
}

.categories__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    align-self: flex-start;
    box-shadow: 0 12px 28px rgba(31, 73, 224, 0.28);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.categories__cta svg {
    transition: transform var(--transition);
}

.categories__cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(31, 73, 224, 0.35);
}

.categories__cta:hover svg {
    transform: translateX(4px);
}

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

.cat-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: #0B1B3B;
    isolation: isolate;
}

.cat-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.cat-card:hover .cat-card__img {
    transform: scale(1.06);
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(11, 27, 59, 0) 0%,
        rgba(11, 27, 59, 0) 35%,
        rgba(11, 27, 59, 0.55) 65%,
        rgba(31, 73, 224, 0.88) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 38%, #000 75%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 38%, #000 75%, #000 100%);
    pointer-events: none;
}

.cat-card__title {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 3;
    max-width: calc(100% - 92px);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cat-card__arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background var(--transition), color var(--transition);
}

.cat-card__arrow svg {
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.cat-card:hover .cat-card__arrow {
    background: var(--color-primary);
    color: var(--color-white);
}

.cat-card:hover .cat-card__arrow svg {
    transform: translate(3px, -3px);
}

/* ===== Products Section ===== */
.products {
    background: #F4F7FC;
    padding: 56px 0 72px;
}

.products__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

.products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.products__intro {
    max-width: 640px;
}

.products__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.products__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.products__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.products__title em {
    font-style: normal;
    color: var(--color-primary);
}

.products__desc {
    font-size: 15px;
    color: rgba(11, 27, 59, 0.65);
    line-height: 1.6;
    max-width: 540px;
}

.products__controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.products__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-bottom: 2px;
    border-bottom: 1.5px solid rgba(11, 27, 59, 0.18);
    transition: color var(--transition), border-color var(--transition);
}

.products__view-all svg {
    transition: transform var(--transition);
}

.products__view-all:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.products__view-all:hover svg {
    transform: translateX(4px);
}

.products__nav {
    display: flex;
    gap: 8px;
}

.products__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(11, 27, 59, 0.15);
    background: transparent;
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.products__nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.products__nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.products__nav-btn:disabled:hover {
    background: transparent;
    color: var(--color-dark);
    border-color: rgba(11, 27, 59, 0.15);
}

.products__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -28px;
    padding: 8px 28px 28px;
    cursor: grab;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.products__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.products__viewport::-webkit-scrollbar {
    display: none;
}

.products__track {
    display: flex;
    gap: 18px;
}

/* Product card */
.card {
    flex: 0 0 calc((100% - 54px) / 4);
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(15, 33, 75, 0.04);
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 33, 75, 0.10);
}

.card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
    overflow: hidden;
}

.card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(15, 33, 75, 0.08);
}

.card__tag--sewage {
    color: #1F49E0;
}

.card__tag--filtration {
    color: #0E8A6F;
}

.card__tag--industrial {
    color: #B5481B;
}

.card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card__img {
    transform: scale(1.06);
}

.card__body {
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__bullets {
    color: rgba(11, 27, 59, 0.55);
    font-size: 12px;
    line-height: 1.55;
    padding-left: 14px;
    list-style: disc;
    margin: 0;
}

.card__bullets li {
    list-style: disc;
}

.card__text {
    color: rgba(11, 27, 59, 0.55);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.card__footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(11, 27, 59, 0) 0%,
        rgba(11, 27, 59, 0.1) 50%,
        rgba(11, 27, 59, 0) 100%);
}

.card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.card__price-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(11, 27, 59, 0.4);
    line-height: 1;
}

.card__price-value {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.card__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(31, 73, 224, 0.1);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background var(--transition), color var(--transition);
}

.card__arrow svg {
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.card:hover .card__arrow {
    background: var(--color-primary);
    color: var(--color-white);
}

.card:hover .card__arrow svg {
    transform: translate(3px, -3px);
}

/* ===== Projects Section ===== */
.projects {
    background: #F0F5FC;
    padding: 80px 0 100px;
}

.projects__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.projects__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding: 8px 20px 24px;
    cursor: grab;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.projects__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.projects__viewport::-webkit-scrollbar {
    display: none;
}

.projects__track {
    display: flex;
    gap: 24px;
}

.project {
    flex: 0 0 calc((100% - 72px) / 4);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.project__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #DCE5F2 0%, #F4F7FC 60%, #fff 100%);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.project__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project:hover .project__img {
    transform: scale(1.06);
}

.project__body {
    padding: 0 4px;
}

.project__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 14px;
}

.project__bullets {
    list-style: disc;
    padding-left: 18px;
    color: #5A6478;
    font-size: 12px;
    line-height: 1.6;
}

.project__bullets li {
    list-style: disc;
    margin-bottom: 4px;
}

.projects__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.projects__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #fff;
    border: 1px solid #1F59F9;
    border-radius: 100px;
    color: #1F59F9;
    font-size: 13px;
    font-weight: 400;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.projects__cta:hover {
    background: #1F59F9;
    border-color: #1F59F9;
    color: #fff;
}

.projects__nav {
    display: flex;
    gap: 12px;
    margin-left: 8px;
}

.projects__nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #1F59F9;
    color: #1F59F9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.projects__nav-btn:hover {
    background: #1F59F9;
    border-color: #1F59F9;
    color: #fff;
}

.projects__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== Reviews Section ===== */
.reviews {
    background: #fff;
    padding: 80px 0 40px;
}

.reviews__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.reviews__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding: 8px 0 24px;
    cursor: grab;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.reviews__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.reviews__viewport::-webkit-scrollbar {
    display: none;
}

.reviews__track {
    display: flex;
    gap: 24px;
    padding: 8px 20px;
}

.review {
    position: relative;
    flex: 0 0 calc(50% - 36px);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #E5ECF5;
    border-radius: 18px;
    padding: 36px 36px 28px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 2px 6px rgba(20, 36, 59, 0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.review::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1F49E0 0%, #1F59F9 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(20, 36, 59, 0.10);
    border-color: #D4DEEE;
}

.review:hover::before {
    opacity: 1;
}

.review__quote {
    position: absolute;
    font-family: 'Georgia', serif;
    font-size: 88px;
    font-weight: 700;
    color: rgba(31, 89, 249, 0.10);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.review__quote--left {
    top: 14px;
    right: 28px;
    left: auto;
}

.review__quote--right {
    display: none;
}

.review__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.review__stars svg {
    width: 18px;
    height: 18px;
}

.review__text {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #3C4759;
    font-style: normal;
    max-width: none;
    margin-bottom: 28px;
    flex: 1;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #EEF2F8;
    align-self: stretch;
}

.review__avatar {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F4F7FC;
    overflow: hidden;
    flex-shrink: 0;
}

.review__avatar--google svg {
    width: 22px;
    height: 22px;
}

.review__avatar--facebook svg {
    width: 40px;
    height: 40px;
}

.review__author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.review__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.1px;
}

.review__source {
    font-size: 12px;
    color: #8893A5;
    text-decoration: none;
    transition: color var(--transition);
}

.review__source:hover {
    color: #1F59F9;
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.reviews__nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #1F59F9;
    color: #1F59F9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.reviews__nav-btn:hover {
    background: #1F59F9;
    border-color: #1F59F9;
    color: #fff;
}

.reviews__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== About Section ===== */
.about {
    background: #fff;
    padding: 100px 0;
}

.about__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about__p {
    font-size: 12px;
    color: #5A6478;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about__divider {
    height: 1px;
    background: #E2E7F0;
    margin: 32px 0 28px;
}

.about__stats {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 12px;
    overflow: hidden;
}

.about__stat {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #EEF1F6;
}

.about__stat:last-child {
    border-bottom: none;
}

.about__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F5FC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__stat-label {
    font-family: var(--font);
    font-size: 13px;
    color: #000;
    opacity: 0.7;
    line-height: 1.3;
}

.about__stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    text-align: right;
}

.about__stat-plus {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1;
    margin-left: 2px;
}

.about__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__img {
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
}

/* ===== CTA Banner ===== */
.cta {
    background: #fff;
    padding: 30px 0 60px;
}

.cta__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta__box {
    position: relative;
    background-color: #14243B;
    background-image:
        linear-gradient(135deg, rgba(20, 36, 59, 0.78) 0%, rgba(20, 36, 59, 0.72) 100%),
        url('../images/pexels-splash-of-rain-7321-1-min-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 60px 60px;
    overflow: hidden;
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.cta__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta__desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 720px;
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: #1F59F9;
    color: #fff !important;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 400;
    transition: background var(--transition);
}

.cta__btn:hover {
    background: #1648D8;
}

.cta__btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 14px;
    height: 14px;
}

.cta__btn-grid span {
    background: currentColor;
    border-radius: 1px;
}

/* ===== About Hero (new) ===== */
.about-hero {
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 89, 249, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(31, 89, 249, 0.05) 0%, transparent 45%),
        #fff;
    padding: 80px 0 80px;
    overflow: hidden;
}

.about-hero__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 56px;
}

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: #1F59F9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    background: rgba(31, 89, 249, 0.08);
    border-radius: 100px;
    margin-bottom: 22px;
}

.about-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1F59F9;
    box-shadow: 0 0 0 4px rgba(31, 89, 249, 0.15);
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero__title span {
    color: #1F59F9;
}

.about-hero__lead {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    max-width: 520px;
    margin-bottom: 26px;
}

.about-hero__actions {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
}

.about-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #1F59F9;
    color: #fff !important;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
}

.about-hero__btn:hover {
    background: #1648D8;
    transform: translateY(-1px);
}

.about-hero__btn--ghost {
    background: #fff;
    border: 1.5px solid #E2E7F0;
    color: #000 !important;
}

.about-hero__btn--ghost:hover {
    background: #F0F5FC;
    border-color: #1F59F9;
}

.about-hero__stats {
    display: flex;
    gap: 32px;
    padding-top: 26px;
    border-top: 1px solid #EEF1F6;
}

.about-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-hero__stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    display: inline-flex;
    align-items: flex-start;
}

.about-hero__stat-num sup {
    font-size: 16px;
    color: #1F59F9;
    margin-left: 2px;
}

.about-hero__stat-label {
    font-family: var(--font);
    font-size: 12px;
    color: #000;
    opacity: 0.6;
}

/* Hero media (slider + thumbs + badge) */
.about-hero__media {
    position: relative;
}

.about-hero__slider {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #14243B;
    box-shadow: 0 24px 64px rgba(20, 36, 59, 0.18);
}

.about-hero__fade {
    position: absolute;
    inset: 0;
}

.about-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.about-hero__slide.is-active {
    opacity: 1;
}

.about-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(20, 36, 59, 0.15);
}

.about-hero__badge > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-hero__badge span {
    font-family: var(--font);
    font-size: 10px;
    color: #000;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero__badge strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 900;
    color: #000;
}

.about-hero__thumbs { display: none; }

/* Keep old about-page styles for backwards compat (unused now) */
.about-page {
    background: #fff;
    padding: 90px 0 70px;
    overflow: hidden;
}

.about-page__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.about-page__text {
    max-width: 100%;
}

.about-page__eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: #1F59F9;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(31, 89, 249, 0.08);
    border-radius: 100px;
}

.about-page__title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.15;
}

/* About-page stats card */
.about-page__stats {
    display: flex;
    flex-direction: column;
    background: #F0F5FC;
    border: 1px solid #E2E7F0;
    border-radius: 12px;
    overflow: hidden;
    margin: 22px 0 26px;
}

.about-page__stat {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(226, 231, 240, 0.6);
}

.about-page__stat:last-child {
    border-bottom: none;
}

.about-page__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-page__stat-label {
    font-family: var(--font);
    font-size: 13px;
    color: #000;
    opacity: 0.7;
}

.about-page__stat-num {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    text-align: right;
}

.about-page__subtitle {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 24px 0 14px;
}

.about-page__p {
    font-size: 14px;
    line-height: 1.7;
    color: #5A6478;
    margin-bottom: 14px;
}

/* About slider */
.about-slider__thumbs {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.about-slider__thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: #F0F5FC;
    transition: border-color var(--transition);
}

.about-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.about-slider__thumb.is-active {
    border-color: #1F59F9;
}

.about-page__media {
    position: relative;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    background: #14243B;
}

.about-slider.is-dragging {
    cursor: grabbing;
}

.about-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-slider.is-dragging .about-slider__track {
    transition: none;
}

.about-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.about-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ===== Directions Section ===== */
.directions {
    background: #F0F5FC;
    padding: 70px 0 80px;
}

.directions__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.directions__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.directions__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
}

.directions__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
}

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

.direction {
    position: relative;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 16px;
    padding: 32px 26px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.direction:hover {
    border-color: #1F59F9;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(31, 89, 249, 0.08);
}

.direction__num {
    position: absolute;
    top: 16px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: rgba(31, 89, 249, 0.12);
    line-height: 1;
}

.direction__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F0F5FC;
    margin-bottom: 18px;
}

.direction__title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 1.35;
    margin-bottom: 12px;
}

.direction__text {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    opacity: 0.75;
    margin-bottom: 18px;
    flex: 1;
}

.direction__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #1F59F9;
    transition: gap var(--transition);
}

.direction__link:hover {
    gap: 10px;
}

/* ===== Values Section (new) ===== */
.values {
    background: #fff;
    padding: 70px 0 90px;
}

.values__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.values__subtitle {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    opacity: 0.65;
    margin-top: 8px;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.value-card {
    background: #F0F5FC;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.value-card:hover {
    background: #fff;
    border-color: #1F59F9;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(31, 89, 249, 0.08);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 18px;
}

.value-card:hover .value-card__icon {
    background: #F0F5FC;
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.value-card__text {
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.65;
    color: #000;
    opacity: 0.75;
}

/* Partner CTA at bottom */
.values__cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    background: linear-gradient(135deg, #14243B 0%, #17295A 100%);
    border-radius: 18px;
    padding: 32px 40px;
    color: #fff;
}

.values__cta-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.values__cta-desc {
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0;
}

.values__cta .values__partner {
    flex-shrink: 0;
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    max-width: 160px;
}

.values__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.values__media {
    position: relative;
    min-height: 460px;
}

.values__photo {
    width: 88%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.values__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values__icons-img {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 55%;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 12px 40px rgba(20, 36, 59, 0.25);
    background: #14243B;
}

.values__content {
    padding-left: 10px;
}

.values__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.values__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.values__list li {
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.6;
    color: #2a2a2a;
}

.values__list strong {
    font-weight: 700;
    color: #000;
}

.values__p {
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.7;
    color: #5A6478;
    margin-bottom: 24px;
}

.values__partner {
    max-width: 160px;
    height: auto;
    display: block;
}

/* ===== Projects Page (refreshed) ===== */
.projects-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 89, 249, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(31, 89, 249, 0.04) 0%, transparent 40%),
        #fff;
    padding: 90px 0 90px;
}

.projects-page__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-page__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.projects-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: #1F59F9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    background: rgba(31, 89, 249, 0.08);
    border-radius: 100px;
    margin-bottom: 18px;
}

.projects-page__eyebrow sup {
    font-size: 9px;
}

.projects-page__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1F59F9;
    box-shadow: 0 0 0 4px rgba(31, 89, 249, 0.15);
}

.projects-page__title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}

.projects-page__title span {
    color: #000;
    position: relative;
}

.projects-page__title span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #1F59F9;
    border-radius: 2px;
}

.projects-page__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    margin: 0 auto;
    max-width: 660px;
}

.projects-page__toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.projects-page__filters {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    background: #F0F5FC;
    border-radius: 100px;
}

.projects-page__filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: #000;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.projects-page__filter:hover {
    background: rgba(255, 255, 255, 0.6);
}

.projects-page__filter.is-active {
    background: #1F59F9;
    color: #fff;
    box-shadow: 0 6px 18px rgba(31, 89, 249, 0.25);
}

.projects-page__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 100px;
    background: rgba(31, 89, 249, 0.1);
    color: #1F59F9;
    font-size: 11px;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.projects-page__filter.is-active .projects-page__count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.projects-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}

.projects-page__grid .project {
    flex: none;
    scroll-snap-align: none;
    background: #fff;
    border: 1px solid #EEF1F6;
    border-radius: 18px;
    padding: 10px 10px 18px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    position: relative;
}

.projects-page__grid .project:hover {
    border-color: #D5DCEA;
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(20, 36, 59, 0.10);
}

.projects-page__grid .project__media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.projects-page__grid .project__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20, 36, 59, 0.35) 100%);
    pointer-events: none;
    transition: opacity var(--transition);
}

.projects-page__grid .project__img {
    transition: transform 0.6s ease;
}

.projects-page__grid .project:hover .project__img {
    transform: scale(1.08);
}

/* Category badge */
.projects-page__grid .project[data-category="individual"] .project__media::before,
.projects-page__grid .project[data-category="commercial"] .project__media::before {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(20, 36, 59, 0.08);
}

.projects-page__grid .project[data-category="individual"] .project__media::before {
    content: "ინდივიდუალური";
}

.projects-page__grid .project[data-category="commercial"] .project__media::before {
    content: "კომერციული";
}

.projects-page__grid .project__body {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.projects-page__grid .project__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0;
    min-height: 38px;
    transition: color var(--transition);
}

.projects-page__grid .project__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.projects-page__grid .project__bullets li {
    list-style: none;
    position: relative;
    padding-left: 16px;
    font-family: var(--font);
    font-size: 12px;
    color: #000;
    opacity: 0.7;
    line-height: 1.5;
}

.projects-page__grid .project__bullets li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    opacity: 0.4;
}

.projects-page__grid .project__view {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}

.projects-page__grid .project:hover .project__view {
    opacity: 1;
    transform: translateX(0);
}

.project.is-hidden {
    display: none;
}

/* ===== Contact Page ===== */
.contact {
    background: #F0F5FC;
    padding: 90px 0 70px;
}

.contact__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact__right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact__left {
    display: flex;
    flex-direction: column;
}

.contact__left .contact__map {
    flex: 1;
    min-height: 220px;
}

.contact__right .contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact__right .contact-card__form {
    flex: 1;
}

.contact__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
    list-style: none;
    padding: 0;
}

.contact-info__item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 12px;
    transition: border-color var(--transition);
}

.contact-info__item:hover {
    border-color: #1F59F9;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F0F5FC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-info__label {
    font-family: var(--font);
    font-size: 10px;
    color: #000;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info__value {
    font-family: var(--font);
    font-size: 12px;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.contact-info__value a {
    color: #000;
    transition: color var(--transition);
}

.contact-info__value a:hover {
    color: #1F59F9;
}

.contact-info__socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.contact-info__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E2E7F0;
    color: #1F59F9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-info__socials a:hover {
    background: #1F59F9;
    border-color: #1F59F9;
    color: #fff;
}

.contact__map {
    width: 100%;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E7F0;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== Contact Card (replaces booking widget) ===== */
.contact-card {
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 89, 249, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(31, 89, 249, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, #14243B 0%, #17295A 100%);
    border-radius: 16px;
    padding: 24px 22px 20px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(20, 36, 59, 0.18);
}

.contact-card__waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.contact-card__waves svg {
    width: 100%;
    height: 100%;
}

.contact-card__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-card__drop {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-card__drop svg {
    width: 22px;
    height: 28px;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.contact-card__subtitle {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-card__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-card__label {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-card__field input,
.contact-card__field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.contact-card__field input::placeholder,
.contact-card__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-card__field input:focus,
.contact-card__field textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.contact-card__field textarea {
    resize: vertical;
    min-height: 60px;
    font-family: var(--font);
}

.contact-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.contact-card__chip {
    cursor: pointer;
    position: relative;
}

.contact-card__chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-card__chip span {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 11px;
    color: #fff;
    transition: background var(--transition), border-color var(--transition);
}

.contact-card__chip:hover span {
    background: rgba(255, 255, 255, 0.1);
}

.contact-card__chip input:checked + span {
    background: #1F59F9;
    border-color: #1F59F9;
    color: #fff;
}

.contact-card__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    padding: 12px 24px;
    background: #1F59F9;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.contact-card__submit:hover {
    background: #1648D8;
    transform: translateY(-1px);
}

/* intl-tel-input integration inside dark contact card */
.contact-card .iti__tel-input,
.contact-card input.iti__tel-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.contact-card .iti__tel-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Booking widget */
.booking {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 24px rgba(20, 36, 59, 0.08);
    transition: grid-template-columns 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.booking__sidebar {
    background: #17295A;
    padding: 22px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.booking__main {
    background: #fff;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking__tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.booking__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: var(--font);
    font-size: 12px;
    line-height: 1.3;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.booking__tab-text {
    flex: 1;
    text-align: center;
    transition: opacity 0.2s ease, max-width 0.4s ease;
    max-width: 200px;
    white-space: normal;
    overflow: hidden;
}

.booking__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.booking__contact-text,
.booking__menu-text {
    transition: opacity 0.2s ease, max-width 0.4s ease;
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.booking__menu-arrow {
    transition: transform 0.45s ease;
}

.booking__tab:hover {
    background: rgba(255, 255, 255, 0.08);
}

.booking__tab-icon {
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
}

.booking__tab-circle {
    margin-left: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.booking__tab.is-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.booking__tab.is-active .booking__tab-circle {
    border-color: #fff;
    background: radial-gradient(circle, #fff 0%, #fff 35%, transparent 38%);
}

.booking__sidebar-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 24px;
}

/* Calendar (white panel) */
.cal__title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #EEF1F6;
}

.cal__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cal__selects {
    display: flex;
    gap: 10px;
}

.cal__select {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 8px;
    font-size: 13px;
    color: #000;
    cursor: pointer;
    min-width: 80px;
    justify-content: space-between;
}

.cal__select svg {
    color: #000;
    opacity: 0.55;
}

.cal__arrows {
    display: flex;
    gap: 6px;
}

.cal__arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E2E7F0;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.cal__arrow:hover {
    background: #F4F7FC;
}

.cal__tz {
    font-size: 12px;
    color: #1F59F9;
    text-align: center;
    margin-bottom: 12px;
}

.cal__week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.cal__week span {
    text-align: center;
    font-size: 11px;
    color: #000;
    opacity: 0.55;
    padding: 4px 0;
}

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

.cal__day {
    position: relative;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 12px;
    color: #000;
    background: transparent;
    border: none;
    cursor: default;
    padding: 0;
}

.cal__day.is-past {
    color: #000;
    background: #FBE7E0;
    opacity: 0.55;
}

.cal__day.is-available {
    background: rgba(31, 89, 249, 0.12);
    color: #1F59F9;
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.cal__day.is-available:hover {
    background: #1F59F9;
    color: #fff;
}

.cal__day.is-today {
    background: #1F59F9;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.cal__dot {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.booking__contacts-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.booking__contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.booking__contact-line:hover {
    color: #1F59F9;
}

.booking__sidebar-footer .booking__contact-line {
    justify-content: center;
}

.booking__menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    margin-top: 14px;
    padding: 14px 0 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    background: none;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font);
    transition: color var(--transition);
}

.booking__menu:hover {
    color: #fff;
}

.booking__menu svg {
    transition: transform var(--transition);
}

/* Collapsed state — sidebar becomes narrow strip with icons only */
.contact__right.is-collapsed .booking {
    grid-template-columns: 64px 1fr;
}

.contact__right.is-collapsed .booking__sidebar {
    padding: 22px 8px;
    align-items: center;
}

.contact__right.is-collapsed .booking__tab {
    padding: 10px;
    justify-content: center;
    gap: 0;
}

.contact__right.is-collapsed .booking__tab-text,
.contact__right.is-collapsed .booking__contact-text,
.contact__right.is-collapsed .booking__menu-text,
.contact__right.is-collapsed .booking__contacts-title {
    opacity: 0;
    max-width: 0;
    margin: 0;
    flex: 0 0 0;
}

.contact__right.is-collapsed .booking__tab-circle {
    display: none;
}

.contact__right.is-collapsed .booking__menu {
    justify-content: center;
}

.contact__right.is-collapsed .booking__menu-arrow {
    transform: rotate(180deg);
}

.contact__right.is-collapsed .booking__sidebar-footer .booking__contact-line {
    gap: 0;
}

.booking__submit {
    align-self: flex-end;
    margin-top: 16px;
    padding: 12px 36px;
    background: #1F59F9;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.booking__submit:hover {
    background: #1648D8;
}

/* ===== FAQ ===== */
.faq {
    background: #F0F5FC;
    padding: 90px 0 80px;
}

.faq__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq__item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: background var(--transition);
}

.faq__head {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #000;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    transition: color var(--transition);
}

.faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #1F59F9;
    transition: background var(--transition), transform var(--transition);
}

.faq__icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq__q {
    flex: 1;
}

.faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__body p {
    padding: 0 28px 22px 68px;
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

.faq__item.is-open {
    background: #1F59F9;
}

.faq__item.is-open .faq__head {
    color: #fff;
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
    background: #fff;
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq__item.is-open .faq__body {
    max-height: 600px;
}

/* ===== Blog Single ===== */
.blog-single__hero {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 28px;
    background: #14243B;
}

.blog-single__content {
    color: #000;
}

.blog-single__content p {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 18px;
}

.blog-single__h2 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 32px 0 14px;
}

.blog-single__list {
    margin: 0 0 24px 0;
    padding-left: 22px;
    counter-reset: blog-counter;
    list-style: decimal;
}

.blog-single__list li {
    list-style: decimal;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 14px;
}

.blog-single__list strong {
    font-weight: 700;
}

.blog-single__bullets {
    margin: 0 0 24px 0;
    padding-left: 22px;
    list-style: disc;
}

.blog-single__bullets li {
    list-style: disc;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 10px;
}

.blog-single__bullets strong {
    font-weight: 700;
}

/* ===== Product Single Page ===== */
.product-page {
    background: #F0F5FC;
    padding: 90px 0 70px;
}

.product-page__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 72% 28%;
    gap: 0;
    align-items: start;
}

.product-page__main {
    padding-right: 32px;
    min-width: 0;
}

.product-page__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(20, 36, 59, 0.06);
}

.product-page__price-block {
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEF1F6;
}

.product-page__price-label {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    color: #000;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.product-page__price-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.product-page__price-currency {
    font-size: 22px;
    color: #1F59F9;
    font-weight: 900;
}

.product-page__price-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--font);
    font-size: 12px;
    color: #1F59F9;
}

.product-page__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-page__order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #1F59F9;
    color: #fff !important;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition);
}

.product-page__order:hover {
    background: #1648D8;
    transform: translateY(-1px);
}

.product-page__consult {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #fff;
    border: 1.5px solid #1F59F9;
    border-radius: 100px;
    color: #1F59F9;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background var(--transition), color var(--transition);
}

.product-page__consult:hover {
    background: #1F59F9;
    color: #fff;
}

.product-page__benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid #EEF1F6;
    border-bottom: 1px solid #EEF1F6;
}

.product-page__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 12px;
    color: #000;
}

.product-page__benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F0F5FC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-page__payment-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-page__payment-label {
    font-family: var(--font);
    font-size: 11px;
    color: #000;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-page__payment-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-page__installment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #FFF7F0;
    border: 1px solid #FFE0CC;
    border-radius: 12px;
    padding: 10px 14px;
}

.product-page__installment-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-page__installment-title {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.product-page__installment-sub {
    font-family: var(--font);
    font-size: 10px;
    color: #000;
    opacity: 0.55;
}

.product-page__installment-logo {
    display: inline-block;
    width: 90px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

/* Product detail header (title + category) */
.product-detail__header {
    margin-bottom: 24px;
}

.product-detail__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-detail__category {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #1F59F9;
    transition: opacity var(--transition);
}

.product-detail__category:hover {
    opacity: 0.8;
}

/* Product detail (gallery + info) */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}

.product-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail__main-img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 1px 1px, rgba(31, 73, 224, 0.08) 1px, transparent 0) 0 0 / 18px 18px,
        linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
}

.product-detail__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail__thumbs {
    display: flex;
    gap: 10px;
}

.product-detail__thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
    border: 1.5px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
}

.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail__thumb.is-active {
    border-color: #1F59F9;
}

.product-detail__info {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.product-detail__about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.product-detail__about-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 12px;
}

.product-detail__about-icon::before,
.product-detail__about-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #1F59F9;
    border-radius: 2px;
}

.product-detail__about-icon::before {
    top: 2px;
}

.product-detail__about-icon::after {
    bottom: 2px;
}

.product-detail__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.55;
    color: #000;
    margin-bottom: 16px;
    font-weight: 500;
}

.product-detail__bullets {
    list-style: disc;
    padding-left: 18px;
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}

.product-detail__bullets li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Product sections (description, FAQ, etc.) */
.product-section {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.product-section__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-section p {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 14px;
}

.product-section p:last-child {
    margin-bottom: 0;
}

.product-section--faq {
    background: transparent;
    padding: 0;
}

.product-section--faq .product-section__title {
    padding: 0 4px;
}

.product-section--faq .faq__list {
    gap: 10px;
}

.product-section--faq .faq__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(20, 36, 59, 0.05);
}

.product-section--faq .faq__head {
    padding: 18px 22px;
    flex-direction: row-reverse;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.product-section--faq .faq__q {
    text-align: left;
}

.product-section--faq .faq__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: auto;
}

.product-section--faq .faq__icon::before,
.product-section--faq .faq__icon::after {
    width: 9px;
    height: 1.5px;
    background: #000;
    transition: transform 0.3s ease, background 0.3s ease;
}

.product-section--faq .faq__icon::before {
    transform: translate(-80%, -50%) rotate(45deg);
}

.product-section--faq .faq__icon::after {
    transform: translate(-20%, -50%) rotate(-45deg);
}

.product-section--faq .faq__item.is-open {
    background: #fff;
}

.product-section--faq .faq__item.is-open .faq__head {
    color: #1F59F9;
}

.product-section--faq .faq__item.is-open .faq__icon::before {
    background: #1F59F9;
    transform: translate(-80%, -50%) rotate(-45deg);
}

.product-section--faq .faq__item.is-open .faq__icon::after {
    background: #1F59F9;
    transform: translate(-20%, -50%) rotate(45deg);
}

.product-section--faq .faq__body p {
    color: #000;
    padding: 0 22px 18px 22px;
}

/* Similar products */
.similar-products {
    background: #F0F5FC;
    padding: 30px 0 80px;
}

.similar-products__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.similar-products__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.similar-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.similar-products__grid .card {
    flex: none;
    scroll-snap-align: none;
    background: #fff;
}

/* ===== Products Archive ===== */
.products-archive {
    background: #F4F7FC;
    padding: 80px 0 80px;
}

.products-archive__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

.products-archive__header {
    max-width: 720px;
    margin-bottom: 36px;
}

.products-archive__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.products-archive__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.products-archive__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.products-archive__title em {
    font-style: normal;
    color: var(--color-primary);
}

.products-archive__desc {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11, 27, 59, 0.65);
}

.products-archive__filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    background: var(--color-white);
    border-radius: 999px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(15, 33, 75, 0.04);
}

.products-archive__filter {
    padding: 10px 22px;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: rgba(11, 27, 59, 0.7);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.products-archive__filter:hover {
    color: var(--color-primary);
}

.products-archive__filter.is-active {
    background: var(--color-primary);
    color: var(--color-white);
}

.products-archive__filter.is-active:hover {
    color: var(--color-white);
}

.products-archive__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.products-archive__grid .card {
    flex: none;
    scroll-snap-align: none;
    background: var(--color-white);
}

.card__brand {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 120px;
    height: auto;
    display: block;
}

.card.is-hidden {
    display: none;
}

/* ===== Blog Archive ===== */
.blog-archive {
    background: #F0F5FC;
    padding: 90px 0 80px;
}

.blog-archive__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #14243B;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card__media:hover img {
    transform: scale(1.04);
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-card__title a {
    color: inherit;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: #1F59F9;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.blog-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #1F59F9;
    color: #fff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 400;
    transition: background var(--transition);
}

.blog-card__tag:hover {
    background: #1648D8;
}

.blog-card__date {
    font-family: var(--font);
    font-size: 12px;
    color: #000;
    opacity: 0.7;
}

/* ===== Project Single Page (new style) ===== */
.project-body {
    background: #F0F5FC;
    padding: 90px 0 80px;
}

/* Project header */
.project-detail__header {
    margin-bottom: 24px;
}

.project-detail__title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.project-detail__category {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #1F59F9;
    transition: opacity var(--transition);
}

.project-detail__category:hover {
    opacity: 0.8;
}

/* Project detail (gallery + info) — no white card wrapper */
.project-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

/* Gallery */
.project-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-detail__main-img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
}

.project-detail__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-detail__thumbs {
    display: flex;
    gap: 10px;
}

.project-detail__thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
    border: 1.5px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
}

.project-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-detail__thumb.is-active {
    border-color: #1F59F9;
}

/* Project info */
.project-detail__info {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.project-detail__about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
}

.project-detail__about-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 12px;
}

.project-detail__about-icon::before,
.project-detail__about-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #1F59F9;
    border-radius: 2px;
}

.project-detail__about-icon::before {
    top: 2px;
}

.project-detail__about-icon::after {
    bottom: 2px;
}

.project-detail__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.55;
    color: #000;
    margin-bottom: 18px;
}

.project-detail__bullets {
    list-style: disc;
    padding-left: 18px;
    color: #000;
    font-size: 13px;
    line-height: 1.7;
}

.project-detail__bullets li {
    list-style: disc;
    margin-bottom: 6px;
}

/* Stats — single card with rows */
.project-stats {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.project-stat {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #EEF1F6;
}

.project-stat:last-child {
    border-bottom: none;
}

.project-stat__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F5FC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-stat__body {
    display: flex;
    align-items: center;
    min-width: 0;
}

.project-stat__label {
    font-family: var(--font);
    font-size: 13px;
    color: #000;
    opacity: 0.65;
    line-height: 1.2;
}

.project-stat__num {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    text-align: right;
}

/* Project gallery grid (additional photos below) */
.project-gallery--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Sidebar contact card */
.project-side-card {
    background: linear-gradient(135deg, #14243B 0%, #17295A 100%);
    border-radius: 16px;
    padding: 22px 20px;
    color: #fff;
    margin-bottom: 20px;
}

.project-side-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.project-side-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-side-card__icon svg {
    stroke: #fff;
}

.project-side-card__label {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.project-side-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.project-side-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: #1F59F9;
    color: #fff !important;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--transition);
    cursor: pointer;
    border: none;
}

.project-side-card__btn:hover {
    background: #1648D8;
}



.project-hero {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
}

.project-body__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 72% 28%;
    gap: 0;
    align-items: start;
}

.project-body__main {
    padding-right: 40px;
    min-width: 0;
}

.project-body__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 14px;
}

.project-body__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 36px;
}

.project-body__heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 32px 0 18px;
}

/* Used products grid (2 per row) */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.prod-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
    gap: 16px;
    background: #fff;
    border: 1px solid #E2E7F0;
    border-radius: 14px;
    padding: 14px;
}

.prod-row__media {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
}

.prod-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prod-row__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.prod-row__title {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: #000;
    line-height: 1.35;
    margin-bottom: 8px;
}

.prod-row__bullets {
    list-style: disc;
    padding-left: 16px;
    color: #000;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 12px;
}

.prod-row__bullets li {
    list-style: disc;
}

.prod-row__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.prod-row__price {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.prod-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    background: #4973FF;
    color: #fff !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    transition: background var(--transition);
}

.prod-row__btn:hover {
    background: #3A5FE8;
}

/* Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.project-gallery__item {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
}

.project-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform var(--transition);
}

.project-gallery__item:hover img {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.lightbox-open {
    overflow: hidden;
}

/* ===== Mobile menu (hamburger) ===== */
.header__burger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 102;
}

.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.header.is-scrolled .header__burger span,
.header--solid .header__burger span {
    background: #000;
}

.header__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 36, 59, 0.5);
    cursor: pointer;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(20, 36, 59, 0.15);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #EEF1F6;
}

.mobile-menu__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.mobile-menu__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F5FC;
    border: none;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.mobile-menu__close:hover {
    background: #E2E7F0;
}

.mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 0;
}

.mobile-menu__body .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.mobile-menu__body .header__menu-item {
    border-bottom: 1px solid #F4F7FC;
}

.mobile-menu__body .header__menu-link {
    display: block;
    padding: 16px 22px;
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
    white-space: normal;
}

.mobile-menu__body .header__menu-link:hover,
.mobile-menu__body .header__menu-link.is-active {
    color: #1F59F9 !important;
    background: #F0F5FC;
}

.mobile-menu__body .header__caret {
    display: none;
}

.mobile-menu__body .header__dropdown {
    position: static;
    box-shadow: none;
    background: #F8FAFD;
    border-radius: 0;
    min-width: 0;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.mobile-menu__body .header__dropdown-link {
    padding: 12px 22px 12px 38px;
    font-size: 13px;
}

.mobile-menu__foot {
    padding: 16px 22px 22px;
    border-top: 1px solid #EEF1F6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    background: #1F59F9;
    color: #fff !important;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--transition);
}

.mobile-menu__cta:hover {
    background: #1648D8;
}

.mobile-menu__lang {
    padding: 11px 22px;
    background: transparent;
    border: 1.5px solid #E2E7F0;
    border-radius: 100px;
    color: #000;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition);
}

.mobile-menu__lang:hover {
    border-color: #1F59F9;
}

/* ===== Phone Input (intl-tel-input) Overrides ===== */
.iti {
    width: 100%;
    display: block;
}

.iti__tel-input,
.iti input.iti__tel-input {
    width: 100% !important;
    box-sizing: border-box;
}

/* Circular flags (the JS sets background-image with !important) */
.iti__flag {
    border-radius: 50% !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    box-shadow: none !important;
}

.iti__flag::before,
.iti__flag::after {
    display: none !important;
}

/* Error state */
input[type="tel"].iti-error,
input[type="tel"].has-error {
    border-color: #E74C3C !important;
}

/* Hero form integration */
.hero__form .iti {
    --iti-input-padding-left: 100px;
}
.hero__form .iti--separate-dial-code .iti__tel-input,
.hero__form input[type="tel"].iti__tel-input {
    padding-left: 100px !important;
}

.hero__form .iti {
    width: 100%;
}

.hero__form .iti__selected-country,
.hero__form .iti__selected-country-primary,
.hero__form .iti__selected-dial-code {
    background: transparent !important;
    color: var(--color-white) !important;
}

.hero__form .iti__selected-country:hover,
.hero__form .iti__selected-country:focus {
    background: rgba(255, 255, 255, 0.08) !important;
}

.hero__form .iti__selected-dial-code {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
}

.hero__form .iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.7) !important;
}

.hero__form .iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, 0.7) !important;
}

.hero__form .iti__country-container {
    height: 46px;
}

/* Callback modal integration */
.callback-modal .iti {
    --iti-input-padding-left: 100px;
}
.callback-modal .iti--separate-dial-code .iti__tel-input,
.callback-modal input[type="tel"].iti__tel-input {
    padding-left: 100px !important;
}

/* Dropdown — clean polish */
.iti__country-list {
    max-height: 280px;
    background: #fff !important;
    border: 1px solid #E2E7F0 !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 36px rgba(20, 36, 59, 0.12) !important;
    padding: 6px 0 !important;
    scrollbar-width: thin;
    scrollbar-color: #C5CCD9 transparent;
}

.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: transparent;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #C5CCD9;
    border-radius: 6px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #1F59F9;
}

/* Country items */
.iti__country {
    padding: 9px 16px !important;
    color: #000 !important;
    font-family: var(--font) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: #F0F5FC !important;
    color: #1F59F9 !important;
}

.iti__country-name {
    color: inherit !important;
    margin-left: 0 !important;
}

.iti__dial-code {
    color: #8A93A6 !important;
    font-size: 12px !important;
    margin-left: auto !important;
}

.iti__divider {
    border-top: 1px solid #EEF1F6 !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin: 4px 0 !important;
}

/* Search input */
.iti__search-input {
    position: sticky !important;
    top: 0 !important;
    z-index: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    border: none !important;
    border-bottom: 1px solid #EEF1F6 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #000 !important;
    font-family: var(--font) !important;
    font-size: 13px !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.iti__search-input::placeholder {
    color: #8A93A6 !important;
    opacity: 1;
}

.iti__search-input:focus {
    background: #F8FAFD !important;
}

/* ===== Callback Modal ===== */
.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.callback-modal.is-open {
    display: flex;
}

.callback-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 36, 59, 0.65);
    backdrop-filter: blur(4px);
    cursor: pointer;
    animation: fadeIn 0.25s ease;
}

.callback-modal__content {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 80px rgba(20, 36, 59, 0.25);
    animation: slideUp 0.3s ease;
}

.callback-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F5FC;
    border: none;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.callback-modal__close:hover {
    background: #E2E7F0;
}

.callback-modal__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.callback-modal__desc {
    font-family: var(--font);
    font-size: 13px;
    color: #000;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 24px;
}

.callback-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.callback-modal__input {
    width: 100%;
    height: 46px;
    padding: 0 20px;
    border: 1px solid #E2E7F0;
    border-radius: 26px;
    font-family: var(--font);
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color var(--transition);
}

.callback-modal__input:focus {
    border-color: #1F59F9;
}

.callback-modal__input::placeholder {
    color: #8A93A6;
}

.callback-modal__submit {
    width: 100%;
    height: 48px;
    background: #1F59F9;
    color: #fff;
    border: none;
    border-radius: 26px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 4px;
}

.callback-modal__submit:hover {
    background: #1648D8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Thank You Page ===== */
.thanks {
    background: #F0F5FC;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 80px;
}

.thanks__container {
    max-width: 560px;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 56px 40px;
    box-shadow: 0 10px 40px rgba(20, 36, 59, 0.08);
}

.thanks__icon {
    display: inline-flex;
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
    background: rgba(31, 89, 249, 0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.thanks__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.thanks__desc {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    margin-bottom: 28px;
}

.thanks__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #1F59F9;
    color: #fff !important;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition);
}

.thanks__btn:hover {
    background: #1648D8;
}

.project-gallery__badge {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #1F59F9;
    border-radius: 100px;
    color: #1F59F9;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Sidebar */
.project-body__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
    background: #F0F5FC;
    border-radius: 16px;
    padding: 28px 22px;
}

.project-body__sidebar-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.3;
}

.mini-projects {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.mini-project {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.mini-project:hover {
    border-color: #1F59F9;
    transform: translateY(-1px);
}

.mini-project__media {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #F4F7FC 0%, #E8EEF8 100%);
}

.mini-project__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-project__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mini-project__name {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: #000;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-project__meta {
    font-family: var(--font);
    font-size: 11px;
    color: #000;
    opacity: 0.6;
}

.project-body__sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: #fff;
    border: 1.5px solid #1F59F9;
    border-radius: 100px;
    color: #1F59F9;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.project-body__sidebar-btn:hover {
    background: #1F59F9;
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: #14243B;
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.5fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.footer__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer__socials a:hover {
    background: #1F59F9;
}

.footer__tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 260px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__list a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    transition: color var(--transition);
}

.footer__list a:hover {
    color: #1F59F9;
}

.footer__list--blog a {
    font-size: 12px;
    line-height: 1.55;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer__contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__contact-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.footer__contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer__contact-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    transition: color var(--transition);
}

a.footer__contact-value:hover {
    color: #1F59F9;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__copy,
.footer__credits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer__credits a {
    color: #1F59F9;
    transition: opacity var(--transition);
}

.footer__credits a:hover {
    opacity: 0.85;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .header__menu {
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .card {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

@media (max-width: 1200px) {
    .project {
        flex: 0 0 calc((100% - 48px) / 3);
    }
    .projects-page__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-archive__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-archive__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .similar-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .topbar {
        display: none;
    }
    .hero {
        margin-top: calc(-1 * var(--header-height));
    }
    .categories {
        padding: 56px 0 40px;
    }
    .categories__container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .categories__intro {
        padding-right: 0;
        max-width: 600px;
    }
    .categories__title {
        font-size: clamp(22px, 6vw, 30px);
    }
    .categories__lead {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .cat-card {
        aspect-ratio: 3 / 4;
        border-radius: 14px;
    }
    .cat-card__title {
        left: 14px;
        bottom: 14px;
        font-size: 14px;
        max-width: calc(100% - 68px);
    }
    .cat-card__arrow {
        width: 38px;
        height: 38px;
        right: 12px;
        bottom: 12px;
    }
    .hero__container {
        align-items: flex-start;
        padding: calc(var(--header-height) + 28px) 20px 56px;
        gap: 36px;
    }
    .hero__top {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__title-line {
        white-space: normal;
    }
    .hero__form {
        width: 100%;
        max-width: 420px;
    }
    .hero__stats {
        flex-wrap: wrap;
        row-gap: 24px;
        column-gap: 20px;
        justify-content: flex-start;
    }
    .hero__stat {
        flex: 0 1 calc(33.333% - 14px);
        min-width: 0;
    }
    .hero__stat + .hero__stat::before {
        display: none;
    }
    .hero__stat-num {
        font-size: 26px;
    }
    .hero__scroll {
        display: none;
    }
    .header__nav,
    .header__right .header__cta--ghost {
        display: none !important;
    }
    .header__cta--primary {
        padding: 8px 16px;
        font-size: 12px;
    }
    .header__burger {
        display: flex;
    }
    .header__inner {
        padding: 0 16px;
        gap: 16px;
    }
    .header__logo-img {
        height: 36px;
    }
    .card {
        flex: 0 0 calc((100% - 14px) / 2);
    }
    .products {
        padding: 56px 0;
    }
    .products__container {
        padding: 0 20px;
    }
    .products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 28px;
    }
    .products__title {
        font-size: clamp(22px, 6vw, 30px);
    }
    .products__desc {
        font-size: 14px;
    }
    .products__viewport {
        margin: 0 -20px;
        padding: 8px 20px 24px;
    }
    .products__track {
        gap: 14px;
    }
    .products__controls {
        width: 100%;
        justify-content: space-between;
    }
    .hero__footer {
        position: static;
        margin-top: 32px;
        padding: 0 20px;
    }
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__media {
        order: -1;
    }
    .project {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .directions__grid {
        grid-template-columns: 1fr;
    }
    .about-page__inner {
        grid-template-columns: 1fr;
    }
    .about-slider {
        height: 320px;
    }
    .values__photo {
        width: 100%;
    }
    .values__icons-img {
        width: 75%;
    }
    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-hero__title {
        font-size: 32px;
    }
    .about-hero__stats {
        gap: 24px;
    }
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values__cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 22px;
        padding: 28px 24px;
    }
    .values__cta .values__partner {
        margin: 0 auto;
    }
    .projects-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__container {
        grid-template-columns: 1fr;
    }
    .booking {
        grid-template-columns: 1fr;
    }
    .booking__sidebar-footer {
        text-align: left;
    }
    .products-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .similar-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-page__container {
        grid-template-columns: 1fr;
    }
    .product-page__main {
        padding-right: 0;
    }
    .product-page__sidebar {
        position: static;
    }
    .product-detail {
        grid-template-columns: 1fr;
    }
    .project-body__container {
        grid-template-columns: 1fr;
    }
    .project-body__main {
        padding-right: 0;
    }
    .project-body__sidebar {
        position: static;
    }
    .prod-grid {
        grid-template-columns: 1fr;
    }
    .project-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .categories {
        padding: 44px 0 32px;
    }
    .categories__container {
        padding: 0 16px;
    }
    .categories__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .cat-card {
        aspect-ratio: 16 / 10;
    }
    .cat-card__title {
        font-size: 16px;
        bottom: 16px;
        left: 16px;
    }
    .cat-card__arrow {
        width: 40px;
        height: 40px;
        right: 14px;
        bottom: 14px;
    }
    .products {
        padding: 44px 0;
    }
    .products__container {
        padding: 0 16px;
    }
    .products__viewport {
        margin: 0 -16px;
        padding: 8px 16px 22px;
    }
    .card {
        flex: 0 0 calc(85%);
        max-width: 320px;
    }
    .products__title {
        font-size: 24px;
    }
    .projects-page__grid {
        grid-template-columns: 1fr;
    }
    .projects-page__title {
        font-size: 26px;
    }
    .projects-page__eyebrow {
        font-size: 11px;
        padding: 5px 12px;
    }
    .projects-page__filters {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        border-radius: 18px;
    }
    .projects-page__filter {
        justify-content: space-between;
        width: 100%;
    }
    .blog-archive__grid {
        grid-template-columns: 1fr;
    }
    .products-archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .products-archive {
        padding: 50px 0;
    }
    .products-archive__container {
        padding: 0 16px;
    }
    .products-archive__header {
        margin-bottom: 24px;
    }
    .products-archive__filters {
        width: 100%;
        gap: 4px;
        padding: 4px;
    }
    .products-archive__filter {
        flex: 1;
        padding: 9px 12px;
        font-size: 12px;
        text-align: center;
    }
    .products-archive__grid .card__body,
    .similar-products__grid .card__body {
        padding: 14px 14px 12px;
        gap: 8px;
    }
    .products-archive__grid .card__title,
    .similar-products__grid .card__title {
        font-size: 13px;
        min-height: 0;
        line-height: 1.25;
    }
    .products-archive__grid .card__text,
    .similar-products__grid .card__text {
        font-size: 11px;
        line-height: 1.45;
    }
    .products-archive__grid .card__price-value,
    .similar-products__grid .card__price-value {
        font-size: 14px;
    }
    .products-archive__grid .card__price-label,
    .similar-products__grid .card__price-label {
        font-size: 8px;
    }
    .products-archive__grid .card__footer,
    .similar-products__grid .card__footer {
        padding-top: 14px;
    }
    .products-archive__grid .card__arrow,
    .similar-products__grid .card__arrow {
        width: 34px;
        height: 34px;
    }
    .products-archive__grid .card__tag,
    .similar-products__grid .card__tag {
        top: 10px;
        left: 10px;
        font-size: 9px;
        padding: 4px 9px;
    }
    .similar-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 720px) {
    .products__track .card,
    .projects__track .project {
        flex: 0 0 86%;
    }
    .projects-page__grid .project {
        flex: none;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 64px;
    }
    .header__logo-img {
        height: 30px;
    }
    .header__burger {
        width: 32px;
        height: 32px;
    }
    .header__burger span {
        width: 20px;
    }
    .hero__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        position: static;
        margin-top: 28px;
        padding: 0 20px 32px;
    }
    .hero__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .hero__title {
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.15;
        margin-bottom: 14px;
    }
    .hero {
        min-height: auto;
    }
    .hero__container {
        padding-bottom: 32px;
        padding-top: calc(var(--header-height) + 28px);
        padding-left: 20px;
        padding-right: 20px;
        gap: 22px;
    }
    .hero__lead {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero__actions {
        gap: 10px;
        margin-bottom: 24px;
        width: 100%;
    }
    .hero__btn {
        padding: 12px 22px;
        font-size: 13px;
    }
    .hero__btn--ghost {
        width: 100%;
        justify-content: center;
    }
    .hero__stats {
        column-gap: 16px;
        row-gap: 20px;
    }
    .hero__stat {
        flex: 0 1 calc(50% - 12px);
    }
    .hero__stat-num {
        font-size: 24px;
    }
    .hero__stat-label {
        font-size: 11px;
    }
    .hero__form {
        padding: 22px 20px;
        border-radius: 16px;
    }
    .hero__form-title {
        font-size: 16px;
    }
    .hero__form-sub {
        font-size: 12px;
    }
    .hero__form-input {
        height: 42px;
        font-size: 13px;
    }
    .hero__form-submit {
        height: 42px;
        font-size: 13px;
    }
    .hero__form-trust {
        font-size: 11px;
    }
    /* All blue/outline buttons compact on mobile */
    .products__cta,
    .projects__cta,
    .projects__nav-btn,
    .reviews__nav-btn,
    .card__btn,
    .thanks__btn,
    .product-detail__btn,
    .product-page__consult,
    .callback-modal__submit,
    .booking__submit {
        padding: 10px 18px;
        font-size: 12px;
    }
    .card__btn {
        padding: 9px 0;
    }
    .projects__nav-btn,
    .reviews__nav-btn {
        width: 38px;
        height: 38px;
        padding: 0;
    }
    .product-detail__btn,
    .product-page__consult {
        padding: 11px 22px;
    }
    .thanks__btn {
        padding: 12px 26px;
        font-size: 13px;
    }
    .cta {
        padding: 24px 0 40px;
    }
    .cta__box {
        padding: 32px 20px;
    }
    .cta__title {
        font-size: 18px;
        line-height: 1.3;
    }
    .cta__desc {
        font-size: 12px;
    }
    .cta__btn {
        padding: 10px 18px;
        font-size: 12px;
        gap: 10px;
    }
    .cta__btn-grid {
        width: 12px;
        height: 12px;
    }
    /* About */
    .about {
        padding: 60px 0;
    }
    .about__container {
        padding: 0 20px;
        gap: 32px;
    }
    .about__title {
        font-size: 20px;
    }
    .about__stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .about__stat {
        gap: 12px;
    }
    .about__stat-num {
        font-size: 32px;
    }
    .about__stat-plus {
        font-size: 22px;
    }
    /* Products section */
    .products {
        padding: 60px 0 50px;
    }
    .products__container {
        padding: 0 20px;
    }
    .products__title {
        font-size: 22px;
    }
    .products__desc {
        font-size: 13px;
        margin-bottom: 28px;
    }
    .products__footer {
        flex-wrap: wrap;
        gap: 16px;
    }
    /* Projects (home) */
    .projects {
        padding: 60px 0;
    }
    .projects__container {
        padding: 0 20px;
    }
    /* Reviews */
    .reviews {
        padding: 60px 0 24px;
    }
    .review {
        flex: 0 0 92%;
        padding: 30px 22px 24px;
    }
    .review__quote {
        font-size: 64px;
        top: 8px;
    }
    .review__quote--left { right: 18px; left: auto; }
    .review__text {
        font-size: 13px;
        margin-bottom: 24px;
    }
    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    .footer__container {
        padding: 0 20px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }
    .footer__heading {
        font-size: 13px;
        margin-bottom: 16px;
    }
    /* About hero (mobile) */
    .about-hero {
        padding: calc(var(--header-height) + 40px) 0 60px;
    }
    .about-hero__container {
        padding: 0 20px;
        gap: 32px;
    }
    .about-hero__title {
        font-size: 26px;
    }
    .about-hero__lead {
        font-size: 13px;
    }
    .about-hero__actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    .about-hero__btn {
        padding: 11px 22px;
        font-size: 12px;
    }
    .about-hero__stats {
        gap: 18px;
        flex-wrap: wrap;
        padding-top: 20px;
    }
    .about-hero__stat-num {
        font-size: 22px;
    }
    .about-hero__stat-num sup {
        font-size: 13px;
    }
    .about-hero__thumb {
        width: 46px;
        height: 46px;
    }
    /* Values (mobile) */
    .values {
        padding: 50px 0 60px;
    }
    .values__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .value-card {
        padding: 22px 20px;
    }
    .value-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }
    .values__cta {
        padding: 24px 20px;
    }
    .values__cta-title {
        font-size: 17px;
    }
    /* Directions */
    .directions {
        padding: 40px 0 60px;
    }
    /* Values */
    .values {
        padding: 30px 0 60px;
    }
    .values__container {
        padding: 0 20px;
    }
    .values__title {
        font-size: 18px;
    }
    .values__icons-img {
        width: 70%;
        max-width: 280px;
    }
    /* Projects page */
    .projects-page {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }
    .projects-page__filters {
        gap: 8px;
    }
    .projects-page__filter {
        padding: 10px 18px;
        font-size: 12px;
    }
    .projects-page__title {
        font-size: 22px;
    }
    /* Project single */
    .project-hero {
        height: 220px;
        margin-bottom: 22px;
    }
    .project-body__title {
        font-size: 20px;
    }
    .prod-row {
        grid-template-columns: 90px 1fr;
        padding: 12px;
    }
    .prod-row__media {
        width: 90px;
    }
    .prod-row__footer {
        flex-wrap: wrap;
        gap: 8px;
    }
    /* Blog archive */
    .blog-archive {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }
    .blog-archive__container {
        padding: 0 20px;
    }
    .blog-card__title {
        font-size: 13px;
    }
    /* Blog single */
    .blog-single__hero {
        height: 200px;
    }
    /* FAQ */
    .faq {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }
    .faq__container {
        padding: 0 20px;
    }
    .faq__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .faq__head {
        padding: 16px 20px;
        font-size: 13px;
        gap: 14px;
    }
    .faq__body p {
        padding: 0 20px 18px 56px;
        font-size: 12px;
    }
    /* Contact */
    .contact {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }
    .contact__container {
        padding: 0 20px;
        gap: 28px;
    }
    .contact__title {
        font-size: 22px;
    }
    .contact-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .contact__map {
        height: 240px;
    }
    .booking {
        border-radius: 14px;
    }
    .booking__sidebar {
        padding: 18px 16px;
    }
    .booking__main {
        padding: 18px 16px;
    }
    .cal__day {
        height: 30px;
        font-size: 11px;
    }
    /* Products archive */
    .products-archive {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }
    .products-archive__container {
        padding: 0 20px;
    }
    .products-archive__filter {
        padding: 10px 18px;
        font-size: 11px;
    }
    /* Product single */
    .product-page {
        padding: calc(var(--header-height) + 24px) 0 40px;
    }
    .product-page__container {
        padding: 0 20px;
    }
    .product-detail__title {
        font-size: 24px;
    }
    .product-page__sidebar {
        padding: 22px 18px;
    }
    .product-page__price-value {
        font-size: 20px;
    }
    /* Modal */
    .callback-modal__content {
        padding: 32px 22px 26px;
    }
    .callback-modal__title {
        font-size: 18px;
    }
    /* Thanks page */
    .thanks__container {
        padding: 44px 24px;
    }
    .thanks__title {
        font-size: 26px;
    }
    /* Mobile menu panel */
    .mobile-menu__panel {
        max-width: 320px;
    }
    /* intl-tel-input on mobile */
    .iti__country-list {
        max-height: 240px;
    }
    .iti--separate-dial-code .iti__tel-input,
    .hero__form .iti--separate-dial-code .iti__tel-input,
    .callback-modal .iti--separate-dial-code .iti__tel-input {
        padding-left: 90px !important;
    }
    /* Touch-friendly tap targets without making buttons huge */
    .projects-page__filter,
    .products-archive__filter {
        min-height: 36px;
    }
    /* Lightbox on mobile */
    .lightbox {
        padding: 16px;
    }
    .lightbox__close {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 420px) {
    .hero__title {
        font-size: 22px;
    }
    .cta__title {
        font-size: 16px;
    }
    .products__title,
    .projects__title,
    .reviews__title,
    .about__title,
    .projects-page__title,
    .products-archive__title,
    .blog-archive__title,
    .faq__title,
    .contact__title,
    .product-detail__title,
    .project-body__title {
        font-size: 18px !important;
    }
    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .about__stat-num {
        font-size: 28px;
    }
    .footer__heading {
        font-size: 12px;
    }
    .review {
        padding: 32px 18px 26px;
    }
    .hero__form {
        padding: 18px 16px;
    }
    .hero__form-title {
        font-size: 15px;
    }
    .booking__sidebar,
    .booking__main {
        padding: 14px 12px;
    }
    .cal__day {
        height: 28px;
        font-size: 10px;
    }
    .cal__select {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 70px;
    }
    .footer__contacts li {
        gap: 10px;
    }
    .footer__contact-icon {
        width: 34px;
        height: 34px;
    }
    .product-page__price-value {
        font-size: 18px;
    }
    .iti--separate-dial-code .iti__tel-input,
    .hero__form .iti--separate-dial-code .iti__tel-input,
    .callback-modal .iti--separate-dial-code .iti__tel-input {
        padding-left: 76px !important;
    }
}
