html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5em;
    letter-spacing: -0.5px;
}

p, li, ul {
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.page-content {
    padding: 0 3rem;
    box-sizing: border-box;
    min-height: 5vh;
}

#overview-section {
    z-index: 1;
    background: linear-gradient(180deg, var(--hero-gradient-start, #000000) 0%, var(--hero-gradient-end, #2e2525) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#overview-section .blob {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

#overview-section .blob-2 {
    position: absolute;
    bottom: -100px;
    left: 35%;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-nav-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.35);
}

.breadcrumb-item,
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--hero-link-hover, #ffd2cf);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 70vh;
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    background: var(--hero-badge-bg, rgba(255, 255, 255, 0.15));
    border: 1px solid var(--hero-badge-border, rgba(255, 255, 255, 0.4));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-logo {
    height: clamp(40px, 5vw, 64px);
    max-height: 64px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
    image-rendering: auto;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--hero-desc-color, rgba(255, 255, 255, 0.85));
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.hero-btn-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fff;
    color: var(--brand-primary-dark, #000000);
    border: none;
    border-radius: 10px;
    padding: 11px 28px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s, color 0.2s;
}

.btn-hero-primary:hover {
    background: var(--hero-button-hover-bg, #ffe8e6);
    color: var(--brand-primary-dark, #251e1e);
    transform: translateY(-2px);
}

.btn-hero-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--hero-button-border, rgba(255, 255, 255, 0.35));
    border-radius: 10px;
    padding: 11px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.hero-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.hero-stat-card {
    background: var(--hero-stat-bg, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--hero-stat-border, rgba(255, 255, 255, 0.16));
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 250px;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--hero-stat-label, rgba(255, 255, 255, 0.6));
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.hero-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat-value .accent {
    color: var(--hero-stat-accent, #ffffff);
}

.hero-tag-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-tag-strip-label {
    font-size: 0.7rem;
    color: var(--hero-tag-label, rgba(255, 255, 255, 0.65));
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}

.hero-tag {
    background: var(--hero-tag-bg, rgba(255, 255, 255, 0.14));
    border: 1px solid var(--hero-tag-border, rgba(255, 255, 255, 0.18));
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #fff;
}

#product-tabs {
    display: flex;
    background: #fff;
    border-bottom: 2px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 10;
}

#product-tabs .page-content {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
}

.product-tab {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.product-tab:hover {
    color: var(--brand-primary, #000000);
}

.product-tab.active {
    color: var(--brand-primary, #000000);
    border-bottom-color: var(--brand-primary, #000000);
}

#tab-panels {
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 0;
}

#tab-panels-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tab-panel {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

#tab-panels-track .tab-panel:first-child {
    background: transparent;
    padding: 0;
}

.tab-panel:not(:first-child) {
    padding: 2.5rem 0 3rem;
    background: var(--surface-alt, #fff4f3);
}

.tab-panel-inner {
    padding: 2rem 0 2.5rem 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

[id$="-product-section"] {
    background: var(--section-bg, #f1f1f1);
    padding: 2rem 0 2.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

[id$="-product-section"] h1 {
    color: #000;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[id$="-product-container"] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

[class^="card-"][class$="-product"],
.card-watchguard-product {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--card-border, #ffffff);
    padding: 1.25rem 1rem;
    flex: 1 1 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

[class^="card-"][class$="-product"]:hover,
.card-watchguard-product:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--card-hover-shadow, 0 10px 25px rgba(117, 16, 10, 0.25));
}

[class^="card-"][class$="-product"]:active,
.card-watchguard-product:active {
    transform: scale(0.98);
}

[class^="card-"][class$="-product"] h2,
.card-watchguard-product h2 {
    color: #000;
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

[class^="card-"][class$="-product"] ul,
.card-watchguard-product ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

[class^="card-"][class$="-product"] li,
.card-watchguard-product li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    color: #000;
    line-height: 1.55;
}

[class^="card-"][class$="-product"] li::before,
.card-watchguard-product li::before {
    content: "✓";
    color: var(--brand-primary, #000000);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.95em;
}

#contact-us {
    margin-top: 80px;
    padding: 0 2rem 4rem 2rem;
}

#contact-us h3 {
    text-align: center;
    color: #000;
}

.btn {
    color: #fff;
    border-radius: 12px;
    margin: 8px;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    background: var(--brand-primary, #000000);
    border: none;
    box-shadow: 0 2px 8px rgba(239,68,59,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn:hover,
.btn:focus {
    background: var(--brand-primary-dark, #000000);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(182,36,29,0.18);
}

@media (max-width: 768px) {
    .hero-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0 1.5rem;
    }

    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 100%;
    }

    .hero-stat-card {
        min-width: 100px;
        flex: 1;
    }

    .hero-logo {
        max-height: 56px;
    }
}

@media (max-width: 600px) {
    .page-content {
        padding: 0 1.25rem;
    }

    #overview-section .blob {
        width: 160px;
        height: 160px;
    }

    [id$="-product-container"] {
        flex-direction: column;
        align-items: center;
    }

    [class^="card-"][class$="-product"],
    .card-watchguard-product {
        max-width: 95vw;
        min-width: unset;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-tag-strip {
        gap: 0.4rem;
    }

/* Normalize product images and key elements to consistent, dynamic sizes */
[id$="-product-container"] img,
[class^="card-"][class$="-product"] img,
.card-watchguard-product img,
.product-image,
.card-img {
    width: 100% !important;
    height: auto !important;
    max-height: 180px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (min-width: 900px) {
    [class^="card-"][class$="-product"],
    .card-watchguard-product {
        min-height: 360px !important;
    }
}

[class^="card-"][class$="-product"] h2,
.card-watchguard-product h2 {
    font-size: 1rem !important;
}

[class^="card-"][class$="-product"] li,
.card-watchguard-product li {
    font-size: 0.9rem !important;
}

.hero-logo,
.hero-logo img {
    height: clamp(40px, 5vw, 64px) !important;
    max-height: 64px !important;
    width: auto !important;
}

video,
iframe {
    max-width: 100% !important;
    height: auto !important;
}

.btn {
    padding: 12px 30px !important;
    font-size: 1rem !important;
}
}