@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600&display=swap');

:root {
    --teal: #1A7F8E;
    --teal-light: #2BA8BC;
    --teal-dark: #145F6B;
    --teal-pale: #A9E4EA;
    --navy: #1A3557;
    --navy-dark: #0F2038;
    --green: #4A9B35;
    --white: #fff;
    --off-white: #F4F7FA;
    --border: #E2EAF0;
    --text-dark: #1C2B3A;
    --text-muted: #6B7C93;
    --shadow-sm: 0 1px 4px rgba(26, 53, 87, .08);
    --shadow-md: 0 4px 16px rgba(26, 53, 87, .12);
    --shadow-lg: 0 8px 32px rgba(26, 53, 87, .18);
    --radius: 12px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Inter', sans-serif;
    --font-a: 'Outfit', sans-serif
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-b);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden
}

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

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition)
}

.navbar.scrolled {
    box-shadow: var(--shadow-md)
}

.nav-logo img {
    height: 48px;
    width: auto
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: .65rem
}

.brand-symbol {
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.brand-symbol img {
    width: 58px;
    height: 48px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0 !important;
    align-items: flex-start !important;
}

.brand-wordmark strong {
    font-family: var(--font-h);
    font-size: 1.28rem;
    letter-spacing: .06em;
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap
}

.brand-wordmark span {
    font-family: var(--font-a);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: .32rem;
    white-space: nowrap
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: var(--transition)
}

.nav-links a:hover {
    color: var(--teal)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: var(--transition) !important
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px)
}

.nav-cta::after {
    display: none !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition)
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(15, 32, 56, .97) 0%, rgba(26, 53, 87, .9) 46%, rgba(20, 95, 107, .62) 100%), url("../images/about-lab.webp") center right/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 4rem
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 38%), radial-gradient(circle at 18% 28%, rgba(43, 168, 188, .22), transparent 34%)
}

.hero::after {
    content: 'A';
    position: absolute;
    right: 4%;
    bottom: -9rem;
    font-family: var(--font-h);
    font-size: 32rem;
    font-weight: 700;
    line-height: .8;
    color: rgba(255, 255, 255, .045);
    pointer-events: none
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--teal-pale);
    padding: .45rem 1rem;
    border-radius: 50px;
    font-size: .76rem;
    font-family: var(--font-a);
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1.6rem
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: .98;
    margin-bottom: 1.35rem;
    max-width: 820px
}

.hero-lede {
    font-family: var(--font-h);
    font-size: clamp(1.4rem, 2.4vw, 2.1rem) !important;
    color: var(--teal-pale) !important;
    line-height: 1.28 !important;
    max-width: 720px !important;
    margin-bottom: 1rem !important
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .76);
    max-width: 590px;
    margin-bottom: 2.5rem;
    line-height: 1.85
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--teal);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 127, 142, .35)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .4)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7)
}

.hero-brand-panel {
    position: absolute;
    right: 5%;
    bottom: 4rem;
    z-index: 2;
    max-width: 230px;
    border-left: 1px solid rgba(255, 255, 255, .24);
    padding-left: 1.25rem;
    color: var(--white)
}

.hero-brand-panel span {
    display: block;
    font-family: var(--font-h);
    font-size: 4.5rem;
    line-height: .85;
    color: var(--teal-pale)
}

.hero-brand-panel p {
    font-size: .82rem;
    line-height: 1.6;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, .72)
}

