*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

:root {
    --bg: #f5f0e8;
    --bg-pattern: #ebe6de;
    --bg-card: #faf8f4;
    --card: #faf8f4;
    --text: #2c2c2c;
    --text-muted: #5c5c5c;
    --accent: #d97a3a;
    --accent-hover: #c46a2e;
    --accent-green: #5a6b4a;
    --border: #e5e0d8;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.06);
    --loader-path: #e5e0d8;
    --loader-dot: #d97a3a;
    --check-green: #6b8f5c;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e8e3db' fill-opacity='0.4' d='M44.7,-76.4C58.2,-69.2,69.2,-58.2,76.4,-44.7C83.6,-31.2,87,-15.6,87,0C87,15.6,83.6,31.2,76.4,44.7C69.2,58.2,58.2,69.2,44.7,76.4C31.2,83.6,15.6,87,0,87C-15.6,87,-31.2,83.6,-44.7,76.4C-58.2,69.2,-69.2,58.2,-76.4,44.7C-83.6,31.2,-87,15.6,-87,0C-87,-15.6,-83.6,-31.2,-76.4,-44.7C-69.2,-58.2,-58.2,-69.2,-44.7,-76.4C-31.2,-83.6,-15.6,-87,0,-87C15.6,-87,31.2,-83.6,44.7,-76.4Z' transform='translate(100 100)'/%3E%3C/svg%3E"),
        linear-gradient(180deg, #f5f0e8 0%, #ebe6de 50%, #f5f0e8 100%);
    background-size: 120% 120%, 100% 100%;
    background-position: 50% 50%, 0 0;
    pointer-events: none;
}

@supports not (height: 100dvh) {
    body {
        min-height: 100vh;
    }
}

body.page-fade-out {
    opacity: 0;
    transform: translateY(6px);
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

#site-header,
#site-footer,
main {
    width: 100%;
}

#site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

main {
    flex: 1 0 auto;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.navbar .container {
    width: min(1320px, calc(100% - 96px));
    padding: 0;
}

.section {
    padding: 72px 0;
}

.section-tight {
    padding-top: 20px;
}

.section-header {
    margin-bottom: 36px;
    text-align: center;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0;
    overflow-wrap: break-word;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    border-color: var(--border);
    color: var(--text);
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    border-bottom: 1px solid var(--border);
    width: 100%;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(245, 240, 232, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 0;
    gap: 24px;
}

.nav-wrapper nav {
    margin-left: auto;
}

.logo-block {
    display: inline-flex;
    align-items: center;
    color: var(--text);
}

.logo-image {
    height: 96px;
    width: auto;
    object-fit: contain;
}

.logo-block img.logo-image {
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.nav-menu a {
    transition: color 0.15s ease;
}

.nav-menu a.active {
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-cta {
    margin-left: 12px;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.88);
    border: 1px solid rgba(217, 122, 58, 0.22);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.mobile-toggle:hover,
.mobile-toggle[aria-expanded="true"] {
    background: #fff;
    border-color: rgba(217, 122, 58, 0.42);
    transform: translateY(-1px);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-text-beige { color: #b8b2a6; }
.logo-text-green { color: var(--accent-green); }

.sales-strip {
    display: none;
}

.sales-strip-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 10px 0;
    font-size: 0.95rem;
}

.sales-strip-text { color: var(--text); }
.sales-strip-text strong { color: var(--accent); }
.sales-strip-points { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.88rem; }
.sales-strip-points span { padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); box-shadow: var(--shadow-soft); }

.hero {
    padding: 96px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}

.hero-subtitle {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0 0 12px;
}

.hero-desc {
    color: var(--text-muted);
    margin: 0 0 24px;
    max-width: 520px;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.micro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    min-width: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

body[data-page="pricing"] main > .section:first-child {
    overflow: hidden;
}

.pricing-wow .section-header {
    position: relative;
    z-index: 2;
}

.pricing-wow .card-grid {
    perspective: 1100px;
}

.pricing-wow .pricing-print-card {
    position: relative;
    overflow: hidden;
    transform-origin: center bottom;
}

.pricing-wow:not(.is-printed) .pricing-print-card {
    opacity: 0;
    transform: translateY(18px) rotateX(10deg) scale(0.97);
}

.pricing-wow.is-printed .pricing-print-card {
    animation: pricing-card-materialize 0.9s cubic-bezier(0.18, 0.88, 0.28, 1) forwards;
    animation-delay: var(--pricing-card-delay, 0ms);
}

.pricing-print-card::before,
.pricing-print-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing-print-card::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(217, 122, 58, 0) 0%, rgba(217, 122, 58, 0.22) 50%, rgba(217, 122, 58, 0) 100%),
        repeating-linear-gradient(180deg, rgba(217, 122, 58, 0.2) 0 1px, transparent 1px 11px);
    opacity: 0;
    transform: translateY(100%);
}

.pricing-print-card::after {
    z-index: 2;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.74) 46%, transparent 68%);
    opacity: 0;
    transform: translateX(-120%);
}

.pricing-wow.is-printed .pricing-print-card::before {
    animation: pricing-layer-sweep 0.86s cubic-bezier(0.22, 0.72, 0.22, 1) forwards;
    animation-delay: var(--pricing-card-delay, 0ms);
}

.pricing-wow.is-printed .pricing-print-card::after {
    animation: pricing-card-shine 0.8s ease forwards;
    animation-delay: calc(var(--pricing-card-delay, 0ms) + 560ms);
}

.pricing-wow .pricing-print-card > * {
    position: relative;
    z-index: 3;
}

@keyframes pricing-card-materialize {
    0% {
        opacity: 0;
        transform: translateY(18px) rotateX(10deg) scale(0.97);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    }

    62% {
        opacity: 1;
        transform: translateY(-4px) rotateX(0) scale(1.012);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        box-shadow: var(--shadow-soft);
    }
}

@keyframes pricing-layer-sweep {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    18%,
    72% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes pricing-card-shine {
    0% {
        opacity: 0;
        transform: translateX(-120%);
    }

    35% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
        transform: translateX(120%);
    }
}

.hero-interactive {
    display: grid;
    gap: 12px;
    position: relative;
}

.cube-loader {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 86px;
    height: 86px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg);
    animation: cube-spin 6s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.cube-loader .cube-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.cube-loader .cube-wrapper .cube-span {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateY(calc(90deg * var(--i))) translateZ(43px);
    background: linear-gradient(to bottom, #e8e3db 0%, #d4cfc4 45%, #ebe6de 100%);
    border: 1px solid var(--border);
    box-shadow: inset 0 0 14px rgba(255,255,255,0.5);
}

.cube-top {
    position: absolute;
    width: 86px;
    height: 86px;
    background: #e8e3db;
    transform: rotateX(90deg) translateZ(43px);
    transform-style: preserve-3d;
    border: 1px solid var(--border);
}

.cube-top::before {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    background: rgba(217, 122, 58, 0.15);
    transform: translateZ(-95px);
    filter: blur(12px);
}

@keyframes cube-spin {
    0% {
        transform: rotateX(-30deg) rotateY(0);
    }

    100% {
        transform: rotateX(-30deg) rotateY(360deg);
    }
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(217, 122, 58, 0.12);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cta h2 {
    margin: 0;
}

.sales-banner {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.sales-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.sales-banner p {
    margin: 0;
    color: var(--text-muted);
}

.sales-banner-points {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--text);
}

.sales-banner-points li::before {
    content: "\2022\00a0";
    color: var(--accent);
}

.sales-banner-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
}

.faq-list.is-enhanced .faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-list.is-enhanced .faq-item:hover,
.faq-list.is-enhanced .faq-item.is-open {
    border-color: rgba(217, 122, 58, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.faq-question:focus-visible {
    outline: 2px solid rgba(217, 122, 58, 0.45);
    outline-offset: -6px;
    border-radius: 18px;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(217, 122, 58, 0.22);
    background: rgba(217, 122, 58, 0.08);
    flex: 0 0 auto;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle-icon::before,
.faq-item.is-open .faq-toggle-icon::after {
    background: #fff;
}

.faq-item.is-open .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.3s ease, opacity 0.22s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--text-muted);
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

input,
select,
textarea {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(217, 122, 58, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.status-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.pricing-wow .status-steps {
    position: relative;
    --pricing-progress: 0%;
}

.pricing-wow .status-steps::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(217, 122, 58, 0.72), rgba(232, 155, 103, 0.18));
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    opacity: 0;
    pointer-events: none;
}

.pricing-wow.is-printed .status-steps::before {
    animation: pricing-progress-line 1.45s cubic-bezier(0.2, 0.72, 0.22, 1) forwards;
    animation-delay: 1.02s;
}

.pricing-print-head {
    position: absolute;
    top: calc(50% - 48px);
    left: 0;
    z-index: 4;
    width: 54px;
    height: 46px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(0) translateY(-8px);
    pointer-events: none;
    filter: drop-shadow(0 10px 18px rgba(217, 122, 58, 0.24));
}

.pricing-print-head::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 0;
    height: 24px;
    border-radius: 10px 10px 7px 7px;
    background: linear-gradient(180deg, #f0a06c, var(--accent));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.pricing-print-head::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 23px;
    width: 18px;
    height: 18px;
    background: #b9622d;
    clip-path: polygon(18% 0, 82% 0, 100% 52%, 50% 100%, 0 52%);
    transform: translateX(-50%);
}

.pricing-print-head span {
    position: absolute;
    left: 50%;
    top: 43px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%) scale(0);
    box-shadow: 0 0 18px rgba(217, 122, 58, 0.72);
}

.pricing-wow.is-printed .pricing-print-head {
    animation: pricing-head-travel 1.5s cubic-bezier(0.22, 0.72, 0.22, 1) forwards;
    animation-delay: 0.96s;
}

.pricing-wow.is-printed .pricing-print-head span {
    animation: pricing-extrude-dot 0.24s ease-in-out 6 alternate;
    animation-delay: 1.02s;
}

.status-step {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    min-height: 64px;
    padding: 14px 18px;
    border: 1px solid rgba(217, 122, 58, 0.22);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(250, 248, 244, 0.95) 0%, rgba(245, 240, 232, 0.95) 100%);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    will-change: transform, opacity;
    animation: status-step-enter 0.55s ease forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-wow .status-step {
    animation: none;
    opacity: 0;
    transform: translateY(14px) scale(0.97);
}

.pricing-wow.is-printed .status-step {
    animation: pricing-step-activate 0.54s cubic-bezier(0.18, 0.88, 0.28, 1) forwards;
    animation-delay: var(--pricing-step-delay, 1.1s);
}

.status-step::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent) 0%, #e89b67 100%);
}

.status-step::after {
    content: none;
}

.status-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    border-color: rgba(217, 122, 58, 0.35);
}

.pricing-wow.is-printed .status-step:hover {
    transform: translateY(-2px) scale(1.01);
}

@keyframes pricing-progress-line {
    0% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    12% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes pricing-head-travel {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(-10px) scale(0.92);
    }

    8%,
    88% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(calc(var(--pricing-head-distance, 100%) - 54px)) translateY(-10px) scale(0.96);
    }
}

@keyframes pricing-extrude-dot {
    from {
        transform: translateX(-50%) scale(0.4);
        opacity: 0.65;
    }

    to {
        transform: translateX(-50%) scale(1.28);
        opacity: 1;
    }
}

@keyframes pricing-step-activate {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
        border-color: rgba(217, 122, 58, 0.18);
    }

    62% {
        opacity: 1;
        transform: translateY(-3px) scale(1.018);
        border-color: rgba(217, 122, 58, 0.52);
        box-shadow: 0 12px 24px rgba(217, 122, 58, 0.14);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        border-color: rgba(217, 122, 58, 0.28);
    }
}

