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

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.cc10461cb5e0.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-ExtraBold.9e07cac927a9.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f6f1e8;
    --bg-soft: #fffaf2;
    --surface: rgba(255, 252, 247, 0.92);
    --surface-strong: #ffffff;
    --surface-dark: #18242f;
    --surface-dark-2: #223241;
    --text: #17212a;
    --text-soft: #566371;
    --line: rgba(24, 36, 47, 0.12);
    --line-strong: rgba(24, 36, 47, 0.18);
    --accent: #cf5a36;
    --accent-strong: #b14724;
    --accent-soft: rgba(207, 90, 54, 0.12);
    --accent-alt: #d9a85d;
    --success: #1f7a57;
    --danger: #a9442c;
    --shadow: 0 24px 56px rgba(24, 36, 47, 0.12);
    --shadow-soft: 0 14px 28px rgba(24, 36, 47, 0.08);
    --button-shadow: 0 14px 28px rgba(24, 36, 47, 0.1);
    --button-shadow-accent: 0 18px 32px rgba(207, 90, 54, 0.24);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --content-width: min(1180px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(217, 168, 93, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(207, 90, 54, 0.16), transparent 24%),
        linear-gradient(180deg, #f3ede1 0%, #fcfaf5 52%, #f5efe6 100%);
    min-height: 100vh;
    line-height: 1.55;
}

body.drawer-open,
body.lightbox-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    display: block;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--surface-dark);
    color: #fff;
    z-index: 1000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-main {
    padding: 28px 0 120px;
}

.page-shell {
    width: var(--content-width);
    margin: 0 auto 24px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 249, 241, 0.88));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.page-shell--soft {
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.95), rgba(255, 251, 244, 0.84));
}

.page-shell--hero {
    position: relative;
    overflow: hidden;
}

.page-shell--hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(207, 90, 54, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(217, 168, 93, 0.16), transparent 22%);
    pointer-events: none;
}

.section-stack > * + * {
    margin-top: 18px;
}

.page-header {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.page-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.page-title.is-left {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--text-soft);
    font-size: clamp(1rem, 2vw, 1.16rem);
}

.page-subtitle.is-left {
    max-width: 680px;
}

.hero-badge,
.meta-chip,
.search-hit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(207, 90, 54, 0.16);
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.text-muted {
    color: var(--text-soft);
}

.btn-main,
.btn-ghost,
.btn-link,
.btn-call,
.header-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 18px;
    transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
}

.btn-main {
    background: linear-gradient(180deg, #de7848 0%, var(--accent) 100%);
    border-color: rgba(177, 71, 36, 0.2);
    color: #fff;
    box-shadow: var(--button-shadow-accent), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-main:hover,
.btn-main:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #d96f3c 0%, var(--accent-strong) 100%);
    box-shadow: 0 22px 36px rgba(207, 90, 54, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost,
.header-chip,
.btn-call {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 233, 0.92));
    color: var(--text);
    box-shadow: var(--button-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover,
.btn-call:hover,
.header-chip:hover,
.btn-ghost:focus-visible,
.btn-call:focus-visible,
.header-chip:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(207, 90, 54, 0.28);
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(247, 236, 226, 0.98));
    box-shadow: 0 18px 32px rgba(24, 36, 47, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent-strong);
    justify-content: flex-start;
}

.btn-link:hover,
.btn-link:focus-visible {
    color: var(--accent);
}

.btn-link.is-danger {
    color: var(--danger);
}

.header-chip.is-current {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
    color: #fff;
    box-shadow: 0 14px 28px rgba(24, 36, 47, 0.2);
}

.page-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.page-actions > *,
.form-actions > * {
    margin: 0;
}

.page-actions .btn-link,
.form-actions .btn-link {
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(24, 36, 47, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 233, 0.94));
    color: var(--accent-strong);
    justify-content: center;
    box-shadow: var(--button-shadow);
}

.page-actions .btn-link:hover,
.page-actions .btn-link:focus-visible,
.form-actions .btn-link:hover,
.form-actions .btn-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(207, 90, 54, 0.22);
    color: var(--accent);
}

.split-grid,
.u-grid-fluid,
.grid-cards,
.kpi-grid,
.profile-grid {
    display: grid;
    gap: 18px;
}

.split-grid,
.profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cards,
.kpi-grid,
.u-grid-fluid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.order-card,
.article-card,
.profile-card,
.home-step,
.home-service,
.home-proof,
.service-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.feature-card h3,
.order-card h3,
.article-card h3,
.profile-card h3,
.home-step h3,
.home-service h3,
.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.25;
}

.feature-card p,
.order-card p,
.article-card p,
.profile-card p,
.home-step p,
.home-service p,
.service-card p {
    margin: 0;
    color: var(--text-soft);
}

