:root {
    --red: #d9251d;
    --red-dark: #b91510;
    --ink: #090608;
    --text: #27232c;
    --muted: #8991ab;
    --soft: #f6f7fb;
    --line: #e6e9f1;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 24px 70px rgba(21, 17, 24, 0.1);
    --radius: 24px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 12%, rgba(217, 37, 29, 0.09), transparent 28rem),
        radial-gradient(circle at 88% 4%, rgba(28, 32, 48, 0.08), transparent 24rem),
        var(--white);
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.container {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section-lg {
    padding: 128px 0 92px;
}

.muted {
    background: rgba(246, 247, 251, 0.82);
    border-block: 1px solid var(--line);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(230, 233, 241, 0.82);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 190px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

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

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex: 1;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 28px rgba(217, 37, 29, 0.22);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 18px 36px rgba(217, 37, 29, 0.3);
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.62);
    border-color: var(--line);
}

.btn-light {
    color: var(--red);
    background: var(--white);
}

.btn-block {
    width: 100%;
}

.hero-grid,
.contact-grid,
.split-section,
.process-grid,
.catalog-top,
.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.hero-copy h1,
.page-hero h1,
.contact-copy h1 {
    margin: 18px 0 22px;
    color: var(--ink);
    font-size: clamp(2.6rem, 4.4vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-copy h1 span,
.contact-copy h1 span {
    color: var(--red);
}

.hero-copy p,
.page-hero p,
.contact-copy p,
.split-section p,
.section-heading p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.75;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 800;
}

.eyebrow {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(217, 37, 29, 0.08);
    font-size: 0.85rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.glass {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.product-stage {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 247, 251, 0.62)),
        radial-gradient(circle at 80% 24%, rgba(217, 37, 29, 0.18), transparent 18rem);
}

.generated-hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.product-stage:hover .generated-hero-art {
    transform: scale(1.035);
}

.floating-badge {
    position: absolute;
    left: 7%;
    bottom: 7%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.floating-badge i,
.feature-card i,
.tech-item i,
.mini-feature-grid i,
.contact-list i {
    color: var(--red);
}

.floating-badge span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 64px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--radius-sm);
}

.mini-brand {
    position: absolute;
    right: -16px;
    top: -20px;
    width: 82px;
    height: 82px;
    object-fit: contain;
    opacity: 0.08;
    pointer-events: none;
}

.stat-card strong {
    display: block;
    color: var(--red);
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.section-heading {
    margin-bottom: 44px;
}

.section-heading h2,
.split-section h2,
.cta-band h2,
.dark-cta h2,
.quote-grid h2 {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.feature-grid,
.operator-grid,
.product-grid,
.faq-grid,
.mini-feature-grid,
.tech-grid,
.mission-stats,
.catalog-grid {
    display: grid;
    gap: 24px;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.operator-card,
.faq-card,
.mini-feature-grid article,
.product-card,
.catalog-card,
.contact-form,
.compare-table,
.metric-card,
.about-panel,
.statement-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 60px rgba(21, 17, 24, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card,
.operator-card,
.faq-card,
.mini-feature-grid article {
    padding: 28px;
}

.feature-card:hover,
.operator-card:hover,
.faq-card:hover,
.product-card:hover,
.catalog-card:hover,
.metric-card:hover,
.about-panel:hover,
.statement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 37, 29, 0.28);
    box-shadow: 0 28px 76px rgba(21, 17, 24, 0.12);
}

.feature-card i,
.tech-item i,
.mini-feature-grid i {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 12px;
    background: rgba(217, 37, 29, 0.08);
}

.feature-card h3,
.faq-card h3,
.tech-item h3,
.mini-feature-grid h3,
.product-card h2,
.catalog-card h2 {
    color: var(--ink);
}

.feature-card p,
.faq-card p,
.tech-item p,
.mini-feature-grid p,
.product-card p,
.catalog-card p {
    color: var(--muted);
    line-height: 1.65;
}

.operator-grid,
.product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.operator-card {
    position: relative;
    overflow: hidden;
}

.operator-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(217, 37, 29, 0.05);
    pointer-events: none;
}

.operator-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    border-radius: 14px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.08);
}

.operator-icon i {
    width: 24px;
    height: 24px;
}

.operator-step {
    position: absolute;
    top: 28px;
    right: 28px;
    color: rgba(21, 17, 24, 0.16);
    font-size: 1.6rem;
    font-weight: 900;
}

.operator-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.25rem;
}

.operator-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cta-band,
.dark-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 72px;
    padding: 48px 56px;
    border-radius: 28px;
}

.cta-band {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), #b91510);
}

.cta-band h2,
.dark-cta h2 {
    color: var(--white);
}

.cta-band p,
.dark-cta p {
    color: rgba(255, 255, 255, 0.76);
}

