/* Dot Marine Supplier — Logo-based theme v2 */
:root {
    --dm-red: #cf1e27;
    --dm-red-dark: #a81820;
    --dm-navy: #0d1b4a;
    --dm-blue: #3f51b5;
    --dm-blue-deep: #1a237e;
    --dm-cyan: #4fc3f7;
    --dm-red-rgb: 207, 30, 39;
    --dm-blue-rgb: 63, 81, 181;
    --dm-navy-rgb: 13, 27, 74;
    --dm-ink: #0f172a;
    --dm-muted: #64748b;
    --dm-line: #e2e8f0;
    --dm-bg: #f4f7fb;
    --dm-soft: #eef3fa;
    --dm-card: #ffffff;
    --dm-shadow: 0 24px 64px rgba(13, 27, 74, .12);
    --dm-shadow-soft: 0 10px 32px rgba(13, 27, 74, .08);
    --dm-radius: 20px;
    --dm-radius-lg: 28px;
    --dm-transition: .22s cubic-bezier(.4, 0, .2, 1);
    --dm-font: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

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

body {
    margin: 0;
    color: var(--dm-ink);
    background: var(--dm-bg);
    font-family: var(--dm-font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--dm-blue);
    text-decoration: none;
    transition: color var(--dm-transition), transform var(--dm-transition), background var(--dm-transition), border-color var(--dm-transition), box-shadow var(--dm-transition);
}

a:hover { color: var(--dm-red); }
img { max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   HEADER v4 — Logo navy/red theme
   ══════════════════════════════════════ */
.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Topbar */
.site-topbar {
    background: var(--dm-navy);
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    border-bottom: 3px solid var(--dm-red);
    padding: .45rem 0;
}

.site-topbar a {
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
    white-space: nowrap;
}

.site-topbar a:hover { color: var(--dm-cyan); }

.topbar-left {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.topbar-left i { color: var(--dm-red); }

.topbar-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .15rem;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .25);
    margin: 0 .5rem;
}

.topbar-gst {
    display: inline-flex;
    align-items: center;
    padding: .3rem .75rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
}

/* Main header */
.site-header {
    background: #fff;
    border-bottom: 4px solid var(--dm-red);
    box-shadow: 0 4px 24px rgba(13, 27, 74, .08);
    transition: box-shadow var(--dm-transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(13, 27, 74, .14);
}

.site-header .navbar {
    padding: .65rem 0;
}

.navbar-brand {
    gap: .85rem !important;
}

.navbar-brand img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dm-red);
    box-shadow: 0 4px 16px rgba(var(--dm-red-rgb), .25);
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--dm-red-rgb), .35);
}

.brand-text { line-height: 1.1; }

.brand-name {
    color: var(--dm-navy);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -.01em;
}

.brand-line {
    color: var(--dm-red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-tagline {
    color: var(--dm-muted);
    font-size: .68rem;
    font-weight: 600;
    margin-top: .1rem;
}

/* Nav links — pill style */
.site-header .navbar-nav {
    gap: .35rem !important;
}

.site-header .nav-link {
    position: relative;
    color: var(--dm-navy) !important;
    font-weight: 700;
    font-size: .92rem;
    padding: .55rem 1rem !important;
    border-radius: 8px;
    transition: background var(--dm-transition), color var(--dm-transition);
}

.site-header .nav-link::after { display: none; }

.site-header .nav-link:hover {
    background: var(--dm-soft);
    color: var(--dm-blue) !important;
}

.site-header .nav-link.active {
    background: var(--dm-red) !important;
    color: #fff !important;
}

.header-phone {
    display: none;
    align-items: center;
    gap: .5rem;
    padding: .5rem .9rem;
    border-radius: 8px;
    background: var(--dm-soft);
    color: var(--dm-navy);
    font-weight: 700;
    font-size: .88rem;
    white-space: nowrap;
}

.header-phone i { color: var(--dm-red); }

@media (min-width: 1200px) {
    .header-phone { display: inline-flex; }
}

.site-header .btn-brand {
    min-height: 44px;
    padding: .6rem 1.25rem;
    font-size: .88rem;
    border-radius: 8px;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 8px !important;
    background: var(--dm-soft) !important;
    display: grid;
    place-items: center;
}

.navbar-toggler i { color: var(--dm-navy) !important; }

/* ── Buttons ── */
.btn-brand,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--dm-red), var(--dm-red-dark));
    color: #fff !important;
    font-weight: 700;
    font-size: .92rem;
    padding: .75rem 1.4rem;
    box-shadow: 0 8px 24px rgba(var(--dm-red-rgb), .28);
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.btn-brand:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(var(--dm-red-rgb), .35);
    color: #fff !important;
}

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    border: 2px solid var(--dm-line);
    border-radius: 12px;
    background: #fff;
    color: var(--dm-navy);
    font-weight: 700;
    font-size: .92rem;
    padding: .75rem 1.4rem;
}

