:root {
    --bg-main: #040b13;
    --bg-mid: #0b1b2b;
    --bg-card: rgba(11, 26, 40, 0.82);
    --bg-card-soft: rgba(15, 34, 51, 0.66);
    --text-main: #eef4ff;
    --text-soft: #b9c8db;
    --gold: #f0c977;
    --gold-strong: #dbad4f;
    --line: rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.08);
    --glow: 0 28px 60px rgba(0, 0, 0, 0.45);
    --radius-lg: 30px;
    --radius-md: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    background: radial-gradient(circle at 15% -10%, #1d3852 0%, transparent 42%),
        radial-gradient(circle at 90% 20%, rgba(216, 173, 79, 0.22) 0%, transparent 32%),
        linear-gradient(140deg, var(--bg-main), var(--bg-mid) 55%, #091827 100%);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

.ambient-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.8px);
    opacity: 0.55;
    animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-a {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(240, 201, 119, 0.44), rgba(240, 201, 119, 0));
    left: -70px;
    top: 80px;
}

.orb-b {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(90, 146, 199, 0.38), rgba(90, 146, 199, 0));
    right: -120px;
    top: 120px;
    animation-duration: 24s;
}

.orb-c {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(112, 156, 217, 0.2), rgba(112, 156, 217, 0));
    left: 32%;
    bottom: -160px;
    animation-duration: 28s;
}

.ambient-grid {
    position: absolute;
    inset: -20%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 58px 58px;
    transform: perspective(600px) rotateX(72deg);
    transform-origin: top;
    animation: grid-float 16s linear infinite;
    opacity: 0.25;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.08;
}

p {
    margin: 0;
}

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

.site-header {
    width: min(1240px, calc(100% - 44px));
    margin: 22px auto 0;
    position: sticky;
    top: 12px;
    z-index: 40;
}

.header-shell {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8, 21, 33, 0.88), rgba(12, 30, 47, 0.78));
    backdrop-filter: blur(14px);
    box-shadow: var(--glow);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-text small {
    color: var(--text-soft);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.28s ease;
}

.main-nav a:hover {
    color: var(--text-main);
    border-color: var(--line-soft);
    background: rgba(255, 255, 255, 0.05);
}

.main-nav .cta-link {
    color: #121f2f;
    background: linear-gradient(130deg, #f8d89a 0%, #d7a952 100%);
    font-weight: 600;
}

.main-nav .cta-link:hover {
    background: linear-gradient(130deg, #ffe5b2 0%, #e0b96f 100%);
    border-color: transparent;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    padding: 8px 12px;
    font-family: inherit;
}

.site-main {
    width: min(1240px, calc(100% - 44px));
    margin: 26px auto 60px;
    display: grid;
    gap: 18px;
}

.message-stack {
    display: grid;
    gap: 8px;
}

.message-item {
    border: 1px solid rgba(240, 201, 119, 0.45);
    background: rgba(240, 201, 119, 0.16);
    border-radius: 13px;
    padding: 12px 14px;
    color: #f8e4ba;
}

.hero-zone,
.content-panel,
.page-intro,
.detail-shell,
.contact-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, var(--bg-card) 0%, rgba(9, 21, 34, 0.85) 100%);
    box-shadow: var(--glow);
}

.hero-zone {
    padding: 36px;
    display: grid;
    grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.8fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.hero-zone::after {
    content: "";
    position: absolute;
    inset: auto -12% -50% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 201, 119, 0.32), rgba(240, 201, 119, 0));
    pointer-events: none;
    animation: pulse-mist 7s ease-in-out infinite;
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 15px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.73rem;
    font-weight: 600;
    color: #ffdba0;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    max-width: 17ch;
}

.hero-copy p {
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.hero-visual {
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 10px;
    transform-style: preserve-3d;
}

.hero-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    top: -120px;
    right: -90px;
    background: radial-gradient(circle, rgba(240, 201, 119, 0.45), rgba(240, 201, 119, 0));
    animation: glow-spin 12s linear infinite;
}

.hero-kicker {
    color: #ffe8ba;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-visual h3 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

.hero-visual ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
    line-height: 1.65;
    display: grid;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 12px;
}

.info-tile,
.feature-card,
.step-card,
.contact-card,
.detail-facts article {
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: var(--bg-card-soft);
}

.info-tile {
    padding: 16px;
    display: grid;
    gap: 8px;
    min-height: 112px;
    position: relative;
    overflow: hidden;
}

.info-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.14) 50%, transparent 76%);
    transform: translateX(-120%);
    animation: sheen 5.8s linear infinite;
}

.info-tile strong {
    font-size: 1.7rem;
    color: #ffe1ab;
    position: relative;
    z-index: 1;
}

.info-tile span {
    color: var(--text-soft);
    position: relative;
    z-index: 1;
}

.content-panel {
    padding: 30px;
    display: grid;
    gap: 16px;
}

.panel-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-headline h2 {
    font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.panel-headline > div {
    display: grid;
    gap: 6px;
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 220px) minmax(180px, 220px) auto auto;
    gap: 10px;
}

.filter-grid input,
.filter-grid select,
.field-control {
    width: 100%;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 12px 12px;
    font-family: inherit;
    font-size: 0.93rem;
}

.filter-grid input::placeholder,
.field-control::placeholder {
    color: #acc0d6;
}

.filter-grid input:focus,
.filter-grid select:focus,
.field-control:focus {
    outline: 2px solid rgba(240, 201, 119, 0.35);
    border-color: rgba(240, 201, 119, 0.55);
}

.category-tree-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
}

.tree-group {
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    display: grid;
    gap: 8px;
}