.page-hero {
    padding: 120px 0 88px;
    border-bottom: 1px solid var(--line);
}

.page-hero .container {
    max-width: 1280px;
}

.page-hero h1 {
    max-width: 980px;
}

.process-grid {
    align-items: start;
}

.timeline {
    display: grid;
    gap: 38px;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 24px;
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 68px;
    width: 1px;
    height: calc(100% - 34px);
    background: var(--line);
}

.timeline-item span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    font-weight: 900;
}

.timeline-item h2 {
    margin: 0;
    color: var(--ink);
}

.timeline-item p {
    color: var(--muted);
    line-height: 1.7;
}

.dashboard-preview {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
}

.dashboard-preview img {
    width: min(82%, 420px);
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
}

.process-visual {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: var(--ink);
}

.process-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.process-visual::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(5, 1, 2, 0.94));
}

.process-visual figcaption {
    position: absolute;
    z-index: 1;
    inset: auto 32px 30px;
    display: grid;
    gap: 12px;
}

.process-visual figcaption strong {
    max-width: 520px;
    color: var(--white);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.25;
}

.process-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(217, 37, 29, 0.16);
    border-radius: 18px;
    background: rgba(217, 37, 29, 0.05);
}

.process-note > i {
    flex: 0 0 auto;
    width: 22px;
    color: var(--red);
}

.process-note strong {
    color: var(--ink);
}

.process-note p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.phone-ui {
    position: absolute;
    right: 8%;
    top: 10%;
    width: 170px;
    padding: 18px;
    border: 8px solid #111;
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(180deg, #171a25, #090608);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.phone-ui span,
.phone-ui small {
    display: block;
    color: #9da7c3;
    font-size: 0.78rem;
}

.phone-ui strong {
    display: block;
    margin: 12px 0 2px;
    color: #4ee38a;
    font-size: 1.6rem;
}

.phone-ui div {
    height: 8px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), #4ee38a);
}

.mini-feature-grid,
.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.mini-feature-grid {
    margin-top: 24px;
}

.product-card {
    overflow: hidden;
}

.featured-product {
    border-color: rgba(217, 37, 29, 0.32);
}

.product-image {
    display: grid;
    place-items: center;
    min-height: 330px;
    background: linear-gradient(145deg, #ffffff, #f3f5fa);
}

.product-image img {
    width: min(78%, 280px);
    max-height: 300px;
    object-fit: contain;
}

.product-body,
.catalog-body {
    padding: 28px;
}

.pill {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
}

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

.check-list.spaced {
    margin-bottom: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i,
.compare-table i {
    flex: 0 0 auto;
    color: var(--red);
}

.tech-grid {
    grid-template-columns: repeat(4, 1fr);
}

.tech-item {
    padding-right: 28px;
}

.dashboard-card {
    padding: 28px;
    border-radius: 30px;
}

.dashboard-card.image-card {
    overflow: hidden;
    padding: 12px;
}

.dashboard-card.image-card img {
    width: 100%;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.7s ease;
}

.dashboard-card.image-card:hover img {
    transform: scale(1.025);
}

.dashboard-window {
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 360px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}

.dash-sidebar {
    background: linear-gradient(180deg, #121521, #050405);
}

.dash-content {
    padding: 26px;
}

.dash-top,
.dash-chart,
.dash-table span,
.dash-metrics span {
    display: block;
    border-radius: 12px;
    background: #eef1f7;
}

.dash-top {
    width: 58%;
    height: 34px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.dash-metrics span {
    height: 82px;
}

.dash-chart {
    height: 120px;
    background: linear-gradient(135deg, rgba(217, 37, 29, 0.16), #eef1f7);
}

.dash-table {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.dash-table span {
    height: 18px;
}

.mission-grid {
    align-items: start;
}

.about-story {
    position: relative;
}

.about-story-grid,
.beyond-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
    gap: 64px;
    align-items: stretch;
}

.about-story-copy,
.beyond-grid > div {
    align-self: center;
}

.about-story-copy h2,
.beyond-grid h2 {
    margin: 14px 0 24px;
    color: var(--ink);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.08;
}

.about-story-copy p,
.beyond-grid > div p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-panel {
    padding: 36px;
}

.about-panel .check-list {
    margin-bottom: 0;
}

.about-principles {
    display: grid;
    align-content: center;
    padding: 42px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 252, 0.88));
}

.principle-list {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.principle-list > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.principle-list > div:last-child {
    border-bottom: 0;
}

.principle-list i {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 13px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.08);
}

.principle-list span {
    color: var(--muted);
    line-height: 1.5;
}

.principle-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.promise-card {
    position: relative;
    overflow: hidden;
    padding: 44px;
    color: var(--white);
    background: var(--ink);
}

.promise-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 48px solid rgba(217, 37, 29, 0.22);
    border-radius: 50%;
}

.promise-card > * {
    position: relative;
    z-index: 1;
}

.promise-card h2 {
    margin: 16px 0 20px;
    color: var(--white);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.05;
}

.promise-card p,
.promise-card .check-list li {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.promise-card .check-list i {
    color: #ff5e55;
}

.vision-mission-section {
    background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.mission-stats {
    grid-template-columns: repeat(2, 1fr);
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.statement-card {
    position: relative;
    padding: 44px;
}

.statement-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.08);
}

.statement-icon i {
    width: 26px;
}

.statement-card h2 {
    margin: 14px 0 22px;
    color: var(--ink);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.statement-card p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.statement-card.dark {
    color: var(--white);
    background: var(--ink);
}

.statement-card.dark h2,
.statement-card.dark p {
    color: var(--white);
}

.statement-card.dark p {
    opacity: 0.78;
}

.statement-card.dark .statement-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.metric-card {
    padding: 32px;
}

.metric-card strong {
    display: block;
    margin-top: 28px;
    color: var(--ink);
    font-size: 2.8rem;
}

.metric-card span {
    color: var(--muted);
}

.metric-card.red {
    color: var(--white);
    background: var(--red);
}

.metric-card.red strong,
.metric-card.red span,
.metric-card.red i,
.metric-card.dark strong,
.metric-card.dark span,
.metric-card.dark i {
    color: var(--white);
}

.metric-card.dark {
    color: var(--white);
    background: var(--ink);
}

.compare-table {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--muted);
    background: #eef1f7;
}

td {
    font-weight: 700;
}

td:nth-child(2) {
    color: var(--ink);
}

td:nth-child(3) {
    color: var(--muted);
}

td i {
    width: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.catalog-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.search-field {
    position: relative;
    display: block;
}

.search-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    transform: translateY(-50%);
    color: var(--muted);
}

.search-field [data-lucide] {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.search-field input,
.catalog-controls select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-field input {
    width: 220px;
    height: 48px;
    padding: 0 16px 0 44px;
}

.catalog-controls select {
    height: 48px;
    padding: 0 16px;
}

.search-field input:focus,
.catalog-controls select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(217, 37, 29, 0.48);
    box-shadow: 0 0 0 4px rgba(217, 37, 29, 0.08);
    background: var(--white);
}

.catalog-filter-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
}

.filter-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-1px);
}

#machineCount {
    margin-left: auto;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
    display: grid;
    grid-template-rows: 270px 1fr;
    overflow: hidden;
}

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