.btn-outline-brand:hover {
    border-color: var(--dm-blue);
    color: var(--dm-blue);
    transform: translateY(-2px);
    box-shadow: var(--dm-shadow-soft);
}

.btn-blue {
    background: linear-gradient(135deg, var(--dm-blue), var(--dm-blue-deep));
    box-shadow: 0 8px 24px rgba(var(--dm-blue-rgb), .28);
}

.btn-blue:hover {
    box-shadow: 0 14px 32px rgba(var(--dm-blue-rgb), .35);
}

/* ── Sections ── */
.section-pad { padding: clamp(4rem, 7vw, 6rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--dm-red);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: linear-gradient(90deg, var(--dm-red), var(--dm-cyan));
}

.display-title {
    color: var(--dm-navy);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.section-title {
    color: var(--dm-navy);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.lead-copy {
    color: var(--dm-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ── Cards ── */
.premium-card {
    height: 100%;
    border: 1px solid var(--dm-line);
    border-radius: var(--dm-radius);
    background: var(--dm-card);
    box-shadow: var(--dm-shadow-soft);
    transition: transform var(--dm-transition), box-shadow var(--dm-transition), border-color var(--dm-transition);
    overflow: hidden;
}

.premium-card:hover {
    border-color: rgba(var(--dm-blue-rgb), .2);
    box-shadow: var(--dm-shadow);
    transform: translateY(-5px);
}

.icon-tile {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--dm-blue-rgb), .12), rgba(var(--dm-blue-rgb), .06));
    color: var(--dm-blue);
    font-size: 1.2rem;
}

.icon-tile.red {
    background: linear-gradient(135deg, rgba(var(--dm-red-rgb), .14), rgba(var(--dm-red-rgb), .06));
    color: var(--dm-red);
}

/* ── Home: transparent header over hero ── */
/* Home: transparent header over hero */
body.is-home .site-header-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

body.is-home .site-header {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--dm-red);
}

body.is-home .site-header.is-scrolled,
body.is-home .site-header.is-menu-open {
    background: #fff;
    box-shadow: 0 8px 32px rgba(13, 27, 74, .14);
}

body.is-home main { padding-top: 0; }

/* ── Hero Slider (Welcome) ── */
.hero-slider {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--dm-navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease, visibility .9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    transition: transform 10s ease;
}

.hero-slide.is-active .hero-slide__bg { transform: scale(1); }

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 16, 48, .94) 0%, rgba(13, 27, 74, .82) 42%, rgba(26, 35, 126, .62) 100%);
}

.hero-slide__overlay::before {
    position: absolute;
    top: -20%;
    right: -8%;
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--dm-red-rgb), .22), transparent 68%);
    pointer-events: none;
}

.hero-slide__overlay::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    content: "";
    background: linear-gradient(0deg, rgba(8, 16, 48, .55), transparent);
    pointer-events: none;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(6rem, 10vw, 8rem);
    color: #fff;
}

.hero-slide__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-slide__inner {
        grid-template-columns: 1.1fr .9fr;
        gap: 3rem;
    }
}

.hero-slide__text {
    max-width: 640px;
}

.hero-slide__text .hero-welcome-badge,
.hero-slide__text .hero-slide__title,
.hero-slide__text .hero-slide__desc,
.hero-slide__text .hero-slide__actions,
.hero-slide__text .hero-stats {
    opacity: 0;
}

