:root {
    --bg-primary: #0b0907;
    --bg-secondary: #13100c;
    --bg-surface: #1a1611;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 255, 255, 0.045);
    --bg-glass: rgba(11, 9, 7, 0.85);

    --gold-primary: #c99a2e;
    --gold-light: #f5d77a;
    --gold-highlight: #fff1a8;
    --gold-dark: #8a641d;
    --gold-deep: #5e4311;
    
    --gold-gradient: linear-gradient(135deg, #8f6b22 0%, #f5d77a 30%, #fff1a8 50%, #c99a2e 70%, #8a641d 100%);
    --gold-gradient-hover: linear-gradient(135deg, #a88132 0%, #fae298 30%, #ffffff 50%, #dbaa36 70%, #9e7424 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(143,107,34,0.15), rgba(245,215,122,0.08));

    --border-subtle: rgba(212, 175, 55, 0.18);
    --border-hover: rgba(245, 215, 122, 0.45);
    --border-dark: rgba(255, 255, 255, 0.07);

    --text-primary: #f5f4f0;
    --text-secondary: #b5b2aa;
    --text-muted: #737068;
    --text-dark: #0b0907;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --container-max: 1360px;
    --header-height: 84px;
    --header-height-mobile: 70px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 25px -5px rgba(201, 154, 46, 0.25);
    --shadow-gold-hover: 0 12px 35px -5px rgba(245, 215, 122, 0.4);

    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    width: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 12px rgba(245, 215, 122, 0.9), 0 0 6px rgba(201, 154, 46, 0.7);
    z-index: 9999;
    pointer-events: none;
    transition: width 0.1s ease-out;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #2b251d;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.25;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

h1 {
    font-size: clamp(2rem, 4.5vw + 1rem, 4.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 1.8vw + 0.5rem, 1.85rem);
}

h4 {
    font-size: clamp(1.05rem, 1.2vw + 0.3rem, 1.35rem);
}

p {
    color: var(--text-secondary);
    font-size: clamp(0.925rem, 0.4vw + 0.85rem, 1.05rem);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem 0 1.5rem 0;
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    position: relative;
}

.section-darker {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.text-center {
    text-align: center;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
    color: #000;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

.top-bar {
    background: rgba(8, 7, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 0.45rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar a:hover {
    color: var(--gold-light);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(11, 9, 7, 0.96);
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-logo-img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    display: none;
}

.brand-logo-img.has-logo {
    display: block;
}

.brand-logo-img.has-logo + .logo-fallback-wrap,
.brand-logo-img.has-logo ~ .logo-fallback-wrap {
    display: none !important;
}

.logo-fallback-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(201, 154, 46, 0.08);
    transition: var(--transition-fast);
}

.logo-brand:hover .logo-icon {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-text .subtitle {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    list-style: none;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.45rem 0;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hamburger-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 360px);
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    z-index: 2000;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.drawer-close-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close-btn:hover {
    color: #fff;
    border-color: var(--gold-primary);
}

.drawer-links {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.drawer-link:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.03);
}

.drawer-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,9,7,0.35) 0%, rgba(11,9,7,0.6) 65%, #0b0907 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 154, 46, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: clamp(0.95rem, 1.1vw + 0.55rem, 1.25rem);
    color: #e6e4dc;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.75rem;
    width: 100%;
}

.hero-badge-card {
    background: rgba(19, 16, 12, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition-smooth);
}

.hero-badge-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
    background: rgba(26, 22, 17, 0.95);
}

.hero-badge-icon {
    font-size: 1.15rem;
    color: var(--gold-light);
    background: rgba(201, 154, 46, 0.12);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-badge-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    line-height: 1.2;
}

.stats-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 2.75rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.value-item i {
    color: var(--gold-light);
    font-size: 1rem;
}

.about-images-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mosaic-col.offset {
    margin-top: 2rem;
}

.mosaic-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-card:hover {
    border-color: var(--border-subtle);
}

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

.about-floating-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-floating-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-floating-badge .label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold-gradient-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.highlight-desc {
    font-size: 0.85rem;
    line-height: 1.55;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}

.product-image-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #000;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: linear-gradient(0deg, rgba(11,9,7,0.95) 0%, rgba(11,9,7,0.5) 70%, transparent 100%);
}

.product-category-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    font-weight: 700;
}

.product-card-title {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 0.25rem;
}

.product-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ==================================================
   RESPONSIVE POPUP MODALS (SPECIFICATIONS & QUOTE)
   ================================================== */

.modal-backdrop, .quote-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2.5vw, 1.75rem);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-backdrop.active, .quote-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content, .quote-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    max-width: 840px;
    width: 100%;
    max-height: min(90vh, 800px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.quote-modal-content {
    max-width: 580px;
    display: block;
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.modal-backdrop.active .modal-content, .quote-modal-backdrop.active .quote-modal-content {
    transform: scale(1);
}

.modal-close-btn, .quote-modal-close-btn {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(11, 9, 7, 0.85);
    border: 1px solid var(--border-subtle);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.modal-close-btn:hover, .quote-modal-close-btn:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

.modal-image-col {
    position: relative;
    min-height: 320px;
    background: #050403;
    overflow: hidden;
}

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

.modal-body-col {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.modal-features-list {
    list-style: none;
    margin: 1rem 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.modal-features-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}

.modal-features-list li i {
    color: var(--gold-light);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.lifecycle-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.5rem);
    margin-top: 4rem;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.lifecycle-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 1.5rem;
}

.lifecycle-service-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #e0ded6;
}

.lifecycle-service-item i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.standards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.standard-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.standard-box-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.standard-box-title i {
    color: var(--gold-light);
}

.standard-box p {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.safety-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.safety-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.safety-feature-item i {
    color: var(--gold-light);
}

.safety-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.safety-card-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(19, 16, 12, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.safety-card-overlay h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.safety-card-overlay p {
    font-size: 0.8rem;
    line-height: 1.5;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    margin-top: 3.5rem;
}

.comparison-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.25rem 1.75rem;
}

.comparison-table th {
    background: var(--bg-surface);
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th.highlight-col {
    color: var(--gold-light);
    background: rgba(201, 154, 46, 0.08);
}

.comparison-table td {
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td.feature-title {
    font-weight: 700;
    color: #fff;
}

.comparison-table td.highlight-col {
    color: #fff;
    font-weight: 600;
    background: rgba(201, 154, 46, 0.04);
}

.badge-rec {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.specs-detail-box {
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.spec-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    display: block;
    font-weight: 700;
}

.spec-item .value {
    font-size: 0.92rem;
    color: #fff;
    margin-top: 0.2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: #fff;
    border-color: var(--gold-light);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    background: #000;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(11,9,7,0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.gallery-card-caption .caption-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.gallery-card-caption i {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.lightbox-close-btn:hover {
    color: var(--gold-light);
}

.lightbox-image-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-wrap img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

.lightbox-title {
    margin-top: 1rem;
    color: #fff;
    font-size: 1rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

.video-wrap video {
    width: 100%;
    height: 100%;
}

.video-title {
    font-size: 1.1rem;
    color: #fff;
}

.video-desc {
    font-size: 0.85rem;
}

.reviews-container {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.review-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.review-stars {
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.reviewer-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.faq-grid {
    max-width: 860px;
    margin: 3.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--gold-light);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--gold-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem 1.75rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.contact-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 2px rgba(201, 154, 46, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5d77a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control option {
    background-color: var(--bg-secondary);
    color: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-alert {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81c784;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.form-alert.active {
    display: block;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.contact-details-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3.5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-gradient-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    display: block;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.2rem;
    display: block;
    line-height: 1.5;
}

.contact-info-value a:hover {
    color: var(--gold-light);
}

.map-container-wrap {
    width: 100%;
    height: 230px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    background: #111;
}

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

.gmb-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: var(--transition-fast);
}

.gmb-card:hover {
    border-color: var(--gold-light);
}

.gmb-card-title {
    font-size: 0.92rem;
    color: #fff;
    font-weight: 700;
}

.gmb-card-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.mobile-fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.fab-main-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.fab-main-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 215, 122, 0.4);
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.mobile-fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.fab-option-btn:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateX(-4px);
}

.fab-option-btn i {
    font-size: 1rem;
}

.fab-option-btn.wa-btn i {
    color: #25d366;
}

.fab-option-btn.call-btn i {
    color: var(--gold-light);
}

.footer {
    background: #060504;
    border-top: 1px solid var(--border-dark);
    padding: 4rem 0 2rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-list a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1200px) {
    .nav-menu, .nav-actions .btn {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .about-grid, .safety-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .lifecycle-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .brand-logo-img {
        max-height: 44px;
    }

    .top-bar {
        font-size: 0.7rem;
        padding: 0.35rem 0;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
        margin-top: 2rem;
    }
    .hero-badge-card {
        padding: 0.65rem 0.75rem;
        gap: 0.5rem;
    }
    .hero-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    .hero-badge-title {
        font-size: 0.74rem;
    }
    .hero-badge-desc {
        font-size: 0.62rem;
    }

    .about-images-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid, .safety-features-grid, .form-row, .standards-row {
        grid-template-columns: 1fr;
    }
    
    /* MOBILE SPECIFICATIONS MODAL FIXES */
    .modal-backdrop, .quote-modal-backdrop {
        padding: 0.65rem;
        align-items: center;
    }
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 88vh;
        border-radius: var(--radius-md);
    }
    .modal-image-col {
        height: 200px;
        min-height: 180px;
    }
    .modal-body-col {
        padding: 1.25rem 1.15rem;
        gap: 1.15rem;
    }
    .modal-title {
        font-size: 1.35rem;
    }
    .modal-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .modal-features-list {
        margin: 0.75rem 0 1rem 0;
        gap: 0.5rem;
    }
    .modal-features-list li {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    .modal-close-btn, .quote-modal-close-btn {
        top: 0.6rem;
        right: 0.6rem;
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .quote-modal-content {
        padding: 1.35rem 1.15rem;
        max-height: 90vh;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .mobile-fab-container {
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .about-floating-badge {
        position: static;
        margin-top: 1rem;
    }

    /* Small phone optimizations */
    .modal-backdrop, .quote-modal-backdrop {
        padding: 0.4rem;
    }
    .modal-content {
        max-height: 92vh;
    }
    .modal-image-col {
        height: 175px;
        min-height: 160px;
    }
    .modal-body-col {
        padding: 1rem 0.9rem;
        gap: 0.9rem;
    }
    .modal-title {
        font-size: 1.2rem;
    }
    .modal-desc {
        font-size: 0.8rem;
    }
    .modal-features-list li {
        font-size: 0.78rem;
    }
    .modal-inquiry-btn {
        padding: 0.75rem 0.75rem;
        font-size: 0.78rem;
    }
}

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