.status-step:nth-child(1) {
    animation-delay: 0.04s;
}

.status-step:nth-child(2) {
    animation-delay: 0.12s;
}

.status-step:nth-child(3) {
    animation-delay: 0.2s;
}

.status-step:nth-child(4) {
    animation-delay: 0.28s;
}

.status-step:nth-child(5) {
    animation-delay: 0.36s;
}

.status-step:nth-child(6) {
    animation-delay: 0.44s;
}

@keyframes status-step-enter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 980px) {
    .status-steps {
        gap: 18px;
    }

    .status-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        left: calc(100% + 4px);
        width: 12px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(217, 122, 58, 0.65) 0%, rgba(232, 155, 103, 0.25) 100%);
        transform: translateY(-50%) scaleX(0);
        transform-origin: left center;
        animation: status-link-enter 0.45s ease forwards;
        animation-delay: 0.35s;
    }

    .pricing-wow .status-step:not(:last-child)::after {
        content: none;
    }
}

@media (max-width: 979px) {
    .pricing-wow .status-steps::before,
    .pricing-print-head {
        display: none;
    }
}

@keyframes status-link-enter {
    from {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    background: rgba(217, 122, 58, 0.08);
    color: var(--accent);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 36px 0 32px;
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(150px, 220px) minmax(240px, 300px);
    gap: clamp(32px, 8vw, 110px);
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 14px;
    max-width: 420px;
}

.footer-links {
    justify-self: center;
}

.footer-social {
    justify-self: end;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-note {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-logo-image {
    height: 96px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo:hover .logo-text-beige { color: #a09a8e; }
.footer-logo:hover .logo-text-green { color: var(--accent-green); }

.footer-contacts li {
    margin-bottom: 4px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    flex: 0 0 auto;
    box-shadow: 0 5px 14px rgba(32, 28, 24, 0.08);
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credit {
    font-weight: 400;
    color: #69758d;
}

.footer h4 {
    color: var(--text);
    margin: 0 0 12px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(245, 240, 232, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-card);
}

.loader {
    --path: var(--loader-path);
    --dot: var(--loader-dot);
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loader svg rect,
.loader svg polygon,
.loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader.triangle {
    width: 48px;
}

.loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }

    66% {
        transform: translate(10px, -18px);
    }

    100% {
        transform: translate(-10px, -18px);
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -18px);
    }

    75% {
        transform: translate(0, -36px);
    }

    100% {
        transform: translate(-18px, -18px);
    }
}

@keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }

    50% {
        stroke-dashoffset: 175;
    }

    75% {
        stroke-dashoffset: 225;
    }

    100% {
        stroke-dashoffset: 275;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .cube-loader {
        animation: none !important;
    }
}

/* Material cards (Материалы page) */
.material-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

@media (max-width: 1100px) {
    .material-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .material-grid { grid-template-columns: 1fr; }
}

.material-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.material-card:nth-child(odd) { margin-top: 0; }
.material-card:nth-child(even) { margin-top: 16px; }

.material-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.material-card h3 {
    margin: 0 0 4px;
    font-size: 1.35rem;
}

.material-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.material-card-image {
    width: 100%;
    aspect-ratio: 1;
    max-height: 140px;
    object-fit: contain;
    margin: 8px 0;
}

.material-card-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-height: 140px;
    background: var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 8px 0;
}

.pros-cons-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pros-cons-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b8f5c'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.colors-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
}

.colors-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Service cards with icon placeholder */
.service-card {
    text-align: center;
}

.service-card-icon {
    width: clamp(112px, 16vw, 156px);
    height: clamp(112px, 16vw, 156px);
    margin: 0 auto 18px;
    background: var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.service-card-icon-emoji {
    font-size: clamp(42px, 6vw, 62px);
    line-height: 1;
}

.service-card h3 { margin: 0 0 8px; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* Hero image placeholder */
.hero-image-wrap {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Examples grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .examples-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .examples-grid { grid-template-columns: 1fr; }
}

.example-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.example-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.example-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--border);
}

.example-card-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.example-card-body { padding: 18px; }
.example-card-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.example-card-meta { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 8px; }
.example-card-price { font-weight: 700; color: var(--accent); }

/* How we work - 4 category cards */
.work-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .work-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .work-categories { grid-template-columns: 1fr; }
}