.quick-info,
.notice-strip,
.floating-toast {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 47, 0.09);
    background: rgba(248, 242, 233, 0.88);
}

.quick-info p + p,
.notice-strip p + p {
    margin-top: 8px;
}

.status-error,
.flash-error {
    border-color: rgba(169, 68, 44, 0.28);
    background: rgba(250, 233, 226, 0.94);
}

.status-success,
.flash-success {
    border-color: rgba(31, 122, 87, 0.24);
    background: rgba(232, 247, 239, 0.95);
}

.flash-info,
.flash-warning {
    border-color: rgba(207, 90, 54, 0.2);
    background: rgba(255, 244, 235, 0.96);
}

.flash-list {
    width: var(--content-width);
    margin: 0 auto 18px;
    display: grid;
    gap: 10px;
}

.flash-item {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.flash-item.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(22px);
    background: rgba(248, 243, 235, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.site-header__bar {
    border-bottom: 1px solid rgba(24, 36, 47, 0.06);
    background: rgba(24, 36, 47, 0.92);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
}

.site-header__bar-inner,
.site-header__inner,
.footer-shell {
    width: var(--content-width);
    margin: 0 auto;
}

.site-header__bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 42px;
    white-space: nowrap;
    overflow: hidden;
}

.site-header__bar-inner span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__bar-inner a {
    color: #fff;
    font-weight: 600;
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr auto auto;
    align-items: center;
    gap: 18px;
    min-height: 82px;
    padding: 12px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    box-shadow: 0 14px 24px rgba(24, 36, 47, 0.16);
}

.site-logo__mark img {
    width: 54px;
    height: 54px;
}

.site-logo__text {
    min-width: 0;
    display: block;
}

.site-logo__title {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-logo__subtitle {
    color: var(--text-soft);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.site-nav a {
    position: relative;
    color: var(--text-soft);
    font-weight: 600;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
    background: var(--accent);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.site-drawer-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    position: relative;
}

.site-drawer-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-drawer-toggle__label {
    position: absolute;
    inset: auto auto -9999px -9999px;
}

.site-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(24, 36, 47, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 75;
}

.site-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    padding: 22px;
    background: linear-gradient(180deg, rgba(24, 36, 47, 0.98), rgba(19, 30, 40, 0.98));
    color: rgba(255, 255, 255, 0.92);
    transform: translateX(105%);
    transition: transform 0.22s ease;
    z-index: 80;
    overflow-y: auto;
}

.site-drawer.is-open {
    transform: translateX(0);
}

.site-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.site-logo--drawer .site-logo__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.site-drawer__close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.5rem;
}

.site-drawer__body {
    display: grid;
    gap: 18px;
}

.site-drawer-search__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.76);
}