.tree-root {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 8px 10px;
    color: #ffe5b5;
    font-weight: 600;
    background: rgba(240, 201, 119, 0.1);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tree-root:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 201, 119, 0.5);
    background: rgba(240, 201, 119, 0.2);
}

.tree-root.is-active {
    border-color: rgba(240, 201, 119, 0.75);
    background: rgba(240, 201, 119, 0.25);
}

.tree-children {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tree-child {
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--text-soft);
    font-size: 0.83rem;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.tree-child:hover {
    border-color: rgba(240, 201, 119, 0.42);
    color: #ffe8bf;
    background: rgba(240, 201, 119, 0.12);
}

.tree-child.is-active {
    border-color: rgba(240, 201, 119, 0.65);
    color: #ffe8bf;
    background: rgba(240, 201, 119, 0.18);
}

.tree-empty {
    font-size: 0.82rem;
    color: #a6bdd5;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}

.equipment-card {
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(12, 30, 45, 0.9), rgba(10, 21, 34, 0.96));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 201, 119, 0.45);
}

.card-image {
    position: relative;
    height: 188px;
    background: #0c1f31;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover .card-image img {
    transform: scale(1.06);
}

.image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--text-soft);
    padding: 14px;
    text-align: center;
}

.chip {
    position: absolute;
    left: 10px;
    bottom: 10px;
    margin: 0;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(240, 201, 119, 0.18);
    border: 1px solid rgba(240, 201, 119, 0.42);
    color: #ffe7bc;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-body {
    padding: 14px;
    display: grid;
    gap: 9px;
    flex: 1;
}

.card-body h3 {
    font-size: 1.28rem;
}

.card-body p {
    color: var(--text-soft);
    line-height: 1.5;
}