.hero-slide__text.is-animating .hero-welcome-badge,
.hero-slide__text.is-animating .hero-slide__title,
.hero-slide__text.is-animating .hero-slide__desc,
.hero-slide__text.is-animating .hero-slide__actions,
.hero-slide__text.is-animating .hero-stats {
    animation: heroTextIn .7s ease forwards;
}

.hero-slide__text.is-animating .hero-slide__title { animation-delay: .1s; }
.hero-slide__text.is-animating .hero-slide__desc { animation-delay: .2s; }
.hero-slide__text.is-animating .hero-slide__actions { animation-delay: .3s; }
.hero-slide__text.is-animating .hero-stats { animation-delay: .4s; }

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    padding: .5rem 1rem .5rem .5rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dm-cyan);
}

.hero-welcome-badge img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .25);
}

.hero-slide__title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    opacity: 0;
}

.hero-slide__title .accent-red { color: var(--dm-red); }
.hero-slide__title .accent-cyan { color: var(--dm-cyan); }

.hero-slide__desc {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    max-width: 540px;
    margin-bottom: 1.75rem;
    opacity: 0;
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    opacity: 0;
}

.hero-slide__actions .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 50px;
    padding: .75rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-slide__actions .btn-hero-outline:hover {
    background: rgba(255, 255, 255, .16);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Logo / visual card on right */
.hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 992px) {
    .hero-visual { display: block; }
}

.hero-visual__card {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 32px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(22px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
    text-align: center;
}

.hero-visual__card::before {
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    padding: 1px;
    content: "";
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-visual__logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, .2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.hero-visual__name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .25rem;
}

.hero-visual__tagline {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-visual__features {
    display: grid;
    gap: .65rem;
    text-align: left;
}

.hero-visual__feature {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

.hero-visual__feature i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--dm-red);
    color: #fff;
    font-size: .8rem;
    flex-shrink: 0;
}

.hero-visual__float {
    position: absolute;
    border-radius: 50%;
    background: rgba(79, 195, 247, .15);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-visual__float--1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-visual__float--2 {
    width: 50px;
    height: 50px;
    bottom: 40px;
    left: -25px;
    background: rgba(var(--dm-red-rgb), .2);
    animation-delay: 2s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Slider controls bar */
.hero-slider__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem clamp(1rem, 4vw, 2rem) 2rem;
    background: linear-gradient(0deg, rgba(8, 16, 48, .85), transparent);
}

.hero-slider__counter {
    font-size: .9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .05em;
    min-width: 60px;
}

.hero-slider__counter .current {
    font-size: 1.4rem;
    color: #fff;
}

.hero-slider__progress-wrap {
    flex: 1;
    max-width: 320px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
}

.hero-slider__progress {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--dm-red), var(--dm-cyan));
    transition: width .1s linear;
}

.hero-slider__nav {
    display: flex;
    gap: .45rem;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    padding: 0;
    transition: all var(--dm-transition);
}

.hero-slider__dot.is-active {
    width: 28px;
    background: var(--dm-red);
}

.hero-slider__arrows {
    display: flex;
    gap: .5rem;
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background var(--dm-transition), border-color var(--dm-transition), transform var(--dm-transition);
}

.hero-slider__arrow:hover {
    background: var(--dm-red);
    border-color: var(--dm-red);
    transform: scale(1.06);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
    opacity: 0;
}

.hero-stat {
    padding: .75rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    min-width: 110px;
}

.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dm-cyan);
    line-height: 1.1;
}

.hero-stat span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 12;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg { width: 100%; height: 70px; }

/* Trust strip below hero */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--dm-line);
    padding: 1.5rem 0;
    margin-top: -1px;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .5rem 0;
}

.trust-strip__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--dm-red-rgb), .1), rgba(var(--dm-blue-rgb), .08));
    color: var(--dm-red);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.trust-strip__item strong {
    display: block;
    color: var(--dm-navy);
    font-size: .92rem;
    font-weight: 800;
}

.trust-strip__item span {
    color: var(--dm-muted);
    font-size: .8rem;
    font-weight: 600;
}

