:root {
    --header-height: 86px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --brand-bg: #f5f6f8;
    --brand-dark: #122130;
    --brand-accent: #0d8f84;
    --brand-accent-2: #165ca8;
    --brand-text: #2a3742;
    --brand-muted: #667784;
    --card-shadow: 0 14px 30px rgba(18, 33, 48, 0.09);
    --line-soft: rgba(255, 255, 255, 0.16);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-text);
    background: radial-gradient(circle at 0% 0%, #eef2f7 0%, transparent 28%),
        radial-gradient(circle at 100% 0%, #e8f6f3 0%, transparent 30%),
        #f5f6f8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif !important;
}

p {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1200px;
}

main {
    padding-top: var(--header-height);
}

.is-home main {
    padding-top: var(--header-height);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
}

.main-nav {
    background: #fff;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-shell {
    position: relative;
    max-width: 100% !important;
    padding-left: clamp(20px, 4vw, 72px);
    padding-right: clamp(20px, 4vw, 72px);
}

.header-brand {
    position: relative;
    z-index: 3;
    margin-right: 8px;
    min-height: 42px;
}

.header-brand-logo {
    display: block;
    width: clamp(170px, 24vw, 260px);
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-mark-dots {
    width: 16px;
    height: 16px;
    position: relative;
}

.brand-mark-dots .dot {
    position: absolute;
    border-radius: 50%;
}

.brand-mark-dots .dot-a {
    width: 14px;
    height: 14px;
    left: 0;
    top: 0;
    background: #f8ab1a;
}

.brand-mark-dots .dot-b {
    width: 10px;
    height: 10px;
    right: -2px;
    bottom: -2px;
    background: #f43f5e;
}

.brand-mark-dots .dot-c {
    width: 6px;
    height: 6px;
    right: 2px;
    top: 2px;
    background: #f97316;
}

.brand-name-stack {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.9;
}

.is-home .main-nav {
    background: #fff;
    backdrop-filter: blur(8px);
}

.is-inner .main-nav,
.main-nav.is-scrolled {
    background: #fff;
    box-shadow: 0 10px 24px rgba(18, 33, 48, 0.1);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
}

.logo-text {
    font-weight: 700;
    color: #000;
    letter-spacing: 0.1px;
    font-size: 1rem;
}

.logo-subtext {
    font-size: 0.6rem;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: lowercase;
}

.main-nav .nav-link {
    color: #000;
}

.main-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.18);
}

.main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav.is-scrolled .logo-text,
.main-nav.is-scrolled .nav-link,
.is-inner .main-nav .nav-link,
.is-inner .logo-text {
    color: #000;
}

.navbar .nav-link {
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 8px;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand-accent);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 138, 112, 0.3);
}

.header-social {
    gap: 14px;
    margin-right: 28px;
}