.small-muted {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.card-actions,
.detail-actions,
.hero-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.card-actions {
    margin-top: auto;
}

.btn {
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn.small {
    padding: 9px 13px;
    font-size: 0.84rem;
}

.btn-gold {
    background: linear-gradient(130deg, #f5d799 0%, #d4a042 100%);
    color: #111f31;
    box-shadow: 0 10px 24px rgba(212, 160, 66, 0.28);
}

.btn-gold:hover {
    background: linear-gradient(130deg, #fee5b5 0%, #e0b764 100%);
}

.btn-line {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.btn-line:hover {
    border-color: rgba(240, 201, 119, 0.5);
    background: rgba(240, 201, 119, 0.1);
}

.empty-state {
    border: 1px dashed var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    display: grid;
    gap: 8px;
}

.empty-state p {
    color: var(--text-soft);
}

.ticker-wrap {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(6, 16, 25, 0.84);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 12px;
    padding: 11px 0;
    animation: ticker-scroll 24s linear infinite;
}

.ticker-track span {
    border: 1px solid rgba(240, 201, 119, 0.35);
    background: rgba(240, 201, 119, 0.12);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.84rem;
    color: #ffe6bb;
}

.page-intro {
    padding: 28px 30px;
    display: grid;
    gap: 12px;
}

.page-intro h1 {
    font-size: clamp(1.95rem, 4.5vw, 3rem);
}

.page-intro p {
    color: var(--text-soft);
    line-height: 1.68;
    max-width: 72ch;
}

.feature-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.feature-card,
.step-card {
    padding: 16px;
    display: grid;
    gap: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 201, 119, 0.45);
}

.feature-card h3,
.step-card h3 {
    font-size: 1.34rem;
}

.feature-card p,
.step-card p {
    color: var(--text-soft);
    line-height: 1.62;
}

.step-card span {
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(240, 201, 119, 0.42);
    background: rgba(240, 201, 119, 0.15);
    color: #ffe7bd;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 4px 9px;
}

.price-note {
    color: #ffe1a8;
    font-weight: 500;
}

.detail-shell {
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
    gap: 16px;
}

.detail-gallery {
    display: grid;
    gap: 10px;
}

.gallery-main {
    min-height: 360px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: #0a1a2a;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(4, 10, 16, 0.64);
    backdrop-filter: blur(6px);
    color: #f5d79c;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.gallery-nav:hover {
    background: rgba(240, 201, 119, 0.23);
    border-color: rgba(240, 201, 119, 0.5);
}

.gallery-nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84px, 106px);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.gallery-thumb {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    min-height: 72px;
    transition: border-color 0.22s ease, transform 0.22s ease;
}

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

.gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 201, 119, 0.45);
}

.gallery-thumb.is-active {
    border-color: rgba(240, 201, 119, 0.8);
    box-shadow: 0 0 0 1px rgba(240, 201, 119, 0.45);
}

.detail-media {
    min-height: 360px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: #0a1a2a;
    overflow: hidden;
    transform-style: preserve-3d;
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.detail-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.detail-facts article {
    padding: 12px;
    display: grid;
    gap: 6px;
}

.detail-facts span {
    color: var(--text-soft);
    font-size: 0.81rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-facts strong {
    color: #ffe8be;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-text {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-shell {
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(240px, 0.8fr);
    gap: 14px;
}

.contact-form-wrap {
    display: grid;
    gap: 12px;
}

.contact-form {
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    display: grid;
    gap: 10px;
}

.field-label {
    display: grid;
    gap: 6px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.field-error {
    margin: -3px 0 4px;
    color: #ffb8b8;
    font-size: 0.82rem;
}

.highlight-note {
    border: 1px solid rgba(240, 201, 119, 0.42);
    border-radius: 12px;
    background: rgba(240, 201, 119, 0.12);
    padding: 10px 12px;
    line-height: 1.5;
    color: #ffe7bc;
}

.highlight-note a {
    text-decoration: underline;
}

.contact-side {
    display: grid;
    gap: 12px;
}

.contact-card {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.contact-card h3 {
    font-size: 1.4rem;
}

.contact-card p {
    color: var(--text-soft);
    line-height: 1.6;
}

.policy-block {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
}

.policy-block p {
    color: var(--text-soft);
    line-height: 1.62;
}

.site-footer {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto 24px;
}

.footer-shell {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(8, 20, 31, 0.9), rgba(13, 31, 48, 0.8));
    box-shadow: var(--glow);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.footer-shell h4 {
    font-size: 1.36rem;
    margin-bottom: 7px;
}

.footer-shell p {
    color: var(--text-soft);
    line-height: 1.58;
    margin-bottom: 6px;
}

.footer-shell a {
    color: #ffe0aa;
}

.footer-shell a:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@keyframes orb-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(26px, -18px, 0) scale(1.08);
    }
}

@keyframes grid-float {
    from {
        transform: perspective(600px) rotateX(72deg) translateY(0);
    }
    to {
        transform: perspective(600px) rotateX(72deg) translateY(34px);
    }
}

@keyframes sheen {
    0% {
        transform: translateX(-120%);
    }
    60%,
    100% {
        transform: translateX(145%);
    }
}

@keyframes pulse-mist {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.16);
        opacity: 0.35;
    }
}

@keyframes glow-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1040px) {
    .site-header,
    .site-main,
    .site-footer {
        width: min(1240px, calc(100% - 26px));
    }

    .hero-zone {
        grid-template-columns: 1fr;
        padding: 28px;
    }

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

    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .detail-facts {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 760px) {
    .header-shell {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid var(--line-soft);
        padding-top: 12px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 10px 12px;
    }

    .hero-copy h1,
    .page-intro h1 {
        font-size: clamp(1.72rem, 8vw, 2.42rem);
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .detail-facts {
        grid-template-columns: 1fr;
    }

    .gallery-main,
    .gallery-main-image,
    .detail-media {
        min-height: 260px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .content-panel,
    .page-intro,
    .hero-zone,
    .detail-shell,
    .contact-shell,
    .footer-shell {
        padding: 18px;
        border-radius: 18px;
    }

    .card-image {
        height: 172px;
    }
}

/* DubaiMed-inspired homepage layout */
body.home-page {
    --dm-maroon: #9b0058;
    --dm-maroon-dark: #730042;
    --dm-slate: #4c565c;
    --dm-ink: #1a2731;
    --dm-muted: #66747d;
    --dm-border: #dbe3e9;
    --dm-surface: #ffffff;
    --dm-shadow: 0 18px 48px rgba(30, 42, 51, 0.12);
    background: linear-gradient(180deg, #f7f9fb 0%, #edf2f6 55%, #f8fafc 100%);
    color: var(--dm-ink);
    font-family: "Montserrat", "Outfit", sans-serif;
}

body.home-page .ambient-layer {
    display: none;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page h4 {
    font-family: "Montserrat", "Outfit", sans-serif;
}

body.home-page .site-header,
body.home-page .site-main,
body.home-page .site-footer {
    width: min(1320px, calc(100% - 32px));
}

body.home-page .site-header {
    margin-top: 14px;
    top: 8px;
}

body.home-page .header-shell {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(76, 86, 92, 0.24);
    box-shadow: 0 12px 36px rgba(39, 50, 60, 0.14);
}

body.home-page .brand-text strong {
    color: #1d2b35;
}

body.home-page .brand-text small {
    color: #5f6e78;
}

body.home-page .main-nav a {
    color: #1e2e38;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.73rem;
    font-weight: 700;
}

body.home-page .main-nav a:hover {
    color: var(--dm-maroon);
    border-color: rgba(76, 86, 92, 0.2);
    background: rgba(255, 255, 255, 0.7);
}

body.home-page .main-nav .cta-link {
    background: var(--dm-maroon);
    color: #ffffff;
}

body.home-page .main-nav .cta-link:hover {
    background: var(--dm-maroon-dark);
}

body.home-page .menu-toggle {
    border-color: rgba(76, 86, 92, 0.24);
    color: #20303a;
    background: rgba(255, 255, 255, 0.74);
}

body.home-page .message-item {
    border: 1px solid rgba(155, 0, 88, 0.22);
    background: rgba(155, 0, 88, 0.08);
    color: #4e2340;
}

body.home-page .site-main {
    margin-top: 20px;
    gap: 22px;
}

body.home-page .reveal {
    transform: translateY(22px) scale(0.99);
}

.dm-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.dm-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

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

.dm-btn-primary {
    background: var(--dm-maroon);
    border-color: var(--dm-maroon);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(155, 0, 88, 0.24);
}

.dm-btn-primary:hover {
    background: var(--dm-maroon-dark);
    border-color: var(--dm-maroon-dark);
    color: #ffffff;
}

.dm-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.66);
    color: #ffffff;
}

.dm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dm-hero {
    position: relative;
    min-height: 560px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 58px rgba(20, 30, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: #0e1f2d;
}

.dm-hero-track {
    position: relative;
    min-height: inherit;
}

.dm-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.dm-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.dm-hero-media,
.dm-hero-media img,
.dm-hero-fallback {
    width: 100%;
    min-height: 560px;
    height: 100%;
    display: block;
}

.dm-hero-media img {
    object-fit: cover;
}

.dm-hero-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(130deg, #0f2534, #2d4f60);
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
}

.dm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(98deg, rgba(6, 18, 27, 0.86) 16%, rgba(10, 25, 36, 0.5) 48%, rgba(10, 27, 38, 0.08) 100%);
}

.dm-hero-content {
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 44px;
    max-width: 670px;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.dm-hero-content .dm-kicker {
    color: rgba(255, 255, 255, 0.86);
}

.dm-hero-content h1,
.dm-hero-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.95rem, 4.6vw, 3.75rem);
    line-height: 1.08;
}

.dm-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.64;
    margin: 0;
    max-width: 58ch;
}

.dm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.dm-hero-nav {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.24s ease, transform 0.24s ease;
}

.dm-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.32);
}