/* Home: services bento */
.services-bento {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-bento {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .services-bento__main {
        grid-row: span 2;
    }
}

.service-bento-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--dm-radius-lg);
    background: #fff;
    border: 1px solid var(--dm-line);
    overflow: hidden;
    height: 100%;
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.service-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow);
}

.service-bento-card--featured {
    background: linear-gradient(145deg, var(--dm-navy), var(--dm-blue-deep));
    border: 0;
    color: #fff;
}

.service-bento-card--featured .lead-copy { color: rgba(255,255,255,.75); }

.service-bento-card__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(var(--dm-blue-rgb), .08);
}

.service-bento-card--featured .service-bento-card__num {
    color: rgba(255, 255, 255, .08);
}

/* Home: about split */
.about-split {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-split { grid-template-columns: 1fr 1fr; }
}

.about-split__images {
    position: relative;
}

.about-split__img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--dm-radius-lg);
    box-shadow: var(--dm-shadow);
}

.about-split__img-sub {
    position: absolute;
    bottom: -24px;
    right: -12px;
    width: 45%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--dm-radius);
    border: 5px solid #fff;
    box-shadow: var(--dm-shadow-soft);
}

.about-split__badge {
    position: absolute;
    top: 24px;
    left: -12px;
    padding: 1.25rem 1.5rem;
    border-radius: var(--dm-radius);
    background: var(--dm-red);
    color: #fff;
    text-align: center;
    box-shadow: 0 16px 40px rgba(var(--dm-red-rgb), .35);
}

.about-split__badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-split__badge span {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Home: category cards */
.category-card {
    position: relative;
    display: block;
    border-radius: var(--dm-radius);
    overflow: hidden;
    height: 220px;
    text-decoration: none !important;
    color: #fff !important;
}

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

.category-card:hover img { transform: scale(1.08); }

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 27, 74, .92) 0%, rgba(13, 27, 74, .2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.category-card__overlay i {
    font-size: 1.5rem;
    color: var(--dm-cyan);
    margin-bottom: .5rem;
}

.category-card__overlay h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

/* Home: process steps */
.process-steps {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); }
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
}

.process-step__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dm-red), var(--dm-blue));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.process-step:not(:last-child)::after {
    display: none;
    content: "";
}

@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        display: block;
        position: absolute;
        top: 2.75rem;
        right: -24px;
        width: 48px;
        height: 2px;
        background: linear-gradient(90deg, var(--dm-red), var(--dm-blue));
    }
}

/* Section header centered */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

/* ── Page Hero v2 (inner pages) ── */
.page-hero--v2 {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 48vh, 480px);
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 6vw, 5rem);
    background: var(--dm-navy);
    color: #fff;
    display: flex;
    align-items: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 16, 48, .93) 0%, rgba(13, 27, 74, .85) 50%, rgba(63, 81, 181, .7) 100%);
}

.page-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero__watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    border-radius: 50%;
    object-fit: cover;
    opacity: .12;
    border: 4px solid rgba(255, 255, 255, .1);
    pointer-events: none;
}

.page-hero__container {
    position: relative;
    z-index: 2;
}

.page-hero__content { max-width: 720px; }

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    padding: .45rem 1rem .45rem .45rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dm-cyan);
}

.page-hero__badge img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.page-hero--v2 h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
    margin-bottom: 0;
}

.page-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.page-hero__wave svg { width: 100%; height: 60px; }

.breadcrumb-lite {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    font-size: .88rem;
}

.breadcrumb-lite a { color: #fff; }
.breadcrumb-lite a:hover { color: var(--dm-cyan); }

/* ── Product Cards ── */
.product-card {
    position: relative;
    text-decoration: none !important;
    color: inherit !important;
}

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dm-soft);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .4s ease;
}

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

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: .3rem .7rem;
    border-radius: 8px;
    background: var(--dm-red);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(13, 27, 74, .55);
    opacity: 0;
    transition: opacity var(--dm-transition);
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__overlay span {
    padding: .6rem 1.2rem;
    border-radius: 10px;
    background: #fff;
    color: var(--dm-navy);
    font-weight: 700;
    font-size: .88rem;
}