.catalog-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 270px;
    background: linear-gradient(145deg, #ffffff, #eef1f7);
}

.catalog-image img {
    width: min(76%, 250px);
    max-height: 250px;
    object-fit: contain;
}

.catalog-image span {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 900;
}

.catalog-body small {
    color: var(--muted);
    font-weight: 800;
}

.catalog-body {
    display: grid;
    grid-template-rows:
        auto
        minmax(3.3em, auto)
        minmax(4.95em, auto)
        minmax(152px, auto)
        minmax(134px, auto)
        auto;
    row-gap: 18px;
    align-content: start;
}

.catalog-body h2 {
    margin: 0;
    line-height: 1.1;
}

.catalog-body p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    grid-auto-rows: minmax(42px, auto);
    gap: 8px;
    margin: 0;
}

.spec-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 12px;
    color: #68718d;
    background: #f5f6fa;
    font-size: 0.78rem;
    font-weight: 800;
}

.spec-row i,
.catalog-body p i {
    width: 16px;
    flex: 0 0 auto;
}

.machine-location-row,
.suggested-location {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.machine-location-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.machine-location-row strong,
.suggested-location strong {
    display: block;
    color: var(--red);
    line-height: 1.35;
}

.machine-location-row strong {
    font-size: 1.08rem;
}

.machine-location-row > div {
    min-width: 0;
}

.machine-location-row .btn {
    flex: 0 0 auto;
    min-width: 138px;
    white-space: nowrap;
}

.suggested-location {
    margin: 0 0 22px;
}

.suggested-location small,
.machine-location-row small,
.payment-row small {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
}

.payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 46px;
    margin-top: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.payment-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.payment-row img {
    width: auto;
    max-width: 82px;
    height: 28px;
    object-fit: contain;
    padding: 4px 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.dark-cta {
    color: var(--white);
    background: var(--ink);
}

.contact-copy h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
}

.contact-list {
    display: grid;
    gap: 22px;
    margin-top: 36px;
}

.contact-list div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    column-gap: 16px;
}

.contact-list i {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 14px;
    background: rgba(217, 37, 29, 0.08);
}

.contact-list span {
    color: var(--muted);
    font-weight: 800;
}