.dm-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dm-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

.dm-dot.is-active {
    width: 22px;
    background: #ffffff;
}

.dm-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 12px;
}

.dm-metrics article {
    border: 1px solid var(--dm-border);
    border-radius: 18px;
    background: var(--dm-surface);
    padding: 18px 16px;
    display: grid;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(33, 45, 56, 0.08);
}

.dm-metrics strong {
    color: var(--dm-maroon);
    font-size: 1.55rem;
    line-height: 1;
}

.dm-metrics span {
    color: var(--dm-muted);
    line-height: 1.45;
    font-size: 0.9rem;
}

.dm-section {
    border: 1px solid var(--dm-border);
    border-radius: 28px;
    background: var(--dm-surface);
    box-shadow: var(--dm-shadow);
    padding: 30px;
    display: grid;
    gap: 16px;
}

.dm-section-head {
    display: grid;
    gap: 7px;
}

.dm-section-head .dm-kicker {
    color: var(--dm-maroon);
}

.dm-section-head h2 {
    margin: 0;
    color: var(--dm-ink);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.dm-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dm-why-card {
    border: 1px solid var(--dm-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    padding: 17px;
    display: grid;
    gap: 8px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dm-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 0, 88, 0.3);
    box-shadow: 0 14px 24px rgba(30, 43, 53, 0.1);
}

.dm-why-card h3 {
    margin: 0;
    font-size: 1.02rem;
    color: #1f2d37;
}

.dm-why-card p {
    margin: 0;
    color: var(--dm-muted);
    font-size: 0.92rem;
    line-height: 1.56;
}

.dm-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dm-pill {
    border: 1px solid rgba(76, 86, 92, 0.24);
    border-radius: 999px;
    background: #ffffff;
    color: #20303a;
    font-weight: 600;
    font-size: 0.83rem;
    padding: 10px 16px;
    transition: color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dm-pill:hover {
    border-color: rgba(155, 0, 88, 0.46);
    color: var(--dm-maroon);
    box-shadow: 0 8px 20px rgba(155, 0, 88, 0.14);
}

.dm-pill-static {
    opacity: 0.72;
    cursor: default;
}

.dm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 13px;
}

.dm-product-card {
    border: 1px solid var(--dm-border);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.dm-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(155, 0, 88, 0.35);
    box-shadow: 0 18px 30px rgba(29, 41, 50, 0.12);
}

.dm-product-image {
    display: block;
    height: 206px;
    background: #eff4f8;
}

.dm-product-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #edf3f8, #dce6ee);
    color: #5f6c76;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dm-product-card:hover .dm-product-image img {
    transform: scale(1.05);
}

.dm-product-body {
    padding: 14px;
    display: grid;
    gap: 9px;
    flex: 1;
}

.dm-product-category {
    margin: 0;
    color: var(--dm-maroon);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    font-weight: 700;
}

.dm-product-body h3 {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.4;
}

.dm-product-body h3 a {
    color: #1f2f39;
}

.dm-product-body h3 a:hover {
    color: var(--dm-maroon);
}

.dm-product-body p {
    margin: 0;
    color: var(--dm-muted);
    line-height: 1.56;
    font-size: 0.9rem;
}

.dm-product-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.dm-product-foot strong {
    color: #1f2f39;
    font-size: 0.92rem;
    font-weight: 700;
}

.dm-link {
    color: var(--dm-maroon);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dm-link:hover {
    color: var(--dm-maroon-dark);
}

.dm-catalog {
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.dm-filter-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 230px) minmax(180px, 230px) auto auto;
    gap: 10px;
}

body.home-page .dm-filter-grid input,
body.home-page .dm-filter-grid select {
    border: 1px solid var(--dm-border);
    border-radius: 12px;
    background: #ffffff;
    color: #22323c;
    font-family: "Montserrat", "Outfit", sans-serif;
    font-size: 0.88rem;
    padding: 12px;
}

body.home-page .dm-filter-grid input::placeholder {
    color: #84919a;
}

body.home-page .dm-filter-grid input:focus,
body.home-page .dm-filter-grid select:focus {
    outline: 2px solid rgba(155, 0, 88, 0.2);
    border-color: rgba(155, 0, 88, 0.45);
}

.dm-catalog .dm-btn-secondary,
.dm-section .dm-btn-secondary,
.dm-cta .dm-btn-secondary {
    background: #ffffff;
    border-color: rgba(76, 86, 92, 0.34);
    color: #23323c;
}

.dm-catalog .dm-btn-secondary:hover,
.dm-section .dm-btn-secondary:hover,
.dm-cta .dm-btn-secondary:hover {
    border-color: rgba(155, 0, 88, 0.44);
    color: var(--dm-maroon);
}

.dm-product-grid-compact .dm-product-image {
    height: 184px;
}