.product-card .product-meta {
    color: var(--dm-blue);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.product-card .product-brand {
    display: inline-block;
    padding: .2rem .55rem;
    border-radius: 6px;
    background: var(--dm-soft);
    color: var(--dm-muted);
    font-size: .75rem;
    font-weight: 700;
}

/* ── Product listing toolbar ── */
.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    box-shadow: var(--dm-shadow-soft);
    margin-bottom: 2rem;
}

.products-search {
    flex: 1;
    min-width: 260px;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.products-search .form-control {
    border-radius: 12px;
    border: 2px solid var(--dm-line);
    min-height: 48px;
    padding-left: 2.75rem;
    background: var(--dm-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.1a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat .9rem center / 1rem;
}

.products-count {
    color: var(--dm-muted);
    font-weight: 600;
    font-size: .9rem;
}

.products-count strong { color: var(--dm-navy); }

/* ── Category chips ── */
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--dm-line);
    background: #fff;
    color: var(--dm-muted);
    font-size: .84rem;
    font-weight: 600;
    cursor: default;
}

.category-chip i { color: var(--dm-blue); font-size: .8rem; }

/* ── Contact cards ── */
.contact-card {
    padding: 1.75rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    box-shadow: var(--dm-shadow-soft);
    height: 100%;
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.contact-card__icon.red {
    background: rgba(var(--dm-red-rgb), .1);
    color: var(--dm-red);
}

.contact-card__icon.blue {
    background: rgba(var(--dm-blue-rgb), .1);
    color: var(--dm-blue);
}

.contact-card__icon.navy {
    background: rgba(var(--dm-navy-rgb), .1);
    color: var(--dm-navy);
}

/* ── Brand marquee ── */
.brand-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    background: #fff;
    border-top: 1px solid var(--dm-line);
    border-bottom: 1px solid var(--dm-line);
}

.brand-marquee__track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-marquee__track img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: .85;
    transition: filter var(--dm-transition), opacity var(--dm-transition);
}

.brand-marquee__track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--dm-navy), var(--dm-blue-deep));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--dm-red-rgb), .25), transparent 70%);
}

.cta-band .eyebrow { color: var(--dm-cyan); }
.cta-band .eyebrow::before { background: var(--dm-cyan); }

/* ── Forms ── */
.form-control,
.form-select {
    min-height: 50px;
    border: 2px solid var(--dm-line);
    border-radius: 12px;
    box-shadow: none;
    font-size: .95rem;
    transition: border-color var(--dm-transition), box-shadow var(--dm-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dm-blue);
    box-shadow: 0 0 0 4px rgba(var(--dm-blue-rgb), .12);
}

textarea.form-control { min-height: 140px; }

.form-label { font-weight: 700; color: var(--dm-navy); font-size: .9rem; }

/* ── Footer ── */
.site-footer {
    background: var(--dm-navy);
    color: rgba(255, 255, 255, .72);
    position: relative;
}

.footer-wave {
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg { width: 100%; height: 50px; }

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .65rem;
}

.footer-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: var(--dm-red);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .6rem;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.footer-link:hover { color: var(--dm-cyan); }

.footer-social {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--dm-red);
    border-color: var(--dm-red);
    color: #fff;
}

.footer-bottom {
    background: rgba(0, 0, 0, .25);
    padding: 1.1rem 0;
    font-size: .86rem;
}

.brand-strip {
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.brand-logo-tile {
    display: grid;
    min-height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    padding: .75rem;
    transition: background var(--dm-transition);
}

.brand-logo-tile:hover { background: rgba(255, 255, 255, .08); }

.brand-logo-tile img {
    max-height: 38px;
    object-fit: contain;
}

/* ── Floating actions ── */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 12px 32px rgba(37, 211, 102, .35);
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 1050;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--dm-blue);
    box-shadow: var(--dm-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dm-transition), visibility var(--dm-transition), transform var(--dm-transition);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dm-red);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Pagination ── */
.pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: .35rem;
}

.pagination .page-link {
    border: 2px solid var(--dm-line);
    border-radius: 10px;
    color: var(--dm-blue);
    font-weight: 700;
    min-width: 42px;
    text-align: center;
}

.pagination .active .page-link,
.page-item.active .page-link {
    border-color: var(--dm-blue);
    background: var(--dm-blue);
    color: #fff;
}