.header-social a {
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.main-nav .header-cta {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
    border-radius: 12px;
    padding: 12px 32px;
    font-weight: 600;
    box-shadow: none;
}

.main-nav .header-cta:hover {
    background: linear-gradient(135deg, #0b7d74 0%, #134f90 100%);
    box-shadow: none;
}

.nav-item-products {
    position: relative;
}

.nav-products-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-products-trigger i {
    font-size: 0.66rem;
    transition: transform 0.2s ease;
}

.header-products-mega {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translate(-50%, 12px);
    width: min(1240px, calc(100vw - 28px));
    min-height: 440px;
    padding: 28px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 163, 72, 0.16);
    background: radial-gradient(circle at 0% 0%, rgba(255, 132, 0, 0.12), transparent 35%),
        linear-gradient(160deg, #1a1310 0%, #140f0d 58%, #120e0c 100%);
    box-shadow: 0 24px 60px rgba(6, 6, 8, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1025;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.header-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.header-products-col {
    padding: 18px 20px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-products-col h6 {
    margin: 0 0 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.header-products-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07);
}

.header-products-dot.is-luxira { background: #ffd35f; }
.header-products-dot.is-timber { background: #f7ad49; }
.header-products-dot.is-auto { background: #7ecbff; }
.header-products-dot.is-machcoat { background: #9eb5c8; }
.header-products-dot.is-dcco { background: #ff8453; }
.header-products-dot.is-colour { background: #c889ff; }
.header-products-dot.is-epoxy { background: #82e6de; }
.header-products-dot.is-texture { background: #ff7fbe; }

.header-products-list {
    margin: 0;
    min-height: 180px;
}

.header-products-link-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
}

.header-products-link-item img {
    width: 70px;
    height: 85px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.header-products-link-item span {
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s ease;
    font-weight: 500;
}

.header-products-link-item:hover span,
.header-products-link-item:focus-visible span {
    color: #fff;
}

.header-products-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.71rem;
    color: #ff9f3f;
    font-weight: 600;
}

.header-products-view-all:hover,
.header-products-view-all:focus-visible {
    color: #ffc07c;
}

@media (min-width: 992px) {
    .nav-item-products::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px;
    }

    .nav-item-products:hover > .header-products-mega,
    .nav-item-products:focus-within > .header-products-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .nav-item-products:hover .nav-products-trigger i,
    .nav-item-products:focus-within .nav-products-trigger i {
        transform: rotate(180deg);
    }
}

@media (min-width: 992px) {
    .header-shell {
        display: flex;
        align-items: center;
        min-height: 72px;
    }

    .header-collapse {
        display: flex !important;
        align-items: center;
        flex: 1;
        min-height: 46px;
    }

    .header-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
    }
}

.hero-section {
    padding: 128px 0 88px;
}

.hero-slider-section {
    margin-top: 0;
}

.hero-slider-section .carousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    width: 100%;
}

.hero-slide {
    min-height: clamp(700px, 60vh, 650px);
    display: flex;
    align-items: center;
    padding: 140px clamp(18px, 4vw, 54px) 90px;
    position: relative;
    overflow: hidden;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 20, 34, 0.58) 0%, rgba(8, 20, 34, 0.36) 44%, rgba(8, 20, 34, 0.22) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-slide-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(36px);
}

.hero-slider-section .carousel-item.active .hero-slide-content h1 {
    animation: heroTitleRise 0.8s ease-out 0.15s forwards;
}

@keyframes heroTitleRise {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-indicators {
    bottom: 24px;
    margin: 0;
}

.hero-main-indicators [data-bs-target] {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.hero-main-indicators .active {
    background-color: #ffffff;
}

.hero-wrap {
    background: linear-gradient(124deg, #0f1f32 0%, #0c4c6a 46%, #1f8f85 100%);
    border-radius: 26px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.hero-wrap::before,
.hero-wrap::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: var(--line-soft);
}

.hero-wrap::before {
    width: 360px;
    height: 360px;
    top: -180px;
    right: -120px;
}

.hero-wrap::after {
    width: 250px;
    height: 250px;
    bottom: -120px;
    left: -80px;
}

.hero-wrap h1,
.hero-wrap p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    color: #b8fff5;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hero-outline-btn {
    border-color: #9dd9ea;
    color: #d8f6ff;
    position: relative;
    z-index: 1;
}

.hero-outline-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: #fff;
}

.hero-actions {
    position: relative;
    z-index: 2;
}

.hero-indicators {
    margin-top: 8px;
}

.hero-indicators [data-bs-target] {
    width: 28px;
    height: 5px;
    border: 0;
    border-radius: 99px;
    opacity: 0.55;
    background-color: #a4d8eb;
}

.hero-indicators .active {
    opacity: 1;
    background-color: #ffffff;
}

.hero-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 2;
}

.hero-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.76rem;
    color: var(--brand-accent-2);
    font-weight: 600;
}

.hero-list {
    margin: 0;
    padding-left: 1.1rem;
}

.hero-list li {
    margin-bottom: 8px;
    color: var(--brand-text);
}

.solutions-spotlight-section {
    background: #151312;
    padding-top: clamp(64px, 8vw, 108px) !important;
    padding-bottom: clamp(56px, 7vw, 92px) !important;
}

.solutions-spotlight-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.solutions-spotlight-head {
    margin-bottom: 18px;
}

.solutions-spotlight-title {
    margin: 0;
    color: #e8eef8;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-weight: 800;
    max-width: 560px;
}

.solutions-spotlight-title span {
    background: linear-gradient(110deg, #6fd3ff 0%, #7de7c8 58%, #b6f09c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.solutions-spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solutions-spotlight-item {
    border: 1px solid rgba(173, 196, 224, 0.42);
    background: rgba(20, 32, 48, 0.42);
    padding: clamp(18px, 2.2vw, 28px) clamp(20px, 2.8vw, 30px);
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 44px);
    align-items: center;
}

.solutions-spotlight-item h5 {
    color: #8ed9ff;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-weight: 700;
}

.solutions-spotlight-item p {
    color: #dbe6f4;
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 98%;
}

@media (max-width: 991px) {
    .solutions-spotlight-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .solutions-spotlight-item p {
        max-width: 100%;
    }
}

.category-band {
    margin-top: -36px;
    position: relative;
    z-index: 3;
}

.section-overline {
    display: inline-block;
    margin-bottom: var(--space-2);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #58707f;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d7e2e9;
    font-weight: 500;
    color: #294354;
    box-shadow: 0 6px 15px rgba(18, 33, 48, 0.08);
}

.page-hero {
    padding-top: 56px;
}

.about-hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(22, 92, 168, 0.12), transparent 34%),
        radial-gradient(circle at 88% 88%, rgba(13, 143, 132, 0.1), transparent 36%);
}

.about-hero-shell {
    border-radius: 24px;
    border: 1px solid #d8e5ef;
    background: linear-gradient(145deg, #f7fbff 0%, #edf5fb 56%, #eef7fc 100%);
    padding: clamp(22px, 3.2vw, 38px);
    box-shadow: 0 18px 40px rgba(16, 45, 66, 0.12);
}

.about-overline {
    color: #2f5f83;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-hero .section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.about-hero .text-muted-brand {
    color: #4e6373;
    max-width: 60ch;
    line-height: 1.7;
}

.about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-hero-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #c4d9e8;
    background: rgba(255, 255, 255, 0.86);
    padding: 8px 14px;
    color: #24475f;
    font-size: 0.84rem;
    font-weight: 600;
}

.about-promise-card {
    border: 1px solid rgba(16, 58, 88, 0.14);
    box-shadow: 0 14px 30px rgba(16, 45, 66, 0.12);
}

.about-promise-card h5 {
    color: #133955;
    font-weight: 700;
}

.about-promise-card ul {
    padding-left: 18px;
}

.about-promise-card li {
    margin-bottom: 8px;
}

.about-metrics {
    margin-top: 18px !important;
}

.about-metric-card {
    height: 100%;
    border: 1px solid #d4e2ec;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 33, 48, 0.08);
}

.about-metric-card h4 {
    color: #154f86;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1;
}

.about-metric-card p {
    color: #4b6273;
    font-size: 0.88rem;
    font-weight: 500;
}

.about-core-section {
    background:
        radial-gradient(circle at 0% 100%, rgba(13, 143, 132, 0.08), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(22, 92, 168, 0.08), transparent 34%),
        #ffffff;
}

.about-team-section {
    background: #f8fbfd;
}

.about-team-section .team-card {
    border-top: 4px solid #1e8f86;
    background: linear-gradient(160deg, #ffffff 0%, #f1f7fb 100%);
}

.about-team-section .team-card h5 {
    color: #183650;
    font-weight: 700;
}

.about-cta {
    border-radius: 20px;
    border: 1px solid #d4e3ed;
    background: linear-gradient(140deg, #153e62 0%, #1f5f8d 48%, #189487 100%);
    color: #ffffff;
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 18px 36px rgba(10, 39, 62, 0.25);
}

.about-cta h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.about-cta p {
    color: rgba(238, 246, 255, 0.92);
}

.about-cta .btn-brand {
    background: #ffffff;
    color: #144265;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 24px;
}

.about-cta .btn-brand:hover {
    color: #144265;
    background: #eef6ff;
}

.about-v2 {
    background: #2f2b28;
    color: #f4f7fb;
}

.about-v2-hero {
    max-width: 960px;
    margin: 0 auto;
}

.about-v2-media-wrap {
    border: 1px solid #45515d;
    border-radius: 8px;
    overflow: hidden;
}

.about-v2-media {
    width: 100%;
    height: clamp(280px, 45vw, 460px);
    object-fit: cover;
    display: block;
}

.about-v2-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #8fa2b5;
}

.about-v2-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.about-v2-lead {
    color: #c9d4df;
    line-height: 1.7;
}

.about-v2-note {
    border: 1px solid rgba(222, 160, 94, 0.24);
    background: linear-gradient(145deg, rgba(33, 24, 19, 0.94), rgba(24, 19, 17, 0.94));
    border-radius: 8px;
    padding: 20px;
}

.about-v2-note h3 {
    color: #ffffff;
    font-weight: 700;
}

.about-v2-note p {
    color: #dbc4aa;
    line-height: 1.65;
}

.about-v2-ribbons {
    margin: 34px 0 18px;
    overflow: hidden;
}

.about-v2-ribbon {
    width: 120%;
    margin-left: -10%;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    padding: 16px 18px;
}

.about-v2-ribbon--pink {
    background: #f81b8a;
    color: #ffffff;
    transform: rotate(-2.5deg);
}

.about-v2-ribbon--gold {
    background: #f9a40d;
    color: #ffffff;
    transform: rotate(4deg);
    margin-top: -8px;
}

.about-v2-section-title {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.about-v2-pillar {
    border: 1px solid rgba(222, 160, 94, 0.22);
    border-radius: 0;
    background: linear-gradient(145deg, rgba(34, 24, 18, 0.94), rgba(21, 16, 13, 0.94));
    padding: 18px;
}

.about-v2-pillar h4 {
    color: #fff2e5;
    font-weight: 700;
}

.about-v2-pillar p {
    color: #d6c0a8;
    line-height: 1.6;
}

.about-v2-stat {
    border-radius: 8px;
    background: #f2f4f6;
    color: #1b232d;
    padding: 22px 16px;
    text-align: center;
    height: 100%;
}

.about-v2-stat h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.about-v2-stat p {
    margin: 0;
    font-weight: 600;
    font-size: 0.92rem;
    color: #333f4c;
}

.about-v2-quote {
    background: #e9edf1;
    color: #1f2c39;
    border-radius: 0;
    padding: clamp(20px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-v2-quote p {
    line-height: 1.7;
}

.about-v2-quote h6 {
    font-weight: 700;
}

.about-v2-quote small {
    color: #5a6c7d;
}

.about-v2-pattern {
    border-radius: 0;
    min-height: 260px;
    background:
        radial-gradient(circle at 20% 80%, #d0d7de 0 18%, transparent 19%),
        radial-gradient(circle at 72% 28%, #d0d7de 0 36%, transparent 37%),
        radial-gradient(circle at 90% 78%, #d0d7de 0 23%, transparent 24%),
        #e9edf1;
}

.about-v2-faq-wrap {
    max-width: 760px;
}

.about-v2-faq-lead {
    color: #b8c6d3;
}

.about-v2-faq .accordion-item {
    border: 1px solid rgba(222, 160, 94, 0.24);
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(33, 24, 19, 0.95), rgba(21, 16, 13, 0.95));
}

.about-v2-faq .accordion-button {
    background: linear-gradient(145deg, rgba(33, 24, 19, 0.95), rgba(21, 16, 13, 0.95));
    color: #f5dfc7;
    font-weight: 600;
    box-shadow: none;
}

.about-v2-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, rgba(54, 34, 22, 0.95), rgba(35, 25, 20, 0.95));
    color: #fff7ef;
}

.about-v2-faq .accordion-button::after {
    filter: invert(84%) sepia(35%) saturate(458%) hue-rotate(343deg) brightness(100%) contrast(93%);
}

.about-v2-faq .accordion-body {
    color: #d9c2aa;
    background: rgba(20, 14, 12, 0.96);
}

.mini-glass-card {
    border-radius: 16px;
    border: 1px solid #d6e2ea;
    background: linear-gradient(145deg, #ffffff, #edf3f7);
    box-shadow: 0 8px 20px rgba(18, 33, 48, 0.08);
}

.stat-strip span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d6e2ea;
    background: #fff;
    padding: 10px 16px;
    color: #294354;
    font-size: 0.92rem;
    font-weight: 500;
}

.section-title {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 14px;
}

.text-muted-brand {
    color: var(--brand-muted);
}

.key-features-section {
    background: var(--brand-bg);
}

.key-features-container {
    max-width: 1320px;
}

.key-features-title {
    color: #000;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.key-features-subtitle {
    color: #000;
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.55;
}

.key-feature-card {
    height: 100%;
    min-height: 176px;
    border-radius: 16px;
    border: 1px solid rgba(226, 238, 249, 0.7);
    background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 100%);
    padding: 28px 18px 24px;
    color: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.key-feature-card:hover,
.key-feature-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(148, 163, 184, 0.6);
    background: linear-gradient(160deg, #ffffff 0%, #eef2f7 100%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.key-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 14px;
    border: 1px solid rgba(204, 228, 247, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(145deg, #ffffff 0%, #e8edf3 100%);
}

.key-feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.key-feature-card:hover .key-feature-icon,
.key-feature-card:focus-within .key-feature-icon {
    color: #000;
    border-color: rgba(148, 163, 184, 0.7);
}

.key-feature-card h5 {
    color: #000;
    font-size: clamp(1.2rem, 1.35vw, 1.55rem);
    font-weight: 600;
    line-height: 1.24;
}

.brands-showcase-section {
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background:
        radial-gradient(circle at 8% 12%, rgba(248, 171, 26, 0.15) 0%, transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(244, 63, 94, 0.13) 0%, transparent 30%),
        #2f2b28;
}

.brands-showcase-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56));
    padding-top: clamp(36px, 5vw, 60px) !important;
    padding-bottom: clamp(36px, 5vw, 60px) !important;
}

.brands-showcase-head {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.brands-showcase-badge {
    display: inline-block;
    background: rgba(234, 88, 12, 0.15);
    color: #ffd2ae;
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.brands-showcase-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brands-showcase-gold {
    color: #e6bb64;
}

.brands-showcase-subtitle {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.02rem;
    line-height: 1.8;
}

.brands-showcase-link {
    text-decoration: none;
    display: block;
}

.brands-showcase-card {
    height: 100%;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, background 0.35s ease;
}

.brands-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 171, 26, 0.38);
    background: rgba(255, 255, 255, 0.09);
}

.brands-showcase-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.brands-showcase-dot::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
}

.brands-showcase-card h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

.brands-showcase-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.brands-showcase-dot.is-luxira {
    background: linear-gradient(135deg, rgb(192, 192, 200), rgba(192, 192, 200, 0.53));
}

.brands-showcase-dot.is-timber {
    background: linear-gradient(135deg, rgb(101, 67, 33), rgba(101, 67, 33, 0.53));
}

.brands-showcase-dot.is-auto {
    background: linear-gradient(135deg, rgb(45, 45, 50), rgba(45, 45, 50, 0.53));
}

.brands-showcase-dot.is-machcoat {
    background: linear-gradient(135deg, rgb(70, 90, 120), rgba(70, 90, 120, 0.53));
}

.brands-showcase-dot.is-dcco {
    background: linear-gradient(135deg, rgb(70, 90, 120), rgba(70, 90, 120, 0.53));
}

.brands-showcase-dot.is-colour {
    background: linear-gradient(135deg, rgb(139, 90, 43), rgba(139, 90, 43, 0.53));
}

.brands-showcase-dot.is-epoxy {
    background: linear-gradient(135deg, rgb(102, 102, 102), rgba(102, 102, 102, 0.53));
}

.brands-showcase-dot.is-texture {
    background: linear-gradient(135deg, rgb(139, 90, 43), rgba(139, 90, 43, 0.53));
}

.showcase-image-section {
    background: #d9d9dc;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.showcase-image-section .container-fluid {
    background: #302d2a;
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.showcase-image-frame {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    max-width: 100%;
    height: clamp(220px, 42vw, 620px);
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .showcase-image {
        height: clamp(180px, 46vw, 420px);
    }
}

.zorvanta-marquee-section {
    background: #ffffff;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
    min-height: 92px;
    display: flex;
    align-items: center;
}

.zorvanta-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
}

.zorvanta-marquee__track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: zorvantaMarqueeRTL 28s linear infinite;
}

.zorvanta-marquee__group {
    display: inline-flex;
    align-items: center;
}

.zorvanta-marquee__item {
    color: #2c2f33;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    padding: 24px 16px;
    display: inline-flex;
    align-items: center;
}

.zorvanta-marquee__sep {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    animation: zorvantaBrushSpin 3.8s linear infinite;
}

.zorvanta-marquee__sep::before {
    content: "";
    width: 28px;
    height: 28px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../images/paint-brush-sep.svg');
}

@keyframes zorvantaBrushSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes zorvantaMarqueeRTL {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .zorvanta-marquee__item {
        font-size: 1.05rem;
        padding: 18px 12px;
    }

    .zorvanta-marquee__sep {
        width: 26px;
        height: 26px;
    }

    .zorvanta-marquee__sep::before {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 767px) {
    .key-feature-card {
        min-height: 156px;
        padding: 24px 16px 20px;
    }

    .key-feature-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
    }
}

.feature-card,
.product-card,
.why-card,
.blog-card,
.testimonial-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}

.insight-panel {
    border-radius: 16px;
    background: linear-gradient(145deg, #fefefe, #edf3f6);
    border: 1px solid #d9e3ea;
    padding: 34px;
}

.insight-list {
    padding-left: 1.2rem;
}

.insight-list li {
    margin-bottom: 10px;
    color: var(--brand-text);
}

.process-step {
    border-radius: 16px;
    border: 1px solid #d9e4ec;
    background: #f9fcfd;
}

.brand-accordion {
    display: flex;
    gap: 12px;
    min-height: 620px;
}

.brand-accordion-section-full {
    margin-top: 0;
}

.brand-accordion-section-full .container-fluid {
    background: #151312;
    padding-left: clamp(14px, 2.8vw, 34px) !important;
    padding-right: clamp(14px, 2.8vw, 34px) !important;
}

.brand-accordion--full {
    width: 100%;
    min-height: 640px;
    gap: 10px;
    border-radius: 0;
    overflow: visible;
}

.brand-accordion--full .brand-accordion__item {
    border-radius: 0;
    box-shadow: none;
    border-right: none;
}

.brand-accordion--full .brand-accordion__item:last-child {
    border-right: none;
}

.brand-accordion__item {
    position: relative;
    flex: 1 1 0;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: flex 0.45s ease, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 12px 24px rgba(18, 33, 48, 0.18);
}

.brand-accordion__item:hover,
.brand-accordion__item:focus-visible,
.brand-accordion__item.is-active {
    flex: 3 1 0;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(18, 33, 48, 0.24);
}

.brand-accordion__item:focus-visible {
    outline: 2px solid #8fd2ea;
    outline-offset: 2px;
}

.brand-accordion__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 20, 32, 0.72) 0%, rgba(7, 20, 32, 0.18) 55%, rgba(7, 20, 32, 0.05) 100%);
    transition: background 0.3s ease;
}

.brand-accordion__item:hover .brand-accordion__overlay,
.brand-accordion__item:focus-visible .brand-accordion__overlay,
.brand-accordion__item.is-active .brand-accordion__overlay {
    background: linear-gradient(to right, rgba(7, 20, 32, 0.82) 0%, rgba(7, 20, 32, 0.42) 42%, rgba(7, 20, 32, 0.08) 100%);
}

.brand-accordion__content {
    position: absolute;
    left: clamp(16px, 2vw, 28px);
    right: 18px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
}

.brand-accordion__title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: clamp(1.05rem, 1.5vw, 1.45rem);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

.brand-accordion__desc {
    color: rgba(240, 246, 250, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0;
    max-height: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, max-height 0.3s ease, transform 0.3s ease;
}

.brand-accordion__item:hover .brand-accordion__desc,
.brand-accordion__item:focus-visible .brand-accordion__desc,
.brand-accordion__item.is-active .brand-accordion__desc {
    opacity: 1;
    max-height: 80px;
    transform: translateY(0);
}

.brand-accordion__item--1 {
    background-image: url('../images/wall-1.png');
}

.brand-accordion__item--2 {
    background-image: url('../images/wall-2.png');
}

.brand-accordion__item--3 {
    background-image: url('../images/wall-3.png');
}

.brand-accordion__item--4 {
    background-image: url('../images/wall-4.png');
}

.brand-accordion__item--5 {
    background-image: url('../images/wall-5.png');
}

.brand-accordion__item--6 {
    background-image: url('../images/wall-6.png');
}

.about-split {
    background: linear-gradient(120deg, #ffffff, #f3f6f8);
    border: 1px solid #dbe5ec;
    border-radius: 20px;
    padding: var(--space-4);
}

.about-split-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.zorvanta-about-section {
    background: #2f2b28;
}

.zorvanta-about-wrap {
    position: relative;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: clamp(10px, 2vw, 20px) 0;
    box-shadow: none;
}

.zorvanta-about-media {
    position: relative;
}

.zorvanta-about-media .about-split-image {
    height: clamp(300px, 33vw, 400px);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(16, 35, 52, 0.18);
}

.zorvanta-about-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 33, 54, 0.82);
    color: #f4f9ff;
    border: 1px solid rgba(171, 197, 226, 0.34);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.zorvanta-about-wrap .section-title {
    max-width: 17ch;
    margin-bottom: 14px;
    color: #ffffff;
}

.zorvanta-about-lead {
    color: rgba(235, 245, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 18px;
}

.zorvanta-about-section .section-overline {
    color: rgba(199, 221, 244, 0.88);
}

.zorvanta-about-points {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.zorvanta-about-points li {
    position: relative;
    padding-left: 20px;
    color: rgba(227, 240, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.zorvanta-about-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e8f86, #165ca8);
}

.zorvanta-about-section-premium {
    padding-top: clamp(64px, 7vw, 96px) !important;
    padding-bottom: clamp(64px, 7vw, 96px) !important;
    background: #f5f6f8;
}

.about-elevated-media-wrap {
    position: relative;
    border-radius: 24px;
}

.about-elevated-image {
    width: 100%;
    height: clamp(340px, 41vw, 480px);
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-elevated-corner {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid rgba(248, 171, 26, 0.58);
    opacity: 0.35;
    pointer-events: none;
}

.about-elevated-stats {
    position: absolute;
    right: -12px;
    bottom: -24px;
    background: linear-gradient(135deg, #f8ab1a 0%, #f97316 48%, #f43f5e 100%);
    color: #fff;
    border-radius: 20px;
    padding: 1.25rem 1.6rem;
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.35);
}

.about-elevated-stats-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1;
    font-weight: 800;
    font-family: 'Manrope', 'Poppins', sans-serif;
}

.about-elevated-stats-label {
    margin-top: 0.32rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.about-elevated-cert {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.about-elevated-cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    background: rgba(234, 88, 12, 0.1);
    font-size: 0.9rem;
}

.about-elevated-cert strong {
    display: block;
    font-size: 0.72rem;
    color: #162430;
    line-height: 1.1;
}

.about-elevated-cert small {
    display: block;
    margin-top: 2px;
    font-size: 0.62rem;
    color: #5b6a78;
    line-height: 1;
}

.about-elevated-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(248, 171, 26, 0.16);
    color: #000;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-elevated-title {
    margin: 0 0 0.72rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-weight: 800;
    color: #000;
}

.about-elevated-lead {
    margin-bottom: 1.7rem;
    color: #000;
    line-height: 1.85;
    font-size: 0.95rem;
}

.about-elevated-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.78rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.about-elevated-feature.is-highlighted,
.about-elevated-feature:hover {
    background: rgba(248, 171, 26, 0.08);
    border-color: rgba(248, 171, 26, 0.18);
    transform: translateY(-2px);
}

.about-elevated-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f59f1a;
    background: rgba(248, 171, 26, 0.14);
    font-size: 1rem;
}

.about-elevated-feature h6 {
    margin: 0 0 0.15rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #000;
}

.about-elevated-feature p {
    margin: 0;
    font-size: 0.76rem;
    color: #000;
    line-height: 1.5;
}

.about-elevated-btn {
    background: linear-gradient(135deg, #e67b2f 0%, #d95d13 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-elevated-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #cf631b 0%, #b94f0c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(191, 85, 19, 0.35);
}

.about-elevated-btn-outline {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1.5px solid #d5dce6;
    color: #2f3b4c;
    transition: all 0.3s ease;
}

.about-elevated-btn-outline:hover {
    color: #1f2a3a;
    border-color: #c8d2df;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(35, 49, 67, 0.14);
}

.zorvanta-advantage-section {
    background: var(--brand-bg);
}

.zorvanta-advantage-head {
    max-width: 760px;
    margin-bottom: clamp(28px, 3.2vw, 44px);
}

.zorvanta-advantage-badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.zorvanta-advantage-title {
    margin: 0;
    color: #000;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-weight: 800;
}

.zorvanta-advantage-line {
    width: 84px;
    height: 4px;
    border-radius: 999px;
    display: inline-block;
    margin: 0.9rem 0 0.8rem;
    background: linear-gradient(90deg, #f8ab1a 0%, #f97316 50%, #f43f5e 100%);
}

.zorvanta-advantage-subtitle {
    color: #000;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.7;
}

.zorvanta-advantage-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #dbe5ef;
    box-shadow: 0 8px 20px rgba(15, 30, 48, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.zorvanta-advantage-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(15, 30, 48, 0.12);
    border-color: #cfdbe7;
}

.zorvanta-advantage-topline {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    border-radius: 0 0 4px 4px;
    opacity: 0.72;
}

.zorvanta-advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.zorvanta-advantage-card h5 {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
}

.zorvanta-advantage-card p {
    margin-bottom: 0;
    font-size: 0.87rem;
    color: #000;
    line-height: 1.7;
}

.zorvanta-advantage-topline.is-green,
.zorvanta-advantage-icon.is-green {
    background: linear-gradient(135deg, #059669, #34d399);
}

.zorvanta-advantage-topline.is-amber,
.zorvanta-advantage-icon.is-amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.zorvanta-advantage-topline.is-blue,
.zorvanta-advantage-icon.is-blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.zorvanta-advantage-topline.is-orange,
.zorvanta-advantage-icon.is-orange {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.zorvanta-advantage-topline.is-teal,
.zorvanta-advantage-icon.is-teal {
    background: linear-gradient(135deg, #0d9488, #5eead4);
}

.zorvanta-advantage-topline.is-red,
.zorvanta-advantage-icon.is-red {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

@media (max-width: 991px) {
    .about-elevated-image {
        height: clamp(300px, 62vw, 420px);
    }

    .about-elevated-stats {
        right: 10px;
        bottom: 10px;
    }

    .about-elevated-cert {
        top: 14px;
        left: 14px;
    }

    .zorvanta-advantage-card {
        padding: 1.6rem;
    }
}

@media (max-width: 575px) {
    .about-elevated-feature {
        padding: 0.68rem;
    }

    .about-elevated-stats {
        padding: 1rem 1.2rem;
    }

    .about-elevated-btn,
    .about-elevated-btn-outline {
        width: 100%;
        text-align: center;
    }

    .about-elevated-btn {
        justify-content: center;
    }

    .zorvanta-advantage-card {
        padding: 1.35rem;
    }
}

.testimonials-showcase-section {
    background: var(--brand-bg);
}

.testimonials-showcase-head {
    max-width: 760px;
    margin: 0 auto clamp(24px, 3vw, 40px);
}

.testimonials-showcase-badge {
    display: inline-block;
    padding: 0.38rem 0.92rem;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonials-showcase-title {
    margin: 0.85rem 0 0.55rem;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #121d27;
    letter-spacing: -0.02em;
}

.testimonials-showcase-line {
    width: 84px;
    height: 4px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.9rem;
    background: linear-gradient(90deg, #f8ab1a 0%, #f97316 52%, #f43f5e 100%);
}

.testimonials-showcase-subtitle {
    max-width: 500px;
    margin: 0 auto;
    color: #5f6f7d;
    line-height: 1.75;
}

.testimonials-showcase-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid #dde6ee;
    background: #ffffff;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.testimonials-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(18, 33, 48, 0.1);
}

.testimonials-showcase-quote {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    font-size: 2rem;
    line-height: 1;
    color: rgba(234, 88, 12, 0.1);
    font-family: Georgia, serif;
}

.testimonials-showcase-stars {
    display: flex;
    gap: 0.22rem;
    margin-bottom: 1rem;
}

.testimonials-showcase-stars i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonials-showcase-card p {
    flex: 1 1 auto;
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    color: #5f6f7d;
    line-height: 1.75;
}

.testimonials-showcase-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #dde6ee;
    padding-top: 1rem;
}

.testimonials-showcase-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.78rem;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #f43f5e);
}

.testimonials-showcase-meta strong {
    display: block;
    color: #152636;
    font-size: 0.85rem;
    font-weight: 700;
}

.testimonials-showcase-meta small {
    display: block;
    color: #677786;
    font-size: 0.72rem;
}

.zorvanta-parallax-cta-section {
    position: relative;
    overflow: hidden;
    background: #2f2b28;
}

.zorvanta-parallax-cta-bg {
    position: absolute;
    inset: 0;
    background: #2f2b28;
}

.zorvanta-parallax-cta-overlay {
    position: relative;
    padding-top: clamp(72px, 8vw, 108px) !important;
    padding-bottom: clamp(72px, 8vw, 108px) !important;
    background: #2f2b28;
}

.zorvanta-parallax-cta-shell {
    z-index: 2;
}

.zorvanta-parallax-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 10rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
}

.zorvanta-parallax-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    padding: 0.35rem 1.2rem;
    font-size: 0.75rem;
    color: #ffd0ac;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.3);
}

.zorvanta-parallax-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.zorvanta-parallax-copy {
    max-width: 550px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.zorvanta-parallax-btn {
    padding: 0.9rem 2.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .zorvanta-parallax-cta-bg {
        background-attachment: scroll;
    }
}

.palette-block {
    height: 150px;
    border-radius: 16px;
    border: 1px solid rgba(18, 33, 48, 0.08);
    box-shadow: 0 10px 20px rgba(18, 33, 48, 0.08);
    display: flex;
    align-items: end;
    padding: 14px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.palette-tone-1 {
    background: #f3ede4;
}

.palette-tone-2 {
    background: #d5dcd7;
}

.palette-tone-3 {
    background: #d9e4eb;
}

.palette-tone-4 {
    background: #cfd7cc;
}

.palette-tone-5 {
    background: #ece6db;
}

.palette-tone-6 {
    background: #d9d0ca;
}

.palette-block span {
    font-size: 0.86rem;
    font-weight: 600;
    color: #2f424d;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 4px 10px;
}

.palette-block:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 26px rgba(18, 33, 48, 0.14);
}

.step-no {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
    font-weight: 600;
}

.team-card {
    border-top: 4px solid #1e8f86;
}

.contact-info-card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, #2a3d52 0%, #233645 100%);
}

.contact-hero .mini-glass-card {
    border: 1px solid rgba(22, 92, 168, 0.2);
    background: linear-gradient(150deg, #ffffff 0%, #eef5fb 100%);
    box-shadow: 0 14px 34px rgba(18, 33, 48, 0.1);
}

.contact-main-section {
    background: #2f2b28;
    padding: 44px 0 62px;
}

.contact-main-grid {
    align-items: stretch;
}

.contact-map-col {
    display: flex;
}

.contact-panel-left {
    display: flex;
    flex-direction: column;
}

.contact-info-grid .contact-info-card {
    border-radius: 16px;
    background: linear-gradient(160deg, #2a3d52 0%, #233645 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-grid .contact-info-card h6 {
    margin-bottom: 6px;
    font-weight: 700;
    color: #e8f4ff;
}

.contact-info-grid .contact-info-card p {
    font-weight: 500;
    color: #b8d4e8;
}

.contact-info-grid .contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(18, 33, 48, 0.13);
}

.contact-form-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: linear-gradient(165deg, #2a3d52 0%, #233645 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
    padding: clamp(20px, 2.6vw, 28px) !important;
}

.contact-form-card:hover {
    transform: none;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.contact-form-head h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #e8f4ff;
}

.contact-form-head p {
    color: #b8d4e8;
    line-height: 1.55;
    font-size: 0.94rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #c9dfed;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.contact-form-card .form-control {
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 11px 13px;
    background: rgba(255, 255, 255, 0.06);
    min-height: 47px;
    color: #ffffff;
}

.contact-form-card textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.contact-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-card .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.2rem rgba(13, 143, 132, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-card .btn-brand {
    border-radius: 999px;
    padding: 11px 24px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.contact-submit-btn {
    width: 100%;
    min-height: 46px;
}

.feature-card:hover,
.product-card:hover,
.why-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(17, 37, 44, 0.12);
}

.product-card:hover img,
.blog-card:hover img {
    transform: scale(1.05);
}

.product-card img,
.blog-card img,
.details-image {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 220px;
    transition: transform 0.35s ease;
}

.price-tag {
    color: var(--brand-accent-2);
    font-weight: 600;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(128deg, #0f4f86 0%, #0b7f76 56%, #1aa18f 100%);
    color: #fff;
    border-radius: 24px;
    padding: clamp(30px, 5vw, 56px) clamp(20px, 6vw, 74px);
    box-shadow: 0 24px 48px rgba(11, 37, 58, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.cta-banner::before {
    width: clamp(220px, 38vw, 440px);
    height: clamp(220px, 38vw, 440px);
    right: -120px;
    top: -150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-banner::after {
    width: clamp(180px, 32vw, 340px);
    height: clamp(180px, 32vw, 340px);
    left: -90px;
    bottom: -125px;
    background: radial-gradient(circle, rgba(132, 237, 216, 0.34) 0%, rgba(132, 237, 216, 0) 72%);
}

.cta-banner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.cta-banner p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(0.96rem, 1.7vw, 1.12rem);
}

.cta-banner .btn-light {
    --cta-btn-bg: #ffffff;
    --cta-btn-text: #0f3f68;
    background: var(--cta-btn-bg);
    color: var(--cta-btn-text);
    border: none;
    border-radius: 999px;
    padding: 11px 26px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(6, 30, 50, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.cta-banner .btn-light:hover,
.cta-banner .btn-light:focus-visible {
    background: #f0f8ff;
    color: #0f3f68;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 30, 50, 0.28);
}

@media (max-width: 767.98px) {
    .cta-banner {
        border-radius: 18px;
        padding: 28px 18px;
    }

    .cta-banner p {
        margin-bottom: 20px;
    }

    .cta-banner .btn-light {
        width: min(100%, 240px);
    }
}

.footer-zorvanta {
    background:
        radial-gradient(1200px 380px at 50% -120px, rgba(70, 44, 28, 0.35), transparent 70%),
        linear-gradient(90deg, rgba(27, 20, 17, 0.95) 0%, rgba(22, 18, 16, 0.92) 50%, rgba(27, 20, 17, 0.95) 100%),
        #181412;
    color: #c89256;
    border-top: 3px solid #cf2e2e;
    box-shadow: inset 0 18px 38px rgba(0, 0, 0, 0.28);
}

.footer-zorvanta h5 {
    color: #f2f2f2;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 1.35rem;
}

.footer-zorvanta-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.24em;
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: #f2f2f2;
    font-weight: 700;
}

.footer-zorvanta-copy {
    color: #c89256;
    opacity: 0.88;
    font-size: 1.06rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.footer-zorvanta a {
    color: #c89256;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    font-size: 1.03rem;
    line-height: 1.85;
}

.footer-zorvanta a:hover {
    color: #f6bf7e;
    transform: translateX(2px);
}

.footer-zorvanta-contact {
    color: #c89256;
    opacity: 0.9;
    font-size: 1.03rem;
    line-height: 1.85;
}

.footer-zorvanta .footer-bottom {
    border-top: 1px solid rgba(201, 146, 86, 0.18);
    color: #b8834e;
    font-size: 1rem;
    margin-top: 2.5rem !important;
    padding-top: 1.3rem !important;
}

@media (max-width: 991.98px) {
    .footer-zorvanta-brand {
        font-size: 1.6rem;
    }

    .footer-zorvanta .footer-bottom {
        gap: 8px;
    }
}

@media (max-width: 767.98px) {
    .footer-zorvanta h5 {
        margin-bottom: 0.95rem;
    }

    .footer-zorvanta a,
    .footer-zorvanta-copy,
    .footer-zorvanta-contact {
        font-size: 0.95rem;
    }
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #d8e3e7;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link:hover {
    color: #fff;
    background: rgba(121, 216, 183, 0.38);
    transform: translateY(-2px);
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5f5ef;
    color: var(--brand-accent-2);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-map {
    position: relative;
    flex: 1 1 auto;
    height: 100%;
    min-height: 540px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 540px;
    border: 0;
    display: block;
}

.contact-main-section .alert {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.contact-main-section .alert-success {
    background: rgba(13, 143, 132, 0.15);
    border-color: rgba(13, 143, 132, 0.3);
    color: #8ffff5;
}

.contact-main-section .alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ff9999;
}

.contact-main-section .alert-danger ul {
    color: #ff9999;
}

.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.32) 60%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
}

.page-header-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: clamp(2.2rem, 5.6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0.5rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.page-header-subtitle {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin: 1rem auto 0;
    max-width: 600px;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .page-header {
        min-height: 280px;
        padding: 60px 20px;
    }

    .page-header-title {
        margin-bottom: 0.8rem;
    }
}

.contact-modern-section {
    background: #f7f8fb;
    padding: 44px 0 62px;
}

.contact-modern-info-card,
.contact-modern-form,
.contact-modern-side-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 14px;
    box-shadow: none;
}

.contact-modern-info-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-modern-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.contact-modern-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-modern-icon-box i {
    font-size: 1.45rem;
}

.contact-modern-icon-call {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.contact-modern-icon-mail {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.contact-modern-icon-visit {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.contact-modern-icon-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact-modern-info-card h6 {
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.contact-modern-info-card a,
.contact-modern-info-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #667085;
}

.contact-modern-form .card-body {
    padding: clamp(24px, 3.1vw, 38px) !important;
}

.contact-modern-form h3 {
    font-family: 'Playfair Display', serif;
    color: #1f2937;
    font-weight: 700;
    font-size: clamp(1.9rem, 2.7vw, 2.5rem);
}

.contact-modern-form p {
    color: #667085;
    font-size: 0.92rem;
}

.contact-modern-form .form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.contact-modern-form .form-control {
    border: 1px solid #d8dee8;
    border-radius: 8px;
    padding: 0.64rem 0.92rem;
    color: #1f2937;
    background: #ffffff;
}

.contact-modern-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-modern-form .form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.16rem rgba(249, 115, 22, 0.18);
}

.contact-modern-form textarea.form-control {
    min-height: 122px;
    resize: vertical;
}

.contact-modern-submit-btn {
    border: none;
    border-radius: 8px;
    padding: 0.72rem 1.4rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.contact-modern-submit-btn:hover,
.contact-modern-submit-btn:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.contact-modern-side-card h5 {
    font-family: 'Playfair Display', serif;
    color: #1f2937;
    font-size: 1.75rem;
    margin-bottom: 0.55rem;
}

.contact-modern-side-card p {
    color: #667085;
}

.contact-modern-social-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #d8dee8;
    color: #4b5563;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-modern-social-link:hover {
    color: #ea580c;
    border-color: #f97316;
}

.contact-modern-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.86rem;
}

.contact-modern-hours-list li:last-child {
    border-bottom: none;
}

.contact-modern-hours-list li span:first-child {
    font-weight: 600;
    color: #111827;
}

.contact-modern-hours-list li span:last-child {
    color: #6b7280;
}

.contact-modern-alert {
    border-radius: 10px;
    border: 1px solid transparent;
}

.contact-modern-alert ul {
    margin: 0;
}

@media (max-width: 991.98px) {
    .contact-modern-section {
        padding: 34px 0 52px;
    }

    .contact-modern-side-card h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-modern-form .card-body {
        padding: 22px !important;
    }

    .contact-modern-submit-btn {
        width: 100%;
    }
}

.products-catalog-page {
    background: #2f2b28;
    padding: 44px 0 62px;
}

.product-view-page {
    background: #2f2b28;
}

.product-view-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 24px;
}

.product-view-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.58;
    pointer-events: none;
    z-index: 0;
}

.product-view-hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-view-hero h1 {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #20384c;
    font-size: clamp(1.45rem, 2.8vw, 2.25rem);
    line-height: 1.2;
    font-weight: 700;
}

.product-view-can-wrap {
    position: relative;
    width: min(420px, 94%);
    margin: 0 auto;
    padding-bottom: 16px;
}

.product-view-can-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 92%;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #f8f8f8 0%, #dedede 100%);
    box-shadow: 0 4px 0 rgba(255, 255, 255, 0.66) inset, 0 16px 28px rgba(0, 0, 0, 0.24);
}

.product-view-can-wrap img {
    width: min(86%, 340px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.28));
    position: relative;
    z-index: 1;
}

.product-view-content {
    padding: 28px 0 56px;
}

.product-view-description {
    max-width: 980px;
    margin: 0 auto 28px;
    text-align: center;
    color: #d1deee;
    line-height: 1.75;
    font-size: 0.97rem;
}

.product-view-feature-title {
    color: #ffffff;
    text-align: center;
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
}

.product-view-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.product-view-feature-item {
    background: #f2f4f7;
    color: #122130;
    border-radius: 8px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 12px;
}

.product-view-feature-item h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-view-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 18px 18px 10px;
    border-top: 1px solid rgba(195, 216, 240, 0.22);
}

.product-view-cta p {
    color: #d7e3f2;
    margin-bottom: 14px;
}

.products-catalog-shell {
    max-width: 1280px;
}

.products-catalog-head {
    margin-bottom: 45px;
    opacity: 1;
    transform: none;
}

.products-catalog-head h1 {
    color: #f4f8ff;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.products-catalog-head p {
    margin: 0;
    color: #ced8e4;
    font-size: 0.95rem;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    contain: layout style paint;
}

.products-catalog-card {
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 390px;
}

.products-catalog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.72;
    pointer-events: none;
}

.products-catalog-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -58px;
    height: 156px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.26) 45%, rgba(255, 255, 255, 0) 75%);
    pointer-events: none;
}

.products-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(4, 8, 14, 0.36);
}

.products-catalog-card h3 {
    margin: 6px 0 6px;
    font-size: 0.92rem;
    color: #152130;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.products-catalog-link {
    color: #1b2a3b;
    font-size: 0.72rem;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.products-catalog-link:hover,
.products-catalog-link:focus-visible {
    color: #0a1119;
}

.products-catalog-can-wrap {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}

.products-catalog-can-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 76%;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #f8f8f8 0%, #e5e5e5 100%);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.62) inset, 0 8px 14px rgba(0, 0, 0, 0.18);
}

.products-catalog-can-wrap img {
    width: 82%;
    max-width: 226px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Optimize lazy-loaded images to prevent layout shifts */
.products-catalog-can-wrap img[loading="lazy"] {
    opacity: 0.95;
}

.products-catalog-can-wrap img[loading="lazy"][data-loaded="true"] {
    opacity: 1;
}

/* Prevent image loading from affecting layout */
.products-catalog-img {
    content-visibility: auto;
}

.tone-steel {
    background: linear-gradient(155deg, #8191a5 0%, #6b829b 58%, #506478 100%);
}

.tone-beige {
    background: linear-gradient(155deg, #e6c8af 0%, #dcb998 56%, #cfa784 100%);
}

.tone-blush {
    background: linear-gradient(155deg, #ecd9ea 0%, #e2cade 56%, #d8b7d3 100%);
}

.tone-moss {
    background: linear-gradient(155deg, #d8d5aa 0%, #cbc68e 56%, #beb877 100%);
}

.tone-orange {
    background: linear-gradient(155deg, #f3a35f 0%, #ea8b3f 56%, #df7a2f 100%);
}

.tone-violet {
    background: linear-gradient(155deg, #c3a8d3 0%, #b291c6 56%, #a17eb5 100%);
}

.tone-ash {
    background: linear-gradient(155deg, #cac7d1 0%, #b6b2be 56%, #a29dad 100%);
}

.pattern-rays::before {
    background:
        repeating-conic-gradient(from 230deg at 50% 105%, rgba(255, 255, 255, 0.24) 0deg 7deg, rgba(255, 255, 255, 0) 7deg 16deg),
        radial-gradient(circle at 50% -24%, rgba(255, 255, 255, 0.22), transparent 54%);
}

.pattern-sunrise::before {
    background:
        repeating-conic-gradient(from 215deg at 50% 110%, rgba(255, 255, 255, 0.2) 0deg 6deg, rgba(255, 255, 255, 0) 6deg 15deg),
        radial-gradient(circle at 50% 108%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 65%);
}

.pattern-facet::before {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.2) 0 34%, rgba(255, 255, 255, 0) 34% 100%),
        linear-gradient(38deg, rgba(255, 255, 255, 0.16) 0 42%, rgba(255, 255, 255, 0) 42% 100%),
        linear-gradient(320deg, rgba(255, 255, 255, 0.15) 0 26%, rgba(255, 255, 255, 0) 26% 100%);
}

.pattern-rings::before {
    background:
        radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.34) 0 22%, rgba(255, 255, 255, 0) 22% 100%),
        repeating-radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.26) 0 3%, rgba(255, 255, 255, 0) 3% 10%);
}

.pattern-arch::before {
    background:
    radial-gradient(ellipse at 50% 94%, rgba(255, 255, 255, 0) 0 24%, rgba(255, 255, 255, 0.36) 24% 28%, rgba(255, 255, 255, 0) 28% 100%),
    radial-gradient(ellipse at 50% 94%, rgba(255, 255, 255, 0) 0 36%, rgba(255, 255, 255, 0.28) 36% 40%, rgba(255, 255, 255, 0) 40% 100%),
    radial-gradient(ellipse at 50% 94%, rgba(255, 255, 255, 0) 0 48%, rgba(255, 255, 255, 0.2) 48% 52%, rgba(255, 255, 255, 0) 52% 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0 24%, rgba(255, 255, 255, 0) 24% 100%);
}

.pattern-fan::before {
    background:
        repeating-conic-gradient(from 180deg at 50% 100%, rgba(255, 255, 255, 0.22) 0deg 4deg, rgba(255, 255, 255, 0) 4deg 13deg),
        radial-gradient(circle at 50% 112%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 58%);
}

.pattern-smoke::before {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 20% 38%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 48%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.contact-map-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(10, 28, 44, 0.78);
    border: 1px solid rgba(197, 225, 246, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(4px);
    padding: 12px;
}

.contact-map-overlay h6 {
    color: #f2f8ff;
    font-weight: 700;
}

.admin-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% -12%, rgba(93, 78, 255, 0.14) 0%, transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(39, 203, 255, 0.14) 0%, transparent 30%),
        linear-gradient(180deg, #eef1f6 0%, #e8edf3 100%);
    color: #1d2633;
}

.admin-card {
    border: 1px solid #dde3ec;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(19, 31, 46, 0.06);
    background: #ffffff;
}

.admin-topbar {
    background: #ffffff;
    border-bottom: 1px solid #dce3ed;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 25;
    box-shadow: 0 4px 14px rgba(19, 31, 46, 0.06);
}

.admin-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #6d7692;
    font-weight: 700;
}

.admin-title {
    color: #1a2432;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 700;
}

.admin-topbar .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.48rem 0.85rem;
}

.admin-topbar .btn-outline-dark {
    border-color: #d0d8e4;
    color: #334258;
    background: #f8faff;
}

.admin-topbar .btn-outline-dark:hover {
    border-color: #b8c2d1;
    color: #1d2734;
    background: #eef3fb;
}

.admin-dashboard-wrap {
    padding-top: 24px;
    padding-bottom: 44px;
}

.admin-alert {
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 6px 14px rgba(16, 27, 41, 0.08);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #dbe3ef;
    box-shadow: 0 8px 20px rgba(17, 29, 45, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(17, 29, 45, 0.1);
}

.admin-stat-card h6 {
    margin: 10px 0 6px;
    color: #5f6c84;
    font-size: 0.86rem;
    font-weight: 600;
}

.admin-stat-card h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: #1a2534;
    font-weight: 700;
}

.admin-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(89, 77, 255, 0.14), rgba(32, 199, 255, 0.18));
    color: #4a58de;
    font-size: 1.15rem;
    border: 1px solid #d7e0f2;
}

.admin-form-card .form-control,
.admin-form-card .form-select,
.modal-content .form-control {
    border-radius: 10px;
    border-color: #ced7e5;
    background: #fbfdff;
}

.admin-form-card .form-control:focus,
.admin-form-card .form-select:focus,
.modal-content .form-control:focus {
    border-color: #7686ff;
    box-shadow: 0 0 0 0.2rem rgba(118, 134, 255, 0.15);
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    background: #eef1ff;
    color: #4b57d2;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9defc;
}

.admin-form-card .form-label {
    color: #4c5a73;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.38rem;
}

.admin-form-card small {
    color: #7b869c !important;
}

.admin-form-card .btn-brand,
.admin-products-table .btn-outline-primary,
.admin-products-table .btn-outline-danger {
    border-radius: 10px;
}

.admin-form-card .btn-brand {
    padding: 0.62rem 1rem;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(80, 99, 255, 0.24);
}

.admin-products-table thead th {
    border-bottom: 1px solid #dce4ef;
    color: #7b86a2;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    font-weight: 700;
    background: #f6f9fe;
    white-space: nowrap;
}

.admin-products-table td {
    border-bottom: 1px solid #e4eaf3;
    color: #2b3646;
    vertical-align: middle;
}

.admin-products-table tbody tr {
    transition: background-color 0.2s ease;
}

.admin-products-table tbody tr:hover {
    background: #f8fbff;
}

.admin-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #d5deea;
    background: #f2f6fd;
}

.admin-products-table .btn-outline-primary {
    border-color: #bac7ff;
    color: #4a58d8;
}

.admin-products-table .btn-outline-primary:hover {
    background: #4f60e7;
    border-color: #4f60e7;
}

.admin-products-table .btn-outline-danger {
    border-color: #efc2cc;
    color: #d23b58;
}

.admin-products-table .btn-outline-danger:hover {
    background: #d23b58;
    border-color: #d23b58;
}

.admin-card h3 {
    color: #1e2a3a;
    font-weight: 700;
}

.table-responsive {
    border: 1px solid #e0e7f1;
    border-radius: 12px;
    overflow: hidden;
}

.modal-content {
    border-radius: 16px;
    border: 1px solid #d9e1ec;
    box-shadow: 0 20px 40px rgba(16, 28, 44, 0.22);
    background: #fdfefe;
}

.modal-header,
.modal-footer {
    border-color: #e3eaf4;
}

.modal-title {
    color: #1a2435;
    font-weight: 700;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 991px) {
    .header-collapse {
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-menu {
        margin-bottom: 12px;
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }

    .header-menu .nav-item {
        width: 100%;
    }

    .header-menu .nav-link {
        display: block;
        padding: 12px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-products-mega {
        position: static;
        transform: none;
        width: 100%;
        margin: 0;
        display: none !important;
        border-radius: 12px;
        padding: 0;
        box-shadow: none;
    }

    .header-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-products-col {
        padding: 12px;
    }

    .header-actions {
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: flex !important;
        flex-direction: column;
    }

    .main-nav .header-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .navbar .btn-brand {
        margin-top: 10px;
    }

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

    .products-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-section {
        padding: 112px 0 64px;
    }

    .hero-slide {
        min-height: 72vh;
        padding: 118px 16px 72px;
    }

    .hero-wrap {
        padding: 32px 24px;
    }

    .category-band {
        margin-top: -26px;
    }

    .page-hero {
        padding-top: 28px;
    }

    .about-split {
        padding: var(--space-3);
    }

    .about-hero-shell {
        border-radius: 18px;
        padding: 22px;
    }

    .about-split-image {
        height: 280px;
    }

    .brand-accordion {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
    }

    .brand-accordion--full {
        min-height: auto;
    }

    .brand-accordion__item {
        min-height: 220px;
        border-radius: 0;
        border-right: none;
    }

    .brand-accordion__item,
    .brand-accordion__item:hover,
    .brand-accordion__item:focus-visible,
    .brand-accordion__item.is-active {
        flex: 1 1 auto;
    }

    .brand-accordion__desc {
        opacity: 1;
        max-height: 80px;
        transform: translateY(0);
    }

    .contact-map {
        min-height: 380px;
    }

    .contact-map iframe {
        min-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .product-view-hero {
        padding: 38px 0 16px;
    }

    .product-view-hero h1 {
        font-size: clamp(1.25rem, 6vw, 1.6rem);
    }

    .product-view-feature-grid {
        grid-template-columns: 1fr;
    }

    .product-view-description {
        font-size: 0.9rem;
    }

    .contact-form-card {
        border-radius: 16px;
        padding: 22px !important;
    }

    .contact-form-head {
        margin-bottom: 12px !important;
    }

    .contact-map {
        min-height: 300px;
        border-radius: 18px;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    .contact-map-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .brand-accordion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .about-hero-tags span {
        width: 100%;
        justify-content: center;
    }

    .about-cta {
        border-radius: 16px;
    }

    .about-v2-ribbon {
        width: 155%;
        margin-left: -28%;
        font-size: 1rem;
        padding: 12px 14px;
    }

    .about-v2-pattern {
        min-height: 180px;
    }

    .products-catalog-page {
        padding: 30px 0 42px;
    }

    .products-catalog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-catalog-card {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-wrap {
        padding-top: 20px;
    }

    .admin-topbar {
        position: static;
    }

    .admin-topbar .btn {
        width: 100%;
    }
}

/* Admin dashboard v2 - reference matched layout */
.admin-shell {
    margin: 0;
    background: #d7dce4;
    font-family: 'Poppins', sans-serif;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
}

.admin-sidebar {
    background: linear-gradient(180deg, #131b46 0%, #14173f 45%, #1f225a 100%);
    color: #b5c1db;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 6px 6px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6f7bff 0%, #8e62ff 100%);
    color: #ffffff;
    font-weight: 700;
}

.admin-sidebar-brand h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-sidebar-brand p {
    margin: 1px 0 0;
    color: #8fa2c8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.admin-nav-link {
    color: #a8b4d1;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-nav-link i {
    font-size: 0.95rem;
}

.admin-nav-link:hover {
    color: #ffffff;
    background: rgba(118, 134, 255, 0.22);
}

.admin-nav-link.is-active {
    color: #ffffff;
    background: linear-gradient(90deg, #6574ff 0%, #8e62ff 100%);
    box-shadow: 0 8px 16px rgba(94, 94, 205, 0.35);
}

.admin-sidebar-user {
    margin-top: auto;
    padding: 12px 8px 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-badge {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #6c6ff6;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-sidebar-user strong {
    display: block;
    color: #ffffff;
    font-size: 0.82rem;
    line-height: 1.15;
}

.admin-sidebar-user p {
    margin: 2px 0 0;
    color: #8fa1c7;
    font-size: 0.68rem;
}

.admin-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 12px 18px;
    background: #ffffff;
    border-bottom: 1px solid #d6dde8;
    box-shadow: none;
}

.admin-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1b2534;
    line-height: 1.1;
}

.admin-eyebrow {
    font-size: 0.76rem;
    font-weight: 500;
    color: #7c8ba4;
    letter-spacing: 0;
    text-transform: none;
}

.admin-topbar-actions .btn {
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.4rem 0.72rem;
}

.admin-topbar-actions .btn-outline-dark {
    border-color: #cfd8e4;
    color: #3a4a61;
    background: #ffffff;
}

.admin-topbar-actions .btn-brand {
    background: linear-gradient(135deg, #5f6ef9 0%, #814fff 100%);
    border: none;
    box-shadow: none;
}

.admin-dashboard-wrap {
    padding: 18px;
}

.admin-alert {
    border-radius: 10px;
    box-shadow: none;
}

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

.admin-stat-card {
    border-radius: 12px;
    border: 1px solid #d8e0eb;
    background: #fdfefe;
    box-shadow: 0 2px 8px rgba(16, 27, 41, 0.05);
    padding: 12px 14px;
}

.admin-stat-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(16, 27, 41, 0.05);
}

.admin-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    border: none;
    background: #edf3ff;
    color: #5d6bff;
    font-size: 1rem;
}

.admin-stat-card h6 {
    margin: 8px 0 2px;
    color: #75829b;
    font-size: 0.8rem;
    font-weight: 500;
}

.admin-stat-card h2 {
    margin: 0;
    color: #212d3d;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.admin-card {
    border-radius: 12px;
    border: 1px solid #d5deea;
    box-shadow: 0 2px 8px rgba(16, 27, 41, 0.06);
    background: #ffffff;
}

.admin-card h3 {
    font-size: 1.04rem;
    color: #202b3a;
}

.admin-form-card .form-label {
    color: #5f6e87;
    font-size: 0.76rem;
    font-weight: 600;
}

.admin-form-card .form-control,
.modal-content .form-control {
    border-radius: 8px;
    border: 1px solid #cfdae9;
    font-size: 0.82rem;
    background: #ffffff;
}

.admin-form-card .form-control:focus,
.modal-content .form-control:focus {
    border-color: #7f8dff;
    box-shadow: 0 0 0 0.18rem rgba(127, 141, 255, 0.16);
}

.admin-form-card .btn-brand {
    background: linear-gradient(90deg, #16a5b7 0%, #2461c7 100%);
    border: none;
    border-radius: 8px;
    padding: 0.52rem 1rem;
    font-size: 0.82rem;
    box-shadow: none;
}

.admin-chip {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.72rem;
    background: #edf1ff;
    color: #5160da;
    border: 1px solid #dbe2ff;
}

.table-responsive {
    border: 1px solid #dde4ef;
    border-radius: 10px;
}

.admin-products-table {
    margin-bottom: 0;
}

.admin-products-table thead th {
    font-size: 0.65rem;
    color: #8e9cb4;
    letter-spacing: 0.35px;
    background: #f8fbff;
    border-bottom: 1px solid #dde5f0;
    padding: 0.62rem 0.55rem;
}

.admin-products-table td {
    font-size: 0.74rem;
    color: #334255;
    border-bottom: 1px solid #e6ecf5;
    padding: 0.47rem 0.55rem;
}

.admin-products-table p {
    font-size: 0.68rem;
    line-height: 1.35;
}

.admin-products-table strong {
    color: #1f2b3b;
    font-size: 0.76rem;
}

.admin-product-thumb {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #d2dbeb;
    background: #f3f7ff;
}

.admin-products-table .btn {
    font-size: 0.62rem;
    line-height: 1.05;
    border-radius: 6px;
    padding: 0.2rem 0.36rem;
}

.admin-products-table .btn-outline-primary {
    border-color: #bcc9ff;
    color: #5564de;
}

.admin-products-table .btn-outline-primary:hover {
    background: #5868e6;
    border-color: #5868e6;
}

.admin-products-table .btn-outline-danger {
    border-color: #efc4ce;
    color: #d84a63;
}

.admin-products-table .btn-outline-danger:hover {
    background: #d84a63;
    border-color: #d84a63;
}

.modal-content {
    border-radius: 14px;
    border: 1px solid #d6dfeb;
    box-shadow: 0 14px 32px rgba(16, 27, 42, 0.18);
}

@media (max-width: 1199px) {
    .admin-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

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

@media (max-width: 991px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
        gap: 10px;
    }

    .admin-sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .admin-nav-link {
        flex: 1 1 46%;
    }
}

@media (max-width: 767px) {
    .admin-topbar {
        position: static;
    }

    .admin-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-topbar-actions {
        width: 100%;
    }

    .admin-topbar-actions .btn {
        width: 100%;
    }

    .admin-dashboard-wrap {
        padding: 12px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-nav-link {
        flex: 1 1 100%;
    }
}