.dm-cta {
    border: 1px solid #d6e0e7;
    border-radius: 28px;
    box-shadow: var(--dm-shadow);
    background: linear-gradient(120deg, #ffffff, #f4f7fa 64%, #edf2f6);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.dm-cta h2 {
    margin: 0;
    font-size: clamp(1.46rem, 2.8vw, 2.2rem);
    color: var(--dm-ink);
}

.dm-cta p {
    margin: 0;
    color: var(--dm-muted);
    max-width: 66ch;
    line-height: 1.62;
}

.dm-cta > div {
    display: grid;
    gap: 8px;
}

.dm-cta .dm-kicker {
    color: var(--dm-maroon);
}

.dm-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.home-page .empty-state {
    border: 1px dashed #c7d2da;
    border-radius: 16px;
    background: #f8fbfd;
    color: #30414d;
}

body.home-page .empty-state p {
    color: #66747d;
}

body.home-page .site-footer {
    margin-bottom: 18px;
}

body.home-page .footer-shell {
    border: 1px solid var(--dm-border);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(33, 45, 55, 0.1);
}

body.home-page .footer-shell h4 {
    color: #1f2f39;
}

body.home-page .footer-shell p {
    color: #61707a;
}

body.home-page .footer-shell a {
    color: var(--dm-maroon);
}

@media (max-width: 1040px) {
    body.home-page .site-header,
    body.home-page .site-main,
    body.home-page .site-footer {
        width: min(1320px, calc(100% - 24px));
    }

    body.home-page .dm-hero {
        min-height: 520px;
    }

    body.home-page .dm-hero-media,
    body.home-page .dm-hero-media img,
    body.home-page .dm-hero-fallback {
        min-height: 520px;
    }

    body.home-page .dm-hero-content {
        left: 30px;
        right: 30px;
        bottom: 34px;
    }

    body.home-page .dm-metrics {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }

    body.home-page .dm-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-page .dm-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.home-page .dm-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    body.home-page .site-header,
    body.home-page .site-main,
    body.home-page .site-footer {
        width: min(1320px, calc(100% - 20px));
    }

    body.home-page .main-nav {
        border-top-color: rgba(76, 86, 92, 0.2);
    }

    body.home-page .main-nav a {
        font-size: 0.78rem;
    }

    body.home-page .dm-hero {
        min-height: 470px;
        border-radius: 20px;
    }

    body.home-page .dm-hero-media,
    body.home-page .dm-hero-media img,
    body.home-page .dm-hero-fallback {
        min-height: 470px;
    }

    body.home-page .dm-hero-content {
        left: 18px;
        right: 18px;
        bottom: 66px;
        max-width: none;
        gap: 11px;
    }

    body.home-page .dm-hero-content h1,
    body.home-page .dm-hero-content h2 {
        font-size: clamp(1.62rem, 7.6vw, 2.34rem);
    }

    body.home-page .dm-hero-nav {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: space-between;
    }

    body.home-page .dm-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.36rem;
    }

    body.home-page .dm-section,
    body.home-page .dm-cta {
        border-radius: 18px;
        padding: 18px;
    }

    body.home-page .dm-metrics {
        grid-template-columns: 1fr;
    }

    body.home-page .dm-why-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .dm-filter-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .dm-product-image {
        height: 184px;
    }
}

/* DubaiMed-style homepage v2 */
body.home-page {
    --dbm-maroon: #9b0058;
    --dbm-maroon-soft: #e62090;
    --dbm-ink: #111827;
    --dbm-text: #374151;
    --dbm-muted: #6b7280;
    --dbm-border: #e5e7eb;
    --dbm-surface: #ffffff;
    --dbm-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
    background: #ffffff;
    color: var(--dbm-text);
    font-family: "Montserrat", "Outfit", sans-serif;
}