.contact-list strong {
    color: var(--ink);
    font-size: 1.12rem;
}

.contact-form {
    padding: 42px;
    background: rgba(248, 249, 252, 0.78);
}

.contact-form h2 {
    margin: 0 0 26px;
    color: var(--ink);
    font-size: 2rem;
}

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

.contact-form label {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--ink);
    font-weight: 800;
}

.contact-form input,
.contact-form select {
    height: 56px;
    padding: 0 18px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 118px;
    padding: 16px 18px;
}

.form-note {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: var(--muted);
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--red-dark);
    background: rgba(217, 37, 29, 0.09);
    font-weight: 800;
}

.form-alert.success {
    color: #117243;
    background: rgba(36, 190, 112, 0.12);
}

.form-alert.error {
    color: var(--red-dark);
}

.wofex-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 10%, rgba(217, 37, 29, 0.14), transparent 24rem),
        linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
}

.wofex-page::before {
    content: "WOFEX";
    position: absolute;
    right: -2vw;
    top: 2rem;
    color: rgba(9, 6, 8, 0.025);
    font-size: clamp(7rem, 17vw, 18rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.wofex-layout {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.wofex-intro {
    position: sticky;
    top: 118px;
}

.wofex-intro h1 {
    margin: 20px 0 22px;
    color: var(--ink);
    font-size: clamp(2.6rem, 4.6vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.wofex-intro h1 span {
    color: var(--red);
}

.wofex-intro > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.wofex-points {
    display: grid;
    gap: 22px;
    margin: 38px 0;
}

.wofex-points > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.wofex-points i {
    width: 46px;
    height: 46px;
    padding: 12px;
    border-radius: 14px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.09);
}

.wofex-points span,
.wofex-points small {
    display: block;
}

.wofex-points strong {
    color: var(--ink);
}

.wofex-points small {
    margin-top: 5px;
    color: var(--muted);
    line-height: 1.5;
}

.wofex-date-card {
    padding: 22px 24px;
    border: 1px solid rgba(217, 37, 29, 0.18);
    border-radius: 18px;
    background: rgba(217, 37, 29, 0.06);
}

.wofex-date-card span,
.wofex-date-card small {
    display: block;
    color: var(--muted);
}

.wofex-date-card strong {
    display: block;
    margin: 6px 0 8px;
    color: var(--red);
    font-size: 1.18rem;
}

.wofex-form {
    position: relative;
    width: 100%;
    padding: clamp(26px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.9);
}

.wofex-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.wofex-form-heading h2 {
    margin: 7px 0 0;
}

.wofex-fieldset {
    min-width: 0;
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.wofex-fieldset + .wofex-fieldset {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.wofex-fieldset legend {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    margin-bottom: 22px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.wofex-fieldset legend span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    font-size: 0.82rem;
}

.wofex-form label small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.wofex-form textarea {
    min-height: 104px;
}

.wofex-form .form-row {
    align-items: start;
}

.wofex-form .form-row > label,
.wofex-form .form-row > .wofex-auto-date {
    grid-template-rows: auto 56px auto;
}

.wofex-auto-date {
    display: grid;
    align-content: start;
    gap: 9px;
    margin-bottom: 18px;
}

.wofex-auto-date > span {
    color: var(--ink);
    font-weight: 800;
}

.wofex-auto-date strong {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: #f1f3f8;
    font-size: 1rem;
    line-height: 1.2;
}

.wofex-auto-date strong i {
    width: 19px;
    color: var(--red);
}

.wofex-auto-date small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.wofex-combobox {
    position: relative;
    display: block;
    height: 56px;
}

.wofex-combobox input {
    padding-right: 48px;
}

.wofex-combobox-icon {
    position: absolute;
    right: 16px;
    top: 18px;
    z-index: 2;
    color: var(--muted);
    pointer-events: none;
}

.wofex-combobox-icon i {
    width: 20px;
    height: 20px;
}

.wofex-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 7px);
    z-index: 30;
    max-height: 240px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(9, 6, 8, 0.16);
}

.wofex-suggestions button {
    display: block;
    width: 100%;
    padding: 12px 13px;
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.wofex-suggestions [hidden] {
    display: none !important;
}

.wofex-suggestions button:hover,
.wofex-suggestions button.active {
    color: var(--red-dark);
    background: rgba(217, 37, 29, 0.08);
}

.wofex-no-results {
    display: block;
    padding: 12px 13px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.phone-field {
    display: grid;
    grid-template-columns: 62px 1fr;
}

.phone-prefix {
    display: grid;
    place-items: center;
    min-height: 56px;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: 14px 0 0 14px;
    color: var(--ink);
    background: #eef1f7;
    font-weight: 900;
}

.wofex-form .phone-field input {
    border-radius: 0 14px 14px 0;
}

.wofex-form input:user-invalid,
.wofex-form select:user-invalid,
.wofex-form textarea:user-invalid {
    border-color: rgba(217, 37, 29, 0.65);
}

.wofex-form button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.wofex-form .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 0;
}

.wofex-form .form-note i {
    width: 15px;
}

.wofex-locked-representative {
    display: grid;
    grid-template-rows: auto 56px auto;
    align-content: start;
    gap: 9px;
    margin-bottom: 18px;
}

.wofex-locked-representative > span {
    color: var(--ink);
    font-weight: 800;
}

.wofex-locked-representative strong {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(36, 190, 112, 0.28);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(36, 190, 112, 0.09);
    font-size: 1rem;
}

.wofex-locked-representative strong i {
    width: 20px;
    color: #117243;
}

.wofex-locked-representative strong em {
    margin-left: auto;
    padding: 5px 9px;
    border-radius: 999px;
    color: #117243;
    background: rgba(36, 190, 112, 0.14);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wofex-locked-representative small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.wofex-qr-page {
    background: #f6f7fb;
}

.wofex-hub-section {
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(21, 17, 24, 0.08);
    scroll-margin-top: 110px;
}

.wofex-qr-page .wofex-hub-section {
    margin-bottom: 0;
}

.wofex-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.wofex-section-heading h1,
.wofex-section-heading h2 {
    margin: 8px 0 7px;
    color: var(--ink);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.wofex-section-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.wofex-print-logo {
    display: none;
}

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

.wofex-qr-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    text-align: center;
    break-inside: avoid;
}

.wofex-qr-card img {
    width: 100%;
    max-width: 290px;
    margin: 0 auto 16px;
    border-radius: 12px;
}

.wofex-qr-card h3 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 1.2rem;
}

.wofex-qr-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.5;
}

.wofex-qr-card .btn {
    margin-top: auto;
    min-height: 42px;
    font-size: 0.86rem;
}

.wofex-responses-page {
    background: #f6f7fb;
}

.wofex-report-lock {
    max-width: 720px;
    padding: 42px;
    border-radius: 24px;
}

.wofex-report-lock h1,
.wofex-report-heading h1 {
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.wofex-report-lock p,
.wofex-report-heading p,
.wofex-response-panel-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.wofex-report-heading,
.wofex-response-panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.wofex-report-heading {
    margin-bottom: 28px;
}

.wofex-report-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.wofex-hub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(21, 17, 24, 0.05);
}

.wofex-hub-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 11px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 850;
    transition: color 0.2s ease, background 0.2s ease;
}

.wofex-hub-nav a:hover {
    color: var(--red);
    background: rgba(217, 37, 29, 0.07);
}

.wofex-hub-nav i {
    width: 17px;
}

.wofex-response-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.wofex-response-stat {
    display: grid;
    gap: 6px;
    min-height: 132px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(21, 17, 24, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wofex-response-stat:hover,
.wofex-response-stat.active {
    border-color: rgba(217, 37, 29, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(21, 17, 24, 0.1);
}

.wofex-response-stat.is-archived {
    border-style: dashed;
    background: #faf9fb;
}

.wofex-response-stat span {
    color: var(--ink);
    font-weight: 900;
}

.wofex-response-stat strong {
    color: var(--red);
    font-size: 2.1rem;
    line-height: 1;
}

.wofex-response-stat small {
    color: var(--muted);
    font-weight: 800;
}

.wofex-response-panel {
    scroll-margin-top: 110px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(21, 17, 24, 0.08);
}

.wofex-response-panel-heading {
    margin-bottom: 18px;
}

.wofex-response-panel-heading h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 1.45rem;
}

.wofex-response-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.wofex-response-table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
    background: var(--white);
}

.wofex-response-table th,
.wofex-response-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.wofex-response-table th {
    color: var(--ink);
    background: #f1f3f8;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wofex-response-table td {
    color: #3a3541;
    line-height: 1.45;
}

.wofex-response-table td a {
    display: block;
    color: var(--red);
    font-weight: 800;
}

.wofex-response-table td span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
}

.wofex-response-table tbody tr:last-child td {
    border-bottom: 0;
}

.wofex-empty-cell {
    padding: 36px 16px !important;
    color: var(--muted) !important;
    text-align: center !important;
}

@media (max-width: 900px) {
    .wofex-qr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .wofex-section-heading,
    .wofex-report-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .wofex-qr-grid {
        grid-template-columns: 1fr;
    }

    .wofex-response-panel-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .wofex-report-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wofex-report-actions .btn {
        width: 100%;
    }

    .wofex-hub-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wofex-hub-nav a {
        justify-content: center;
        padding-inline: 8px;
        font-size: 0.78rem;
    }

    .wofex-hub-section,
    .wofex-response-panel {
        padding: 16px;
    }
}

@page {
    size: A4 landscape;
    margin: 8mm;
}

@media print {
    .site-header,
    .site-footer,
    .uv-assistant {
        display: none !important;
    }

    body.wofex-printing-qr *,
    body[data-page="wofex-qr"] * {
        visibility: hidden !important;
    }

    body.wofex-printing-qr [data-qr-print-sheet],
    body.wofex-printing-qr [data-qr-print-sheet] *,
    body[data-page="wofex-qr"] [data-qr-print-sheet],
    body[data-page="wofex-qr"] [data-qr-print-sheet] * {
        visibility: visible !important;
    }

    body.wofex-printing-qr [data-qr-print-sheet],
    body[data-page="wofex-qr"] [data-qr-print-sheet] {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    [data-qr-print-sheet] .wofex-section-heading {
        align-items: center;
        margin: 0 0 4mm;
    }

    [data-qr-print-sheet] .wofex-section-heading .btn,
    [data-qr-print-sheet] .wofex-qr-card .btn {
        display: none !important;
    }

    [data-qr-print-sheet] .wofex-print-brand {
        display: flex;
        align-items: center;
        gap: 5mm;
    }

    [data-qr-print-sheet] .wofex-print-logo {
        display: block;
        width: 36mm;
        height: auto;
    }

    [data-qr-print-sheet] .eyebrow {
        display: none;
    }

    [data-qr-print-sheet] .wofex-section-heading h1,
    [data-qr-print-sheet] .wofex-section-heading h2 {
        margin: 0 0 1mm;
        color: #151118;
        font-size: 18pt;
        line-height: 1.05;
    }

    [data-qr-print-sheet] .wofex-section-heading p {
        max-width: none;
        color: #514b58;
        font-size: 9pt;
        line-height: 1.25;
    }

    [data-qr-print-sheet] .wofex-qr-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 79mm;
        gap: 4mm;
    }

    [data-qr-print-sheet] .wofex-qr-card {
        grid-column: span 2;
        min-width: 0;
        height: 79mm;
        padding: 3mm;
        border: 0.35mm solid #d8d5dc;
        border-radius: 3mm;
        box-shadow: none;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    [data-qr-print-sheet] .wofex-qr-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    [data-qr-print-sheet] .wofex-qr-card img {
        width: 53mm;
        height: 53mm;
        margin: 0 auto 1.5mm;
        border-radius: 0;
    }

    [data-qr-print-sheet] .wofex-qr-card h3 {
        margin: 0 0 1mm;
        color: #151118;
        font-size: 14pt;
        line-height: 1.05;
    }

    [data-qr-print-sheet] .wofex-qr-card p {
        margin: 0;
        color: #514b58;
        font-size: 8pt;
        line-height: 1.15;
    }
}

.wofex-dialog {
    width: min(100% - 32px, 500px);
    padding: 0;
    border: 0;
    border-radius: 24px;
    color: var(--text);
    background: var(--white);
    box-shadow: 0 32px 90px rgba(9, 6, 8, 0.28);
}

.wofex-dialog::backdrop {
    background: rgba(9, 6, 8, 0.62);
    backdrop-filter: blur(5px);
}

.wofex-dialog form {
    padding: 38px;
    text-align: center;
}

.wofex-dialog-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 18px;
    color: var(--red);
    background: rgba(217, 37, 29, 0.09);
}

.wofex-dialog h2 {
    margin: 0;
    color: var(--ink);
}

.wofex-dialog p {
    margin: 16px 0 26px;
    color: var(--muted);
    line-height: 1.65;
}

.wofex-dialog p strong {
    color: var(--ink);
}

.wofex-dialog-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-strip {
    padding: 58px 0;
    border-block: 1px solid var(--line);
}

.quote-grid {
    gap: 24px;
}

.quote-grid h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.quote-grid p {
    color: var(--muted);
    font-weight: 800;
}

.trust-strip {
    padding: 26px 0;
    background: #f6f7fb;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--muted);
}

.trust-row strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    white-space: nowrap;
}

.trust-row i {
    width: 18px;
    color: var(--red);
}

.eyebrow [data-lucide],
.btn [data-lucide] {
    width: 18px;
    height: 18px;
}

.floating-badge [data-lucide],
.feature-card [data-lucide],
.tech-item [data-lucide],
.mini-feature-grid [data-lucide],
.contact-list [data-lucide],
.check-list [data-lucide],
.compare-table [data-lucide],
.trust-row [data-lucide] {
    color: var(--red);
}

.feature-card > [data-lucide],
.tech-item > [data-lucide],
.mini-feature-grid article > [data-lucide] {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 12px;
    background: rgba(217, 37, 29, 0.08);
}

.contact-list [data-lucide] {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 14px;
    background: rgba(217, 37, 29, 0.08);
}

.check-list [data-lucide],
.compare-table [data-lucide] {
    flex: 0 0 auto;
}

.spec-row [data-lucide],
.catalog-body p [data-lucide] {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.trust-row [data-lucide] {
    width: 18px;
    height: 18px;
}

.site-footer {
    padding: 64px 0 36px;
    color: var(--white);
    background: #050102;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 72px;
    align-items: start;
}

.footer-brand p {
    max-width: 360px;
    color: #8991ab;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    gap: 92px;
}

.footer-links h3 {
    color: #8991ab;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-links a {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #6f768e;
}

.footer-bottom div {
    display: flex;
    gap: 28px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.uv-assistant {
    position: fixed;
    right: 26px;
    bottom: 18px;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}

.uv-mascot-button,
.uv-teaser,
.uv-chat {
    pointer-events: auto;
}

.uv-mascot-button {
    position: relative;
    width: 112px;
    height: 138px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 13px 15px rgba(55, 5, 9, 0.22));
    transition: transform 0.24s ease, filter 0.24s ease;
}

.uv-mascot-button:hover {
    transform: translateY(-5px) rotate(-1deg);
    filter: drop-shadow(0 18px 18px rgba(55, 5, 9, 0.28));
}

.uv-mascot-button:focus-visible,
.uv-teaser:focus-visible,
.uv-chat button:focus-visible,
.uv-chat input:focus-visible {
    outline: 3px solid rgba(217, 37, 29, 0.3);
    outline-offset: 3px;
}

.uv-mascot-button img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.uv-mascot-glow {
    position: absolute;
    right: 4px;
    bottom: 2px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 37, 29, 0.18), rgba(217, 37, 29, 0));
}

.uv-online {
    position: absolute;
    z-index: 3;
    right: 6px;
    bottom: 17px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: #27c76f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.uv-teaser {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    padding: 11px 14px;
    border: 1px solid rgba(217, 37, 29, 0.16);
    border-radius: 16px 16px 4px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 35px rgba(21, 17, 24, 0.15);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(14px);
    animation: uv-teaser-in 0.5s 1s both;
}

.uv-teaser [data-lucide] {
    width: 16px;
    height: 16px;
    color: var(--red);
}

.uv-chat {
    position: absolute;
    right: 12px;
    bottom: 142px;
    width: min(390px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(230, 233, 241, 0.96);
    border-radius: 24px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 80px rgba(30, 10, 14, 0.22);
    backdrop-filter: blur(20px);
    transform-origin: right bottom;
    animation: uv-chat-in 0.22s ease-out both;
}

.uv-chat[hidden],
.uv-teaser[hidden] {
    display: none;
}

.uv-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 12px 14px;
    color: var(--white);
    background: linear-gradient(135deg, #a70f13, var(--red));
}

.uv-chat-avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.14);
}