/* STATS */
.stats {
    background: var(--white);
    padding: 2.5rem 5%;
    border-bottom: 1px solid var(--border)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.stat-item h3 {
    font-family: var(--font-h);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1
}

.stat-item p {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: .25rem;
    font-weight: 500
}

/* SECTIONS */
.section {
    padding: 5rem 5%
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-label {
    display: inline-block;
    font-family: var(--font-a);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .75rem
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem
}

.section-sub {
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.8
}

.section-header {
    margin-bottom: 3rem
}

.section-header.center {
    text-align: center
}

.section-header.center .section-sub {
    margin: 0 auto
}

.bg-off {
    background: var(--off-white)
}

/* PRODUCT CARDS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    cursor: pointer
}

.product-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 22px 48px rgba(15, 32, 56, .22);
    border-color: rgba(26, 127, 142, .55)
}

.product-card.fade-in.visible:hover {
    position: relative;
    z-index: 5;
    transform: translateY(-14px) scale(1.035);
    box-shadow: 0 28px 64px rgba(15, 32, 56, .28);
    border-color: var(--teal)
}

.product-card-top {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden
}

.product-card-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-a)
}

.product-card-corner-mark {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 2;
    width: 42px;
    height: 40px;
    object-fit: contain;
    opacity: .9;
    filter: drop-shadow(0 3px 8px rgba(15, 32, 56, .14))
}

.product-card-pack-img {
    height: 120px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-top: 15px
}

.product-card--image-window .product-card-top {
    height: 245px;
    background: var(--off-white) !important
}

.product-card-window-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% 64%;
    transform: scale(1.08)
}

.product-card--2 .product-card-window-img {
    object-position: center 63%;
    transform: scale(1.24)
}

.product-card:hover .product-card-window-img {
    filter: saturate(1.08) contrast(1.04)
}

.product-card-body {
    padding: 1.25rem;
    transition: background .28s ease
}

.product-card:hover .product-card-body {
    background: linear-gradient(180deg, var(--white) 0%, #F8FBFC 100%)
}

.product-card-body h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: .35rem;
    transition: color .28s ease
}

.product-card:hover .product-card-body h3 {
    color: var(--navy-dark)
}

.product-card-body .composition {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
    line-height: 1.5
}

.product-card-body .form-tag {
    display: inline-block;
    font-size: .75rem;
    padding: .2rem .6rem;
    border-radius: 4px;
    background: var(--off-white);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: .75rem
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--teal);
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition)
}

.product-card:hover .product-card-link,
.product-card-link:hover {
    gap: .6rem;
    color: var(--teal-dark)
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition)
}

.feature-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md)
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.feature-card h4 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: .5rem
}

.feature-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    padding: 5rem 5%;
    text-align: center
}

.cta-banner h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1rem
}

.cta-banner p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2rem;
    font-size: 1.05rem
}

.btn-white {
    background: var(--white);
    color: var(--navy)
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

/* ABOUT PAGE */
.about-hero {
    padding: 10rem 5% 5rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy))
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto
}

.about-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1rem
}

.about-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    max-width: 600px
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.about-img img {
    width: 100%;
    height: 380px;
    object-fit: cover
}

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

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center
}

.cert-card .cert-icon {
    font-size: 2rem;
    margin-bottom: .5rem
}

.cert-card span {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy)
}

.timeline {
    position: relative;
    padding-left: 2rem
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--teal), var(--navy))
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: .25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--teal)
}

.timeline-item h4 {
    font-family: var(--font-h);
    color: var(--navy);
    margin-bottom: .25rem
}

.timeline-item .year {
    font-size: .8rem;
    color: var(--teal);
    font-weight: 600;
    font-family: var(--font-a)
}

.timeline-item p {
    font-size: .9rem;
    color: var(--text-muted)
}

/* CATALOG PAGE */
.catalog-hero {
    padding: 10rem 5% 4rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy))
}

.catalog-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: .5rem
}

.catalog-hero p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem
}

.catalog-controls {
    background: var(--white);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 50
}

.catalog-controls-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap
}

.search-box {
    flex: 1;
    min-width: 200px;
    position: relative
}

.search-box input {
    width: 100%;
    padding: .65rem 1rem .65rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .9rem;
    font-family: var(--font-b);
    outline: none;
    transition: var(--transition)
}

.search-box input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 127, 142, .1)
}

.search-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted)
}

.filter-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.filter-tab {
    padding: .45rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-muted);
    font-family: var(--font-b)
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
}

.catalog-main {
    padding: 3rem 5%;
    background: var(--off-white)
}

.catalog-main-inner {
    max-width: 1200px;
    margin: 0 auto
}

.catalog-count {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem
}

#no-results {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    display: none
}

/* PRODUCT DETAIL */
.product-hero {
    padding: 10rem 5% 4rem;
    position: relative;
    overflow: hidden
}

.product-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.product-icon-display {
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem
}

.product-meta .category-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-a);
    margin-bottom: 1rem
}