body.home-page .ambient-layer {
    display: none;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page h4 {
    font-family: "Montserrat", "Outfit", sans-serif;
}

body.home-page .site-header,
body.home-page .site-main,
body.home-page .site-footer {
    width: min(1320px, calc(100% - 30px));
}

body.home-page .site-header {
    margin-top: 10px;
    top: 8px;
}

body.home-page .header-shell {
    border: 1px solid rgba(76, 86, 92, 0.24);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

body.home-page .brand-text strong {
    color: #111827;
}

body.home-page .brand-text small {
    color: #4b5563;
}

body.home-page .main-nav a {
    color: #111827;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    font-weight: 700;
}

body.home-page .main-nav a:hover {
    color: var(--dbm-maroon);
    border-color: rgba(17, 24, 39, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

body.home-page .main-nav .cta-link {
    background: var(--dbm-maroon);
    color: #ffffff;
}

body.home-page .main-nav .cta-link:hover {
    background: #7f0049;
}

body.home-page .menu-toggle {
    border-color: rgba(76, 86, 92, 0.25);
    background: rgba(255, 255, 255, 0.8);
    color: #111827;
}

body.home-page .site-main {
    margin-top: 16px;
    gap: 0;
}

body.home-page .message-item {
    border: 1px solid rgba(155, 0, 88, 0.22);
    background: rgba(155, 0, 88, 0.08);
    color: #5b153f;
}

.dbm-btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

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

.dbm-btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: #1f2937;
}

.dbm-btn-light:hover {
    background: rgba(255, 255, 255, 0.92);
}

.dbm-btn-dark {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}

.dbm-btn-dark:hover {
    background: #1f2937;
}

.dbm-btn-accent {
    background: var(--dbm-maroon);
    border-color: var(--dbm-maroon);
    color: #ffffff;
}

.dbm-btn-accent:hover {
    background: #7f0049;
    border-color: #7f0049;
}

.dbm-btn-outline,
.dbm-btn-outline-dark {
    background: #ffffff;
    border-color: rgba(17, 24, 39, 0.24);
    color: #111827;
}

.dbm-btn-outline:hover,
.dbm-btn-outline-dark:hover {
    border-color: rgba(155, 0, 88, 0.44);
    color: var(--dbm-maroon);
}

.dbm-hero {
    position: relative;
    min-height: clamp(520px, 80vh, 760px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    background: #0f172a;
}

.dbm-hero-track {
    min-height: inherit;
    position: relative;
}

.dbm-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.dbm-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.dbm-hero-image,
.dbm-hero-image img,
.dbm-fallback {
    width: 100%;
    min-height: clamp(520px, 80vh, 760px);
    height: 100%;
    display: block;
}

.dbm-hero-image img {
    object-fit: cover;
}

.dbm-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(130deg, #1e293b, #334155);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dbm-hero-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 23, 42, 0.66) 10%, rgba(15, 23, 42, 0.42) 42%, rgba(15, 23, 42, 0.14) 100%);
}

.dbm-hero-content {
    position: absolute;
    left: clamp(20px, 4vw, 60px);
    right: clamp(20px, 4vw, 60px);
    bottom: clamp(68px, 9vw, 96px);
    max-width: min(760px, 82vw);
    color: #ffffff;
    z-index: 3;
    display: grid;
    gap: 14px;
}

.dbm-hero-content h1,
.dbm-hero-content h2 {
    margin: 0;
    font-size: clamp(2rem, 5.2vw, 3.8rem);
    line-height: 1.06;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.dbm-hero-content p {
    margin: 0;
    font-size: clamp(0.95rem, 1.8vw, 1.18rem);
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.9);
    max-width: 60ch;
}

.dbm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dbm-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: background 0.24s ease, transform 0.24s ease;
}

.dbm-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-50%) scale(1.04);
}

.dbm-slider-prev {
    left: 14px;
}

.dbm-slider-next {
    right: 14px;
}

.dbm-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dbm-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.dbm-dot.is-active {
    width: 24px;
    background: #ffffff;
}

.dbm-intro,
.dbm-about,
.dbm-achievements,
.dbm-services,
.dbm-categories,
.dbm-products,
.dbm-catalog,
.dbm-testimonials,
.dbm-faq,
.dbm-cta {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dbm-intro {
    padding: 34px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dbm-intro::before,
.dbm-intro::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dbm-intro::before {
    width: 280px;
    height: 280px;
    left: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(155, 0, 88, 0.2), rgba(155, 0, 88, 0));
}

.dbm-intro::after {
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(76, 86, 92, 0.16), rgba(76, 86, 92, 0));
}

.dbm-pill-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(17, 24, 39, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.86);
    color: #111827;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dbm-intro h2 {
    margin: 14px 0 10px;
    color: #111827;
    font-size: clamp(1.58rem, 4.5vw, 3rem);
    line-height: 1.12;
    text-transform: uppercase;
}

.dbm-intro > p {
    margin: 0 auto;
    color: #4b5563;
    max-width: 72ch;
    line-height: 1.68;
}

.dbm-about {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
    gap: 18px;
    padding: 18px;
}

.dbm-about-media {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    min-height: 290px;
    background: #e5e7eb;
}

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

.dbm-about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.02));
}

.dbm-play-badge {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    backdrop-filter: blur(3px);
}

.dbm-about-content {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 6px 6px 6px 4px;
}

.dbm-about-content h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    color: #111827;
    text-transform: uppercase;
}

.dbm-about-content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.66;
}

.dbm-about-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dbm-achievements {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 10px;
}

.dbm-achievements article {
    border: 1px solid var(--dbm-border);
    border-radius: 16px;
    background: #ffffff;
    padding: 16px 14px;
    display: grid;
    gap: 8px;
}

.dbm-achievements strong {
    color: var(--dbm-maroon);
    font-size: 1.5rem;
    line-height: 1;
}

.dbm-achievements span {
    color: #4b5563;
    font-size: 0.88rem;
    line-height: 1.5;
}

.dbm-services,
.dbm-products,
.dbm-catalog,
.dbm-testimonials,
.dbm-faq {
    padding: 28px;
}

.dbm-categories {
    padding: 24px 28px;
}

.dbm-section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.dbm-section-head h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.4rem, 2.8vw, 2.24rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.dbm-section-head p {
    margin: 0;
    color: #6b7280;
    line-height: 1.58;
    max-width: 72ch;
}

.dbm-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dbm-service-card {
    border: 1px solid var(--dbm-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fafafa);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dbm-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(155, 0, 88, 0.32);
    box-shadow: 0 14px 24px rgba(17, 24, 39, 0.09);
}

.dbm-service-image {
    display: block;
    height: 182px;
    background: #e5e7eb;
}

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

.dbm-service-body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.dbm-service-body h3 {
    margin: 0;
    color: #111827;
    font-size: 1.02rem;
    text-transform: uppercase;
}

.dbm-service-body p {
    margin: 0;
    color: #6b7280;
    line-height: 1.55;
    font-size: 0.9rem;
}

.dbm-service-body a {
    color: var(--dbm-maroon);
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.dbm-service-body a:hover {
    color: #7f0049;
}

.dbm-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dbm-pill {
    border: 1px solid rgba(17, 24, 39, 0.24);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 9px 14px;
    transition: color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dbm-pill:hover {
    border-color: rgba(155, 0, 88, 0.44);
    color: var(--dbm-maroon);
    box-shadow: 0 8px 18px rgba(155, 0, 88, 0.1);
}

.dbm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.dbm-product-card {
    border: 1px solid var(--dbm-border);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dbm-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 0, 88, 0.32);
    box-shadow: 0 16px 26px rgba(17, 24, 39, 0.1);
}

.dbm-product-image {
    position: relative;
    display: block;
    height: 200px;
    background: #f3f4f6;
}

.dbm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.dbm-product-card:hover .dbm-product-image img {
    transform: scale(1.05);
}

.dbm-category-pill {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.86);
    color: var(--dbm-maroon);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 5px 10px;
}