.uv-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 29%;
    transform: scale(1.7);
}

.uv-chat-header > div:nth-child(2) {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.uv-chat-header strong {
    font-size: 1rem;
}

.uv-chat-header span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
}

.uv-chat-header span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #65ef9d;
}

.uv-chat-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.uv-chat-close [data-lucide],
.uv-chat-form [data-lucide] {
    width: 18px;
    height: 18px;
}

.uv-chat-body {
    height: min(280px, calc(100vh - 360px));
    min-height: 190px;
    overflow-y: auto;
    padding: 18px 16px 10px;
    background: linear-gradient(180deg, #fbf8f8, #ffffff);
    scrollbar-width: thin;
}

.uv-message {
    display: flex;
    margin-bottom: 12px;
}

.uv-message > div {
    max-width: 86%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.55;
}

.uv-message-bot > div {
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
    background: var(--white);
    box-shadow: 0 5px 18px rgba(21, 17, 24, 0.05);
}

.uv-message-user {
    justify-content: flex-end;
}

.uv-message-user > div {
    border-bottom-right-radius: 5px;
    color: var(--white);
    background: var(--red);
}

.uv-message a {
    display: table;
    margin-top: 9px;
    color: var(--red-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.uv-chat-suggestions {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 8px 16px 10px;
    scrollbar-width: none;
}

.uv-chat-suggestions::-webkit-scrollbar {
    display: none;
}

.uv-chat-suggestions button {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(217, 37, 29, 0.2);
    border-radius: 999px;
    color: var(--red-dark);
    background: rgba(217, 37, 29, 0.05);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.uv-chat-form {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
}

.uv-chat-form input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--text);
    background: var(--soft);
}

.uv-chat-form input:focus {
    border-color: rgba(217, 37, 29, 0.5);
    background: var(--white);
}

.uv-chat-form button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 13px;
    color: var(--white);
    background: var(--red);
    cursor: pointer;
}

.uv-chat-note {
    margin: 0;
    padding: 0 14px 12px;
    color: #7e8498;
    font-size: 0.64rem;
    text-align: center;
}

.uv-chat-disclosure {
    margin: 0 14px 9px;
    border-top: 1px solid var(--line);
    color: #687087;
    font-size: 0.68rem;
    line-height: 1.45;
}

.uv-chat-disclosure summary {
    padding: 9px 0 3px;
    color: var(--red-dark);
    font-weight: 800;
    cursor: pointer;
}

.uv-chat-disclosure p {
    margin: 5px 0;
}

@keyframes uv-chat-in {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes uv-teaser-in {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1100px) {
    .hero-grid,
    .contact-grid,
    .split-section,
    .process-grid,
    .catalog-top,
    .quote-grid,
    .about-story-grid,
    .beyond-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .product-grid,
    .catalog-grid,
    .statement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid,
    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-controls {
        justify-content: flex-start;
    }

    .about-story-grid,
    .beyond-grid {
        gap: 36px;
    }

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

    .wofex-intro {
        position: static;
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 32px, 1280px);
    }

    .nav-wrap {
        height: 70px;
        justify-content: space-between;
    }

    .brand img {
        width: 160px;
        height: 40px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 61;
    }

    .site-nav {
        position: fixed;
        inset: 70px 16px auto 16px;
        z-index: 60;
        display: grid;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 16px;
        border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(217, 37, 29, 0.08);
        transform: none;
    }

    .nav-cta {
        display: none;
    }

    .section,
    .section-lg {
        padding: 72px 0;
    }

    .page-hero {
        padding: 82px 0 58px;
    }

    .wofex-page.section-lg {
        padding: 32px 0 48px;
    }

    .wofex-layout {
        width: min(100% - 24px, 780px);
    }

    .wofex-form {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .wofex-form-heading {
        margin-bottom: 24px;
    }

    .wofex-form-heading h2 {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .wofex-fieldset {
        margin-bottom: 26px;
    }

    .wofex-fieldset + .wofex-fieldset {
        padding-top: 24px;
    }

    .hero-copy h1,
    .page-hero h1,
    .contact-copy h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .product-stage {
        min-height: 420px;
    }

    .feature-grid,
    .operator-grid,
    .product-grid,
    .faq-grid,
    .mini-feature-grid,
    .catalog-grid,
    .mission-stats,
    .statement-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        grid-template-rows: auto 1fr;
    }

    .catalog-body {
        grid-template-rows: none;
    }

    .catalog-body h2,
    .catalog-body p,
    .spec-row,
    .machine-location-row,
    .payment-row {
        min-height: 0;
    }

    .cta-band,
    .dark-cta,
    .trust-row,
    .footer-grid,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-band,
    .dark-cta {
        padding: 34px 24px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 52px;
    }

    .trust-row {
        display: grid;
        justify-content: start;
    }
}

@media (max-width: 560px) {
    .uv-assistant {
        right: 10px;
        bottom: 8px;
    }

    .uv-mascot-button {
        width: 88px;
        height: 110px;
    }

    .uv-teaser {
        max-width: 150px;
        padding: 9px 11px;
        font-size: 0.74rem;
    }

    .uv-chat {
        position: fixed;
        inset: auto 10px 114px 10px;
        width: auto;
        max-height: calc(100dvh - 130px);
    }

    .uv-chat-body {
        height: min(260px, calc(100dvh - 380px));
        min-height: 150px;
    }

    .catalog-controls {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .search-field input {
        width: 100%;
    }

    .actions,
    .machine-location-row,
    .quote-grid .actions,
    .dark-cta .actions {
        width: 100%;
    }

    .actions .btn,
    .machine-location-row .btn,
    .quote-grid .btn,
    .dark-cta .btn {
        width: 100%;
    }

    .machine-location-row {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-copy p,
    .page-hero p,
    .contact-copy p,
    .split-section p,
    .section-heading p {
        font-size: 1rem;
    }

    .stat-row,
    .tech-grid,
    .form-row,
    .spec-row,
    .dash-metrics {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .wofex-form-heading,
    .wofex-dialog-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wofex-dialog form {
        padding: 28px 20px 22px;
    }

    .about-panel,
    .statement-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .product-image,
    .catalog-image {
        min-height: 230px;
    }

    .process-visual,
    .process-visual img {
        min-height: 330px;
        height: 330px;
    }

    .process-visual figcaption {
        inset: auto 20px 22px;
    }

    .phone-ui {
        right: 4%;
        width: 138px;
        padding: 14px;
    }

    .floating-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .secondary-machine {
        display: none;
    }

    .dashboard-window {
        grid-template-columns: 52px 1fr;
    }

    .dash-content {
        padding: 18px;
    }

    .footer-links {
        display: grid;
        gap: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