/* ── Feature grid (about/home) ── */
.feature-card {
    padding: 1.75rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    height: 100%;
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow-soft);
}

/* ── Map section ── */
.map-section iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(20%);
    transition: filter var(--dm-transition);
}

.map-section:hover iframe { filter: grayscale(0); }

/* ── Product detail ── */
.detail-hero {
    position: relative;
    overflow: hidden;
    background: var(--dm-navy);
    color: #fff;
}

.detail-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .25;
}

.detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 74, .95), rgba(63, 81, 181, .85));
}

.detail-hero .container { position: relative; z-index: 1; }

.product-stage {
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--dm-radius-lg);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.product-stage img {
    width: 100%;
    height: min(520px, 60vh);
    border-radius: 18px;
    background: #fff;
    object-fit: contain;
}

.detail-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 38px;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
}

.quote-panel { position: sticky; top: 110px; }

.spec-tile {
    padding: 1rem 1.15rem;
    border: 1px solid var(--dm-line);
    border-radius: 14px;
    background: var(--dm-soft);
}

.spec-label {
    color: var(--dm-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.spec-value {
    color: var(--dm-navy);
    font-size: .98rem;
    font-weight: 700;
    word-break: break-word;
}

.process-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dm-red), var(--dm-blue));
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
}

.description-shell {
    color: var(--dm-ink);
    font-size: 1rem;
    line-height: 1.8;
}

.description-shell table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.description-shell table td,
.description-shell table th {
    padding: .85rem;
    border: 1px solid var(--dm-line);
}

.description-shell img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .navbar-brand img { width: 54px; height: 54px; }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.25rem;
        border: 2px solid var(--dm-line);
        border-radius: var(--dm-radius);
        background: #fff;
        box-shadow: var(--dm-shadow-soft);
    }

    .site-topbar .container {
        justify-content: center !important;
        text-align: center;
    }

    .topbar-gst { display: none; }
    .topbar-divider { display: none; }

    .hero-slider__controls {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 1.5rem;
    }

    .hero-slider__progress-wrap {
        order: 5;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: .5rem;
    }

    .hero-slider__counter { display: none; }
    .hero-visual { display: none; }
    .about-split__img-sub { display: none; }
    .quote-panel { position: static; }
    .products-layout { grid-template-columns: 1fr !important; }
    .page-hero__watermark { display: none; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band__actions { justify-content: center; }
}

@media (max-width: 575.98px) {
    .hero-stats { flex-direction: column; }
    .products-toolbar { padding: 1rem; }
}

/* ══════════════════════════════════════
   INNER PAGES — FULL UI v3
   ══════════════════════════════════════ */

/* Products sidebar layout */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 110px;
}

.product-grid {
    margin-right: -14px;
    margin-left: -14px;
}

.product-grid > [class*="col-"] {
    padding-right: 14px;
    padding-left: 14px;
    margin-bottom: 28px;
}

.product-grid .cat-card {
    min-height: 100%;
}

.sidebar-card {
    padding: 1.5rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    box-shadow: var(--dm-shadow-soft);
    margin-bottom: 1.25rem;
}

.sidebar-card__title {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--dm-navy);
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--dm-soft);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    border-radius: 10px;
    color: var(--dm-muted);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .25rem;
    transition: background var(--dm-transition), color var(--dm-transition);
}

.sidebar-link:hover,
.sidebar-link.is-active {
    background: var(--dm-soft);
    color: var(--dm-blue);
}

.sidebar-link i { width: 18px; color: var(--dm-red); font-size: .85rem; }

.sidebar-contact {
    padding: 1.25rem;
    border-radius: var(--dm-radius);
    background: linear-gradient(145deg, var(--dm-navy), var(--dm-blue-deep));
    color: #fff;
    text-align: center;
}

.sidebar-contact img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.2);
    margin-bottom: .75rem;
}

.sidebar-contact p {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 1rem;
}

/* Product card v2 */
.product-card-v2 {
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    overflow: hidden;
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    height: 100%;
}

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

.product-card-v2__img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dm-soft);
}

.product-card-v2__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-card-v2:hover .product-card-v2__img img { transform: scale(1.07); }