.dbm-product-body {
    padding: 14px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.dbm-product-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.dbm-product-body h3 a {
    color: #111827;
}

.dbm-product-body h3 a:hover {
    color: var(--dbm-maroon);
}

.dbm-product-body p {
    margin: 0;
    color: #6b7280;
    line-height: 1.55;
    font-size: 0.9rem;
}

.dbm-product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.dbm-product-footer strong {
    color: #111827;
    font-size: 0.9rem;
}

.dbm-product-footer a {
    color: var(--dbm-maroon);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.dbm-product-footer a:hover {
    color: #7f0049;
}

.dbm-filter-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(170px, 220px) minmax(170px, 220px) auto auto;
    gap: 10px;
    margin-bottom: 14px;
}

body.home-page .dbm-filter-grid input,
body.home-page .dbm-filter-grid select {
    border: 1px solid var(--dbm-border);
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
    font-family: "Montserrat", "Outfit", sans-serif;
    font-size: 0.88rem;
    padding: 12px;
}

body.home-page .dbm-filter-grid input::placeholder {
    color: #9ca3af;
}

body.home-page .dbm-filter-grid input:focus,
body.home-page .dbm-filter-grid select:focus {
    outline: 2px solid rgba(155, 0, 88, 0.18);
    border-color: rgba(155, 0, 88, 0.5);
}

.dbm-product-grid-compact .dbm-product-image {
    height: 176px;
}

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

.dbm-testimonials-grid article {
    border: 1px solid var(--dbm-border);
    border-radius: 16px;
    padding: 16px;
    background: #ffffff;
    display: grid;
    gap: 10px;
}

.dbm-testimonials-grid p {
    margin: 0;
    color: #4b5563;
    line-height: 1.64;
    font-size: 0.92rem;
}

.dbm-testimonials-grid strong {
    color: #111827;
    font-size: 0.9rem;
}

.dbm-faq-list {
    display: grid;
    gap: 8px;
}

.dbm-faq-item {
    border: 1px solid var(--dbm-border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.dbm-faq-item button {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    background: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.dbm-faq-icon {
    color: var(--dbm-maroon);
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.dbm-faq-item.is-open .dbm-faq-icon {
    transform: rotate(45deg);
}

.dbm-faq-panel {
    display: none;
    padding: 0 16px 14px;
    color: #4b5563;
    line-height: 1.64;
    font-size: 0.92rem;
}

.dbm-faq-item.is-open .dbm-faq-panel {
    display: block;
}

.dbm-cta {
    padding: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
}

.dbm-cta h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.36rem, 2.8vw, 2.16rem);
    text-transform: uppercase;
    line-height: 1.2;
}

.dbm-cta p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    max-width: 62ch;
}

.dbm-cta > div {
    display: grid;
    gap: 8px;
}

.dbm-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Internal pages in homepage visual format */
body.home-page .page-intro {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(58px, 9vw, 94px) clamp(20px, 4vw, 60px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(108deg, #0f172a 8%, #1f2937 48%, #334155 100%);
    overflow: hidden;
}

body.home-page .page-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(155, 0, 88, 0.22), rgba(155, 0, 88, 0) 48%),
        radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

body.home-page .page-intro > * {
    position: relative;
    z-index: 1;
    max-width: min(860px, 100%);
}

body.home-page .page-intro .eyebrow,
body.home-page .page-intro .small-muted {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

body.home-page .page-intro h1 {
    margin: 10px 0 12px;
    color: #ffffff;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    text-transform: uppercase;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

body.home-page .page-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    max-width: 72ch;
}

body.home-page .page-intro a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.46);
}

body.home-page .content-panel,
body.home-page .detail-shell,
body.home-page .contact-shell,
body.home-page .feature-grid,
body.home-page .steps-grid {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid #edf2f6;
    padding: 30px;
}

body.home-page .feature-grid,
body.home-page .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

body.home-page .panel-headline h2 {
    margin: 0;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

body.home-page .small-muted {
    color: #6b7280;
}

body.home-page .btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 10px 18px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1;
}

body.home-page .btn.small {
    padding: 8px 13px;
    font-size: 0.7rem;
}

body.home-page .btn-gold {
    background: var(--dbm-maroon);
    border-color: var(--dbm-maroon);
    color: #ffffff;
    box-shadow: none;
}

body.home-page .btn-gold:hover {
    background: #7f0049;
    border-color: #7f0049;
}

body.home-page .btn-line {
    background: #ffffff;
    border-color: rgba(17, 24, 39, 0.24);
    color: #111827;
}

body.home-page .btn-line:hover {
    border-color: rgba(155, 0, 88, 0.44);
    color: var(--dbm-maroon);
    background: #ffffff;
}

body.home-page .filter-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(170px, 220px) minmax(170px, 220px) auto auto;
    gap: 10px;
}

body.home-page .filter-grid input,
body.home-page .filter-grid select {
    border: 1px solid var(--dbm-border);
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    padding: 12px;
    font-size: 0.88rem;
}

body.home-page .filter-grid input::placeholder {
    color: #9ca3af;
}

body.home-page .filter-grid input:focus,
body.home-page .filter-grid select:focus {
    outline: 2px solid rgba(155, 0, 88, 0.18);
    border-color: rgba(155, 0, 88, 0.46);
}

body.home-page .equipment-grid {
    gap: 12px;
}

body.home-page .equipment-card,
body.home-page .feature-card,
body.home-page .step-card,
body.home-page .contact-card,
body.home-page .policy-block,
body.home-page .detail-facts article {
    border: 1px solid var(--dbm-border);
    border-radius: 16px;
    background: #ffffff;
}

body.home-page .equipment-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.home-page .equipment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 0, 88, 0.3);
    box-shadow: 0 16px 24px rgba(17, 24, 39, 0.09);
}