.site-drawer-search__field {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.site-drawer-search__field input,
.site-drawer-search__field button {
    border: 0;
    border-radius: 12px;
}

.site-drawer-search__field input {
    width: 100%;
    padding: 12px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-drawer-search__field input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.site-drawer-search__field button {
    padding: 0 16px;
    background: linear-gradient(135deg, var(--accent), #de7a42);
    color: #fff;
    font-weight: 600;
}

.site-drawer__links {
    display: grid;
    gap: 10px;
}

.site-drawer__links a,
.site-drawer__card,
.site-drawer__info {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-drawer__links a {
    font-weight: 600;
}

.site-drawer__card {
    display: grid;
    gap: 10px;
}

.site-drawer__card-title {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-drawer__info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-drawer__info p + p {
    margin-top: 8px;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.home-hero__copy,
.home-hero__card {
    position: relative;
    z-index: 1;
}

.home-hero__copy {
    display: grid;
    gap: 18px;
}

.home-hero__card {
    padding: 24px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(24, 36, 47, 0.96), rgba(29, 43, 56, 0.94)),
        url("../img/newIndPhoto1.d7f3045bb10e.jpeg") center/cover;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.home-hero__card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
}

.home-hero__card p,
.home-hero__card li {
    color: rgba(255, 255, 255, 0.76);
}

.hero-search-inline {
    margin: 0;
}

.hero-search-inline__field {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 36, 47, 0.09);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.hero-search-inline__field input,
.hero-search-inline__field button {
    border-radius: 14px;
    border: 0;
}

.hero-search-inline__field input {
    min-width: 0;
    padding: 16px 18px;
    background: rgba(247, 243, 236, 0.9);
}

.hero-search-inline__field button {
    min-width: 140px;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--accent), #de7a42);
    color: #fff;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-proof-grid,
.service-grid,
.process-grid,
.coverage-grid {
    display: grid;
    gap: 16px;
}

.home-proof-grid,
.coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof strong,
.home-service strong,
.service-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.home-service,
.home-step,
.service-card {
    display: grid;
    gap: 12px;
}

.home-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-weight: 800;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 26px 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(24, 36, 47, 0.96), rgba(35, 51, 66, 0.92));
    color: rgba(255, 255, 255, 0.94);
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.cta-band .page-actions .btn-ghost,
.cta-band .page-actions .btn-call {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 20px;
    align-items: start;
}

.form-layout__side {
    display: grid;
    gap: 16px;
}

.form-shell {
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 36, 47, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text);
}

.form-shell input:not([type="checkbox"]):not([type="radio"]),
.form-shell textarea,
.form-shell select,
.inputf1,
.support-file-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(24, 36, 47, 0.14);
    border-radius: 16px;
    background: rgba(247, 243, 236, 0.92);
    color: var(--text);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-shell textarea {
    min-height: 132px;
    resize: vertical;
}

.form-shell input:focus,
.form-shell textarea:focus,
.form-shell select:focus,
.inputf1:focus {
    outline: none;
    border-color: rgba(207, 90, 54, 0.44);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(207, 90, 54, 0.08);
}

.form-shell .is-invalid,
.form-shell input:invalid:focus,
.form-shell textarea:invalid:focus,
.form-shell select:invalid:focus {
    border-color: rgba(169, 68, 44, 0.5);
    box-shadow: 0 0 0 4px rgba(169, 68, 44, 0.09);
}

.form-errors {
    margin: 0;
    padding-left: 18px;
    color: var(--danger);
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-soft);
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.phone-verify-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.multi-select {
    overflow: hidden;
    border: 1px solid rgba(24, 36, 47, 0.12);
    border-radius: 18px;
    background: rgba(247, 243, 236, 0.92);
}

.multi-select__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
}

.multi-select__summary::-webkit-details-marker {
    display: none;
}

.multi-select__panel {
    padding: 0 16px 16px;
}

.multi-select__hint {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.multi-select__option + .multi-select__option {
    margin-top: 8px;
}

.multi-select__option label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.table-wrap,
.owner-table-wrap {
    overflow-x: auto;
}

.table-pricing,
.owner-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(24, 36, 47, 0.1);
    background: rgba(255, 255, 255, 0.82);
}

.table-pricing th,
.table-pricing td,
.owner-table th,
.owner-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(24, 36, 47, 0.08);
    text-align: left;
}

.table-pricing th,
.owner-table th {
    background: rgba(24, 36, 47, 0.94);
    color: #fff;
}

.notice-strip {
    color: var(--text);
}

.info-list,
.auth-step-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.info-list li + li,
.auth-step-list li + li {
    margin-top: 8px;
}

.shop-layout {
    width: var(--content-width);
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 20px;
}

.shop-main,
.shop-sidebar {
    min-width: 0;
}

.shop-hero__aside {
    height: fit-content;
}

.category-quick-grid,
.catalog-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-quick-link,
.catalog-category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(24, 36, 47, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text-soft);
    font-weight: 600;
}

.category-quick-link.is-active,
.catalog-category-chip.is-active {
    border-color: rgba(207, 90, 54, 0.28);
    background: rgba(255, 241, 232, 0.96);
    color: var(--accent-strong);
}

.catalog-pick-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.catalog-pick-toolbar__controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-pick-toolbar__qty {
    display: inline-grid;
    gap: 6px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.catalog-pick-toolbar__qty input {
    width: 94px;
}

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

.product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(24, 36, 47, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-card.is-picked {
    border-color: rgba(207, 90, 54, 0.36);
}

.product-card__image-wrap,
.product-detail__media {
    position: relative;
    background: linear-gradient(180deg, rgba(246, 239, 230, 0.88), rgba(238, 230, 220, 0.96));
    aspect-ratio: 1 / 0.9;
    overflow: hidden;
}

.product-card__image-wrap img,
.product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__image-empty {
    display: grid;
    place-items: center;
    height: 100%;
    color: var(--text-soft);
}

.product-card__body {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.product-card__meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.product-card__body h3 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.3;
}

.product-card__body p {
    margin: 0;
    color: var(--text-soft);
}

.product-card__bottom,
.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card__add {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.product-card__add input[type="number"],
.cart-item__actions input[type="number"] {
    width: 88px;
    min-height: 46px;
}

.product-price {
    color: var(--text);
}

.product-price strong {
    font-size: 1.16rem;
}

.catalog-product-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.pagination-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px;
    color: var(--text-soft);
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(24, 36, 47, 0.08);
    background: rgba(247, 243, 236, 0.92);
}

.cart-item p {
    margin: 0;
}

.cart-item p + p {
    margin-top: 6px;
}

.cart-total {
    color: var(--text);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: start;
}

.product-detail__content {
    display: grid;
    gap: 16px;
}

.gallery-grid,
.article-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-grid img,
.article-image-grid img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 18px;
    cursor: zoom-in;
}

.article-content {
    display: grid;
    gap: 14px;
}

.contact-map-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 36, 47, 0.08);
    min-height: 420px;
    box-shadow: var(--shadow-soft);
}