.product-meta h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    margin-bottom: .75rem
}

.product-meta .comp-text {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    margin-bottom: 1rem
}

.product-meta .form-pack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.pill-tag {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500
}

.product-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    overflow-x: auto
}

.tab-btn {
    padding: 1rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-b)
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--teal);
    border-bottom-color: var(--teal)
}

.tab-panel {
    display: none;
    animation: fadeIn .3s ease
}

.tab-panel.active {
    display: block
}

.tab-panel h3 {
    font-family: var(--font-h);
    color: var(--navy);
    margin-bottom: 1rem
}

.tab-panel ul {
    list-style: none;
    display: grid;
    gap: .5rem
}

.tab-panel ul li {
    padding: .65rem 1rem;
    background: var(--off-white);
    border-radius: 8px;
    font-size: .9rem;
    color: var(--text-dark);
    border-left: 3px solid var(--teal);
    padding-left: 1rem
}

.tab-panel p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem
}

.related-section {
    background: var(--off-white);
    padding: 4rem 5%
}

.related-inner {
    max-width: 1200px;
    margin: 0 auto
}

/* CONTACT */
.contact-hero {
    padding: 10rem 5% 4rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy))
}

.contact-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: .5rem
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%
}

.contact-info h2 {
    font-family: var(--font-h);
    color: var(--navy);
    margin-bottom: 1.5rem
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(26, 127, 142, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.contact-detail-text strong {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .15rem;
    font-size: .9rem
}

.contact-detail-text span {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.6
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md)
}

.contact-form-wrap h2 {
    font-family: var(--font-h);
    color: var(--navy);
    margin-bottom: 1.5rem
}

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

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    font-family: var(--font-b);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 127, 142, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

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

/* FOOTER */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .75);
    padding: 4rem 5% 2rem
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem
}

.footer-logo img {
    height: 48px
}

.division-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.division-text img {
    height: 20px;
    width: auto;
    opacity: 0.8;
}

.footer-brand p {
    font-size: .87rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6)
}

.footer-col h4 {
    font-family: var(--font-a);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: .6rem
}

.footer-col ul li a {
    font-size: .87rem;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--white)
}

.footer-contact p {
    font-size: .85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4)
}

.footer-certs {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.cert-badge {
    font-size: .72rem;
    padding: .2rem .6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .5)
}

/* PAGE HERO COMMON */
.page-hero {
    padding: 9rem 5% 4rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal-dark) 100%)
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5)
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
    transition: var(--transition)
}

.breadcrumb a:hover {
    color: var(--white)
}

.breadcrumb span {
    color: rgba(255, 255, 255, .3)
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.hero-content>* {
    animation: fadeUp .8s ease both
}

.hero-content>*:nth-child(2) {
    animation-delay: .1s
}

.hero-content>*:nth-child(3) {
    animation-delay: .2s
}

.hero-content>*:nth-child(4) {
    animation-delay: .3s
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .about-split,
    .product-hero-inner {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        height: auto;
        background: linear-gradient(135deg, #F4F7FA 0%, #E8F0F6 100%);
        border-bottom: 1px solid var(--border);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 0 16px 40px rgba(26, 53, 87, 0.12);
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
    }

    .nav-links.open {
        display: flex
    }

    .hamburger {
        display: flex
    }

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

    .hero {
        min-height: auto;
        padding: 8.5rem 5% 4rem;
        background-position: center
    }

    .hero::after {
        font-size: 20rem;
        right: -2rem;
        bottom: -6rem
    }

    .hero-brand-panel {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
        max-width: none
    }

    .hero-visual {
        display: none
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .product-hero-inner {
        grid-template-columns: 1fr
    }

    .product-icon-display {
        height: 200px
    }
}

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

    .features-grid {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .cert-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:560px) {
    .brand-lockup {
        gap: .45rem
    }

    .brand-symbol {
        width: 40px;
        height: 40px
    }

    .brand-symbol img {
        width: 48px;
        height: 40px
    }

    .brand-wordmark strong {
        font-size: .9rem;
        letter-spacing: .04em
    }

    .brand-wordmark span {
        font-size: .46rem;
        letter-spacing: .14em;
        margin-top: .22rem
    }
}