body.home-page .card-image {
    background: #f3f4f6;
}

body.home-page .image-fallback {
    color: #64748b;
}

body.home-page .chip {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #ffffff;
    color: var(--dbm-maroon);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.home-page .card-body h3,
body.home-page .card-body h3 a {
    margin: 0;
    color: #111827;
}

body.home-page .card-body p {
    color: #6b7280;
}

body.home-page .detail-shell {
    grid-template-columns: minmax(280px, 1fr) minmax(310px, 1fr);
    gap: 18px;
    align-items: start;
}

body.home-page .gallery-main,
body.home-page .detail-media {
    border: 1px solid var(--dbm-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
}

body.home-page .gallery-nav {
    border: 1px solid rgba(17, 24, 39, 0.2);
    background: rgba(255, 255, 255, 0.85);
    color: #111827;
}

body.home-page .gallery-nav:hover {
    border-color: rgba(155, 0, 88, 0.4);
    background: #ffffff;
    color: var(--dbm-maroon);
}

body.home-page .gallery-thumb {
    border: 1px solid var(--dbm-border);
    border-radius: 12px;
    background: #ffffff;
}

body.home-page .gallery-thumb:hover {
    border-color: rgba(155, 0, 88, 0.3);
}

body.home-page .gallery-thumb.is-active {
    border-color: rgba(155, 0, 88, 0.7);
    box-shadow: 0 0 0 1px rgba(155, 0, 88, 0.2);
}

body.home-page .detail-content > .chip {
    position: static;
    display: inline-flex;
    width: fit-content;
}

body.home-page .detail-content h2 {
    margin: 0;
    color: #111827;
    text-transform: uppercase;
}

body.home-page .detail-facts span {
    color: #6b7280;
}

body.home-page .detail-facts strong {
    color: #111827;
}

body.home-page .detail-text {
    color: #4b5563;
    line-height: 1.74;
}

body.home-page .price-note {
    color: var(--dbm-maroon);
    font-weight: 600;
}

body.home-page .contact-shell {
    grid-template-columns: minmax(320px, 1.2fr) minmax(250px, 0.8fr);
    gap: 16px;
}

body.home-page .contact-form {
    border: 1px solid var(--dbm-border);
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
}

body.home-page .field-label {
    color: #374151;
}

body.home-page .contact-form input,
body.home-page .contact-form textarea,
body.home-page .contact-form select {
    width: 100%;
    border: 1px solid var(--dbm-border);
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    padding: 12px;
    font-family: inherit;
    font-size: 0.9rem;
}

body.home-page .contact-form input:focus,
body.home-page .contact-form textarea:focus,
body.home-page .contact-form select:focus {
    outline: 2px solid rgba(155, 0, 88, 0.18);
    border-color: rgba(155, 0, 88, 0.48);
}

body.home-page .field-error {
    color: #b91c1c;
}

body.home-page .highlight-note {
    border: 1px solid rgba(155, 0, 88, 0.24);
    border-radius: 12px;
    background: rgba(155, 0, 88, 0.08);
    color: #5b153f;
}

body.home-page .contact-card h3,
body.home-page .feature-card h3,
body.home-page .step-card h3 {
    margin: 0;
    color: #111827;
}

body.home-page .contact-card p,
body.home-page .feature-card p,
body.home-page .step-card p,
body.home-page .policy-block p {
    color: #6b7280;
    line-height: 1.62;
}

body.home-page .step-card span {
    border: 1px solid rgba(155, 0, 88, 0.24);
    background: rgba(155, 0, 88, 0.09);
    color: var(--dbm-maroon);
}

@media (max-width: 1100px) {
    body.home-page .site-header,
    body.home-page .site-main,
    body.home-page .site-footer {
        width: min(1320px, calc(100% - 22px));
    }

    .dbm-about {
        grid-template-columns: 1fr;
    }

    .dbm-achievements {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }

    .dbm-service-grid {
        grid-template-columns: 1fr;
    }

    .dbm-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dbm-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .dbm-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    body.home-page .detail-shell,
    body.home-page .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.home-page .site-header,
    body.home-page .site-main,
    body.home-page .site-footer {
        width: min(1320px, calc(100% - 16px));
    }

    .dbm-hero {
        border-radius: 0;
        min-height: 470px;
    }

    .dbm-hero-image,
    .dbm-hero-image img,
    .dbm-fallback {
        min-height: 470px;
    }

    .dbm-hero-content {
        bottom: 74px;
        max-width: none;
        gap: 11px;
    }

    .dbm-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .dbm-intro,
    .dbm-about,
    .dbm-achievements,
    .dbm-services,
    .dbm-categories,
    .dbm-products,
    .dbm-catalog,
    .dbm-testimonials,
    .dbm-faq,
    .dbm-cta {
        padding: 18px;
    }

    .dbm-achievements {
        grid-template-columns: 1fr;
    }

    .dbm-filter-grid {
        grid-template-columns: 1fr;
    }

    .dbm-product-image,
    .dbm-service-image {
        height: 176px;
    }

    body.home-page .page-intro {
        padding: 52px 16px;
    }

    body.home-page .content-panel,
    body.home-page .detail-shell,
    body.home-page .contact-shell,
    body.home-page .feature-grid,
    body.home-page .steps-grid {
        padding: 18px;
    }

    body.home-page .feature-grid,
    body.home-page .steps-grid,
    body.home-page .filter-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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