.product-card-v2__body { padding: 1.15rem; }

.product-card-v2__sku {
    display: inline-block;
    padding: .2rem .55rem;
    border-radius: 6px;
    background: rgba(var(--dm-red-rgb), .1);
    color: var(--dm-red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}

.product-card-v2__title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dm-navy);
    margin-bottom: .65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-card-v2__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid var(--dm-line);
}

/* About page */
.mission-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mission-grid { grid-template-columns: 1fr 1fr; }
}

.mission-card {
    padding: 2rem;
    border-radius: var(--dm-radius-lg);
    border: 1px solid var(--dm-line);
    background: #fff;
    height: 100%;
}

.mission-card--navy {
    background: linear-gradient(145deg, var(--dm-navy), var(--dm-blue-deep));
    border: 0;
    color: #fff;
}

.mission-card--navy .lead-copy { color: rgba(255,255,255,.75); }

.values-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 576px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
    padding: 1.75rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow-soft);
}

.value-card__num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(var(--dm-blue-rgb), .12);
    margin-bottom: .5rem;
}

/* Contact page */
.contact-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-info-card {
    padding: 1.75rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    text-align: center;
    height: 100%;
    transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow-soft);
}

.contact-info-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.4rem;
}

.contact-info-card__icon.red { background: rgba(var(--dm-red-rgb), .1); color: var(--dm-red); }
.contact-info-card__icon.blue { background: rgba(var(--dm-blue-rgb), .1); color: var(--dm-blue); }
.contact-info-card__icon.navy { background: rgba(var(--dm-navy-rgb), .1); color: var(--dm-navy); }

.contact-form-wrap {
    padding: 2rem;
    border-radius: var(--dm-radius-lg);
    background: #fff;
    border: 1px solid var(--dm-line);
    box-shadow: var(--dm-shadow-soft);
}

.map-wrap {
    border-radius: var(--dm-radius-lg);
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--dm-shadow);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

/* Inquiry page */
.inquiry-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .inquiry-layout { grid-template-columns: 1fr 1.4fr; }
}

.inquiry-benefits {
    padding: 2rem;
    border-radius: var(--dm-radius-lg);
    background: linear-gradient(160deg, var(--dm-navy), var(--dm-blue-deep));
    color: #fff;
}

.inquiry-benefit-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .92rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
}

.inquiry-benefit-item:last-child { border-bottom: 0; }

.inquiry-benefit-item i { color: var(--dm-cyan); }

/* Product detail v2 */
.detail-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .detail-layout { grid-template-columns: 1fr 380px; }
}

.detail-gallery {
    position: sticky;
    top: 110px;
    padding: 1.25rem;
    border-radius: var(--dm-radius-lg);
    background: #fff;
    border: 1px solid var(--dm-line);
    box-shadow: var(--dm-shadow-soft);
}

.detail-gallery img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: var(--dm-radius);
    background: var(--dm-soft);
}

.detail-info-card {
    padding: 1.75rem;
    border-radius: var(--dm-radius);
    background: #fff;
    border: 1px solid var(--dm-line);
    margin-bottom: 1.25rem;
}

.detail-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-specs-table tr {
    border-bottom: 1px solid var(--dm-line);
}

.detail-specs-table tr:last-child { border-bottom: 0; }

.detail-specs-table td {
    padding: .85rem 0;
    font-size: .92rem;
}

.detail-specs-table td:first-child {
    color: var(--dm-muted);
    font-weight: 700;
    width: 38%;
}

.detail-specs-table td:last-child {
    color: var(--dm-navy);
    font-weight: 700;
}

/* CTA band inner */
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band__text p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
    max-width: 560px;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-box {
    padding: 1.25rem;
    border-radius: var(--dm-radius);
    background: var(--dm-soft);
    text-align: center;
    border: 1px solid var(--dm-line);
}

.stat-box strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dm-red);
    line-height: 1.1;
}

.stat-box span {
    font-size: .78rem;
    font-weight: 700;
    color: var(--dm-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Form alert */
.alert-dm {
    border-radius: 12px;
    border: 0;
    font-weight: 600;
    font-size: .92rem;
}
