: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,
.testimonial-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,
.testimonial-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,
.testimonial-card,
.faq-card,
.mini-feature-grid article {
    padding: 28px;
}

.feature-card:hover,
.testimonial-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,
.testimonial-card h3,
.faq-card h3,
.tech-item h3,
.mini-feature-grid h3,
.product-card h2,
.catalog-card h2 {
    color: var(--ink);
}

.feature-card p,
.testimonial-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;
}

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

.stars {
    color: var(--red);
    font-weight: 900;
    letter-spacing: 2px;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.person span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, var(--red), #101010);
    font-weight: 900;
}

.person small {
    display: block;
    color: var(--muted);
}

.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));
}

.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-panel {
    padding: 36px;
}

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

.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 {
    padding: 42px;
}

.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;
}

.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 {
    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 h2 {
    margin: 8px 0;
}

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

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

.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: flex;
    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;
    margin-top: 18px;
    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);
}

.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;
}

.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 {
        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;
    }
}

@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;
    }

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

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

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

    .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) {
    .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;
    }

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

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

    .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;
    }
}