.work-category-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.work-category-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.work-category-icon {
    width: clamp(96px, 14vw, 132px);
    height: clamp(96px, 14vw, 132px);
    margin: 0 auto 14px;
    background: var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.work-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.work-category-card h3 { margin: 0; font-size: 1rem; }

/* Filter tags (bottom of services) */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.filter-tag {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.filter-tag:hover {
    border-color: var(--accent);
    background: rgba(217, 122, 58, 0.08);
    color: var(--accent);
}

/* Colors plastic section */
.colors-plastic-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.colors-plastic-section h2 {
    margin: 0 0 16px;
    font-size: 1.5rem;
}

.colors-plastic-section p {
    margin: 0 0 12px;
    color: var(--text-muted);
    max-width: 720px;
}

@media (max-width: 880px) {
    .nav-menu {
        position: fixed;
        inset: 0;
        z-index: 101;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 132px 24px 32px;
        background: rgba(245, 240, 232, 0.97);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 14px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    .nav-menu.open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu li {
        width: min(360px, 100%);
        margin: 0 auto;
    }

    .nav-menu a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 13px 16px;
        border-radius: 14px;
        background: rgba(250, 248, 244, 0.72);
        border: 1px solid rgba(229, 224, 216, 0.88);
        font-weight: 600;
        box-shadow: var(--shadow-soft);
    }

    .nav-menu a.active {
        border-bottom: 1px solid rgba(217, 122, 58, 0.42);
        color: var(--accent);
    }

    .nav-menu .nav-cta {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
        box-shadow: 0 12px 28px rgba(217, 122, 58, 0.24);
    }

    .nav-menu .nav-cta:hover {
        background: var(--accent-hover);
        color: #fff;
    }

    .nav-cta {
        margin-left: 0;
    }

    .nav-wrapper nav {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .mobile-toggle {
        display: inline-flex;
        position: relative;
        z-index: 102;
        flex: 0 0 44px;
    }

    .logo-block {
        position: relative;
        z-index: 102;
    }

    .sales-strip-inner {
        align-items: flex-start;
    }

    .nav-wrapper {
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .mobile-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        margin-left: auto;
        transform: translateY(-50%);
    }

    .mobile-toggle:hover,
    .mobile-toggle[aria-expanded="true"] {
        transform: translateY(-50%);
    }
}

@media (max-width: 1024px) {
    .navbar .container {
        width: 100%;
        padding: 0 28px;
    }

    .hero {
        padding: 80px 0 56px;
    }

    .hero-grid {
        gap: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .card-grid,
    .status-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .nav-menu {
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: minmax(260px, 1fr) minmax(220px, auto);
    }

    .footer-links,
    .footer-social {
        justify-self: start;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .section-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
    }

    .hero-title {
        font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    }
}

@media (max-width: 880px) {
    .nav-wrapper {
        padding: 28px 0;
    }

    .logo-image {
        height: 76px;
        width: auto;
    }

    .logo-tagline {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4.2vw, 2.6rem);
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-interactive {
        padding-bottom: 72px;
    }

    .cube-loader {
        width: 72px;
        height: 72px;
        right: 14px;
        bottom: 14px;
    }

    .cube-loader .cube-wrapper .cube-span {
        transform: rotateY(calc(90deg * var(--i))) translateZ(36px);
    }

    .cube-top {
        width: 72px;
        height: 72px;
        transform: rotateX(90deg) translateZ(36px);
    }

    .cube-top::before {
        width: 72px;
        height: 72px;
        transform: translateZ(-80px);
    }
}

@media (max-width: 720px) {
    .section {
        padding: 56px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc,
    .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .cta,
    .sales-banner {
        padding: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        position: relative;
        padding-top: 8px;
    }

    .footer-grid::before {
        content: "";
        width: 72px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(217, 122, 58, 0.15), var(--accent), rgba(90, 107, 74, 0.25));
        margin: 0 auto 4px;
    }

    .footer-links,
    .footer-social {
        justify-self: stretch;
    }

    .footer-brand {
        justify-items: center;
        max-width: none;
        gap: 12px;
    }

    .footer-brand p {
        max-width: 340px;
        margin: 0 auto;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-logo-image {
        height: 82px;
    }

    .footer h4 {
        margin-bottom: 12px;
        text-align: center;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    .footer-links ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 12px;
        border: 1px solid rgba(229, 224, 216, 0.9);
        border-radius: 14px;
        background: rgba(250, 248, 244, 0.72);
        box-shadow: var(--shadow-soft);
        font-weight: 600;
        transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .footer-contacts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-contacts li {
        margin-bottom: 0;
    }

    .footer-social-link {
        justify-content: center;
        min-height: 48px;
        padding: 10px 12px;
        border: 1px solid rgba(229, 224, 216, 0.9);
        border-radius: 14px;
        background: rgba(250, 248, 244, 0.72);
        box-shadow: var(--shadow-soft);
        font-weight: 600;
        transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .footer-links a:hover,
    .footer-social-link:hover {
        transform: translateY(-1px);
        border-color: rgba(217, 122, 58, 0.34);
        background: #fff;
    }

    .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 28px;
        padding-top: 20px;
    }
}

@media (max-width: 560px) {
    .navbar .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        gap: 0;
        padding: 20px 0;
    }

    .container {
        width: min(1120px, calc(100% - 32px));
    }

    .hero {
        padding: 52px 0 40px;
    }

    .hero-title {
        font-size: clamp(1.58rem, 8.6vw, 2rem);
        line-height: 1.12;
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-image-wrap {
        min-height: 210px;
    }

    .hero-image {
        max-width: min(320px, 86vw);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 288px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    .card-grid,
    .material-grid,
    .examples-grid,
    .work-categories,
    .status-steps {
        grid-template-columns: 1fr;
    }

    .status-step {
        min-height: 58px;
    }

    .micro-trust {
        gap: 8px 12px;
        font-size: 0.9rem;
    }

    .card {
        padding: 18px;
    }

    .footer {
        padding: 30px 0 28px;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-brand p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .footer-links a,
    .footer-social-link {
        font-size: 0.9rem;
    }

    .sales-strip-inner {
        font-size: 0.9rem;
    }

    .sales-strip-points {
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .navbar .container {
        padding: 0 14px;
    }

    .logo-image {
        height: 64px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .sales-strip-text {
        font-size: 0.9rem;
    }

    .cta,
    .sales-banner {
        padding: 18px;
    }

    .footer-links ul,
    .footer-contacts {
        grid-template-columns: 1fr;
    }

    .footer-social-link {
        justify-content: flex-start;
    }
}

@media (max-width: 360px) {
    .logo-image {
        height: 58px;
    }

    .nav-menu {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 1.62rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .sales-strip-points span {
        padding: 4px 8px;
        font-size: 0.82rem;
    }
}

/* Additional breakpoints for broader device coverage */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
        width: min(1120px, 94%);
    }

    .navbar .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }

}

@media (max-width: 640px) {
    .section-header {
        margin-bottom: 24px;
    }

    .card-grid,
    .material-grid,
    .examples-grid,
    .work-categories,
    .status-steps {
        grid-template-columns: 1fr;
    }

    .material-card:nth-child(even) {
        margin-top: 0;
    }

    .service-card-icon {
        width: clamp(96px, 34vw, 132px);
        height: clamp(96px, 34vw, 132px);
    }

    .work-category-icon {
        width: clamp(88px, 30vw, 116px);
        height: clamp(88px, 30vw, 116px);
    }

    .filters,
    .filter-tags {
        gap: 8px;
    }

    .filter-btn,
    .filter-tag {
        padding: 9px 14px;
        font-size: 0.85rem;
    }

}

@media (max-height: 700px) and (min-width: 881px) {
    .nav-wrapper {
        padding: 28px 0;
    }

}

@media (min-width: 1440px) {
    .container {
        width: min(1240px, 90%);
    }

    .section {
        padding: 84px 0;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-image {
        max-width: 500px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (min-width: 1920px) {
    .container {
        width: min(1320px, 88%);
    }

    .hero-title {
        font-size: clamp(2.4rem, 2.6vw, 3.6rem);
    }

    .section-title {
        font-size: clamp(1.9rem, 1.8vw, 2.8rem);
    }
}