.contact-map-frame iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.search-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.search-count {
    color: var(--text-soft);
}

.site-search-form,
.site-search-token-list {
    display: grid;
    gap: 14px;
}

.site-search-token-list {
    grid-template-columns: repeat(auto-fit, minmax(90px, max-content));
}

.site-search-token-list code {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 36, 47, 0.08);
    color: var(--text-soft);
}

.site-search-actions {
    align-self: end;
}

.allauth-box {
    max-width: 1040px;
}

.auth-entry-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.profile-card p + p {
    margin-top: 8px;
}

.attachment-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.attachment-list li {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(24, 36, 47, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.attachment-preview {
    width: 100%;
    border-radius: 14px;
}

.attachment-preview--image {
    max-height: 240px;
    object-fit: cover;
    cursor: zoom-in;
}

.attachment-preview--video {
    max-height: 260px;
}

.attachment-list__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.message-inline-actions {
    margin-top: 10px;
}

.floating-toast {
    position: sticky;
    top: 96px;
    z-index: 10;
}

.footer-shell {
    padding: 0 0 36px;
}

.site-footer {
    margin-top: 12px;
    padding-bottom: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(24, 36, 47, 0.98), rgba(32, 46, 60, 0.96));
    color: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.footer-grid h3 {
    margin: 0 0 12px;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid a + a,
.footer-grid p + p {
    margin-top: 8px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
}

.footer-brand strong {
    display: block;
    font-size: 1.1rem;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 6px 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.mobile-quickbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 55;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(24, 36, 47, 0.94);
    box-shadow: var(--shadow);
}

.mobile-quickbar a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    font-weight: 600;
}

.mobile-quickbar a:nth-child(2) {
    background: linear-gradient(180deg, #de7848 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: var(--button-shadow-accent);
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(7, 12, 18, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.site-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-lightbox__image {
    max-width: min(94vw, 1100px);
    max-height: 78vh;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.site-lightbox__close,
.site-lightbox__nav {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.site-lightbox__close {
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
}

.site-lightbox__nav {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 2rem;
    transform: translateY(-50%);
}

.site-lightbox__nav--prev {
    left: 22px;
}

.site-lightbox__nav--next {
    right: 22px;
}

.site-lightbox__caption {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
}

@media (max-width: 1280px) {
    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .site-drawer-toggle {
        display: inline-grid;
    }

    .home-hero,
    .shop-layout,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .form-layout {
        grid-template-columns: 1fr;
    }

    .grid-cards,
    .kpi-grid,
    .u-grid-fluid,
    .products-grid,
    .gallery-grid,
    .article-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid,
    .process-grid,
    .home-proof-grid,
    .coverage-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    :root {
        --content-width: min(100vw - 20px, 1000px);
    }

    .site-main {
        padding-top: 18px;
        padding-bottom: 138px;
    }

    .page-shell {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .site-header__bar {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 76px;
        gap: 10px;
    }

    .site-logo {
        gap: 10px;
        min-width: 0;
    }

    .site-logo__mark,
    .site-logo__mark img {
        width: 48px;
        height: 48px;
    }

    .site-logo__title {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }

    .split-grid,
    .profile-grid,
    .grid-cards,
    .kpi-grid,
    .u-grid-fluid,
    .products-grid,
    .gallery-grid,
    .article-image-grid,
    .auth-layout,
    .footer-grid,
    .home-proof-grid,
    .service-grid,
    .process-grid,
    .coverage-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-search-inline__field,
    .phone-verify-controls,
    .product-card__bottom,
    .product-card__add,
    .cart-item__actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-search-inline__field button,
    .phone-verify-controls button,
    .product-card__add .btn-main,
    .cart-item__actions .btn-link,
    .cart-item__actions .btn-ghost {
        width: 100%;
    }

    .page-actions,
    .form-actions,
    .catalog-pick-toolbar,
    .catalog-pick-toolbar__controls,
    .footer-bottom,
    .search-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .page-actions > *,
    .form-actions > * {
        width: 100%;
    }

    .mobile-quickbar {
        display: grid;
    }

    .floating-toast {
        top: 82px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-drawer {
        width: 100%;
        padding: 18px;
    }

    .site-lightbox {
        padding: 16px;
    }

    .site-lightbox__nav {
        display: none;
    }
}
