:root {
    --ink: #0a1428;
    --muted: #64748b;
    --blue: #1488e8;
    --blue2: #005fbd;
    --orange: #ff8a00;
    --line: #e6edf5;
    --soft: #f5f9fd;
    --white: #fff;
    --radius: 26px;
    --shadow: 0 20px 70px rgba(10, 20, 40, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    font-size: 13px;
    background: #07182f;
    color: #cfe7ff
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0
}

.topbar a {
    color: #fff
}

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 237, 245, .85)
}

.nav .container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px
}

.brand img {
    width: 76px;
    height: 52px;
    object-fit: contain
}

.brand-text strong {
    display: block;
    font-size: 17px;
    letter-spacing: .02em
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 11px
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700
}

.menu a {
    position: relative
}

.menu a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transition: .25s
}

.menu a:hover:after,
.menu a.active:after {
    right: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .25s
}

.btn-primary {
    background: #000;
    color: #fff;
    box-shadow: 0 10px 30px rgba(20, 136, 232, .25)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-outline {
    border-color: #c9d9e8;
    background: #fff
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 64px;
    background: radial-gradient(circle at 85% 18%, rgba(20, 136, 232, .15), transparent 28%), radial-gradient(circle at 12% 78%, rgba(255, 138, 0, .11), transparent 25%), linear-gradient(#fff, #f8fbff)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 55px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #dceaf8;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue2)
}

.eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, .12)
}

h1 {
    font-size: clamp(42px, 5.4vw, 74px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 22px 0 22px
}

.grad {
    background: linear-gradient(90deg, var(--blue2), var(--blue), var(--orange));
    -webkit-background-clip: text;
    color: transparent
}

.lead {
    font-size: 19px;
    color: #4b5c72;
    max-width: 700px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0 28px
}

.proof {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.proof-item strong {
    display: block;
    font-size: 24px
}

.proof-item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800
}

.hero-product {
    position: relative
}

.hero-card {
    background: #fff;
    border: 1px solid #e4edf6;
    border-radius: 36px;
    padding: 24px;
    box-shadow: var(--shadow);
    transform: rotate(-1deg)
}

.hero-card img {
    width: 100%;
    aspect-ratio: 1.15/1;
    object-fit: contain;
    border-radius: 24px
}

.float-chip {
    position: absolute;
    background: #fff;
    border: 1px solid #e6edf5;
    box-shadow: 0 14px 35px rgba(10, 20, 40, .12);
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 900
}

.chip1 {
    left: -20px;
    top: 50px
}

.chip2 {
    right: -18px;
    bottom: 50px
}

.section {
    padding: 86px 0
}

.section.soft {
    background: var(--soft)
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 36px
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 10px 0
}

.section-head p {
    max-width: 640px;
    color: var(--muted);
    margin: 0
}

.grid {
    display: grid;
    gap: 20px
}

.cards-4 {
    grid-template-columns: repeat(4, 1fr)
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(10, 20, 40, .04);
    transition: .25s
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(10, 20, 40, .09)
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e6f4ff, #fff0dd);
    margin-bottom: 18px
}

.icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--blue2)
}

.card h3 {
    margin: 0 0 8px;
    font-size: 19px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.category {
    padding: 0;
    overflow: hidden
}

.category-media {
    height: 190px;
    background: linear-gradient(135deg, #07182f, #0f66ac);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.category-media:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 22px solid rgba(255, 255, 255, .12);
    border-radius: 50%
}

.category-media svg {
    width: 92px;
    height: 92px;
    stroke: #fff;
    z-index: 2
}

.category-body {
    padding: 20px
}

.category-meta {
    font-size: 12px;
    color: var(--blue2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.process {
    counter-reset: step
}

.process .card {
    position: relative;
    padding-top: 54px
}

.process .card:before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 36px;
    font-weight: 900;
    color: #e2ecf5
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: center
}

.product-showcase .media {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.product-showcase .media img {
    aspect-ratio: 1/1;
    object-fit: contain
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px
}

.chip {
    padding: 8px 12px;
    background: #edf6ff;
    color: #0b5fa8;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900
}

.trusted {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.trusted span {
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-weight: 900;
    color: #34465c
}

.note {
    font-size: 12px;
    color: #7c8ba0;
    margin-top: 10px
}

.certs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px
}

.cert {
    min-height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 900;
    font-size: 13px
}

.cta {
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, #07182f, #0e4f84 60%, #000);
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative
}

.cta:after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 50px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    right: -80px;
    top: -80px
}

.cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -.04em
}

.cta p {
    color: #d6e9fa;
    margin: 0
}

.cta .actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 2
}

.btn-light {
    background: #fff;
    color: #0b2b4a
}

.footer {
    background: #f8fbfe;
    border-top: 1px solid var(--line);
    padding: 54px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    gap: 34px
}

.footer h4 {
    margin: 0 0 14px
}

.footer p,
.footer a {
    font-size: 14px;
    color: #64748b
}

.footer a {
    display: block;
    margin: 8px 0
}

.legal {
    border-top: 1px solid var(--line);
    margin-top: 32px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8795a8;
    font-size: 12px
}

.page-hero {
    padding: 72px 0 50px;
    background: linear-gradient(180deg, #f7fbff, #fff)
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    max-width: 880px
}

.breadcrumb {
    font-size: 13px;
    color: #6b7c91
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.filter {
    border: 1px solid var(--line);
    background: #fff;
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer
}

.filter.active {
    background: #0b5fa8;
    color: #fff;
    border-color: #0b5fa8
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.product-card {
    overflow: hidden;
    padding: 0
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff
}

.product-card .body {
    padding: 18px
}

.specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 13px
}

.spec {
    font-size: 11px;
    font-weight: 800;
    background: #f0f6fb;
    padding: 6px 8px;
    border-radius: 8px
}

.form-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow)
}

label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 7px;
    color: #42566e
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9e4ee;
    border-radius: 12px;
    font: inherit;
    outline: none;
    background: #fff
}

input:focus,
select:focus,
textarea:focus {
    border-color: #44a2ee;
    box-shadow: 0 0 0 4px rgba(20, 136, 232, .10)
}

textarea {
    min-height: 130px;
    resize: vertical
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.field.full {
    grid-column: 1/-1
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px
}

.alert.ok {
    background: #eafaf0;
    color: #176a36
}

.alert.err {
    background: #fff1f1;
    color: #9d2020
}

.hamb {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px
}

.mobile-menu {
    display: none
}

.kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -28px;
    position: relative;
    z-index: 5
}

.kpi {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(10, 20, 40, .07)
}

.kpi strong {
    font-size: 26px
}

.kpi span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800
}

.factory-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.factory-list div {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f5f9fd;
    border: 1px solid var(--line);
    font-weight: 800
}

.small {
    font-size: 13px;
    color: var(--muted)
}

@media(max-width:980px) {
    .menu {
        display: none
    }

    .hamb {
        display: block
    }

    .mobile-menu.open {
        display: block;
        position: fixed;
        inset: 82px 20px auto 20px;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 20px;
        padding: 14px;
        z-index: 60
    }

    .mobile-menu a {
        display: block;
        padding: 12px;
        border-radius: 10px;
        font-weight: 800
    }

    .hero-grid,
    .product-showcase,
    .form-wrap,
    .cta {
        grid-template-columns: 1fr
    }

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

    .cards-3,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .certs {
        grid-template-columns: repeat(4, 1fr)
    }

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

    .cta .actions {
        justify-content: flex-start
    }

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

@media(max-width:640px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .topbar .container {
        justify-content: center
    }

    .topbar .right {
        display: none
    }

    .nav .container {
        height: 72px
    }

    .brand img {
        width: 62px;
        height: 44px
    }

    .brand-text {
        display: none
    }

    .hero {
        padding-top: 52px
    }

    .hero-card {
        padding: 12px;
        border-radius: 24px
    }

    .chip1,
    .chip2 {
        display: none
    }

    .section {
        padding: 64px 0
    }

    .section-head {
        display: block
    }

    .cards-4,
    .cards-3,
    .catalog-grid,
    .certs,
    .footer-grid,
    .form-grid,
    .factory-list {
        grid-template-columns: 1fr
    }

    .kpi-strip {
        grid-template-columns: 1fr 1fr
    }

    .proof {
        gap: 16px
    }

    .proof-item strong {
        font-size: 20px
    }

    .cta {
        padding: 30px 24px
    }

    .legal {
        display: block
    }

    .legal span {
        display: block;
        margin-top: 8px
    }

    .catalog-toolbar {
        align-items: flex-start
    }
}

/* Premium Geosun footer */
.premium-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 48%, rgba(20, 136, 232, .13), transparent 25%), linear-gradient(145deg, #03101f, #061b31 55%, #041426);
    color: #fff;
    border-top: 0;
    padding: 38px 0 0
}

.premium-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(38, 116, 184, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 116, 184, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none
}

.premium-footer .container {
    position: relative;
    z-index: 1
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid rgba(65, 151, 230, .25);
    border-radius: 18px;
    background: rgba(5, 25, 46, .72);
    margin-bottom: 54px
}

.footer-features div {
    padding: 20px 18px;
    text-align: center;
    border-right: 1px solid rgba(65, 151, 230, .18)
}

.footer-features div:last-child {
    border-right: 0
}

.footer-features b {
    display: block;
    font-size: 15px;
    color: #fff
}

.footer-features span {
    display: block;
    font-size: 11px;
    color: #9db4ca;
    margin-top: 3px
}

.premium-grid {
    grid-template-columns: 1.45fr .75fr .8fr .8fr;
    gap: 48px
}

.premium-footer h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .04em;
    margin-bottom: 19px
}

.premium-footer h4:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #188bea;
    margin-top: 10px
}

.premium-footer p,
.premium-footer a {
    color: #9eb2c6
}

.premium-footer a {
    transition: .2s
}

.premium-footer a:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-brand img {
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    width: 82px;
    height: 62px
}

.premium-footer .brand-text strong {
    font-size: 22px;
    color: #fff
}

.premium-footer .brand-text small {
    color: #a8b9c9
}

.premium-footer .brand-text em {
    font-style: normal;
    color: #ff8a00
}

.footer-about p {
    max-width: 390px
}

.footer-rfq {
    display: inline-flex !important;
    border: 1px solid #188bea !important;
    color: #55adf6 !important;
    border-radius: 999px;
    padding: 10px 18px;
    margin-top: 14px !important;
    font-weight: 800
}

.footer-certs {
    margin-top: 42px;
    border: 1px solid rgba(65, 151, 230, .24);
    border-radius: 17px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(5, 25, 46, .65)
}

.footer-certs strong {
    color: #4ba8f4;
    text-transform: uppercase;
    font-size: 12px;
    max-width: 90px
}

.footer-certs span {
    font-size: 14px;
    font-weight: 900;
    color: #d9e5ef;
    letter-spacing: .02em
}

.footer-certs b {
    font-size: 11px;
    color: #4ba8f4
}

.premium-legal {
    border-top: 1px solid rgba(139, 174, 205, .18);
    padding: 22px 0;
    margin-top: 28px;
    color: #8da4b9;
    align-items: center
}

.premium-legal .atw-credit {
    display: inline;
    color: #38a2f5;
    font-weight: 800;
    margin: 0
}

.premium-legal .atw-credit:hover {
    color: #fff;
    transform: none
}

.legal-links {
    white-space: nowrap
}

@media(max-width:980px) {
    .footer-features {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-features div:nth-child(3) {
        border-right: 0
    }

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

    .premium-legal {
        flex-wrap: wrap
    }
}

@media(max-width:640px) {
    .premium-footer {
        padding-top: 24px
    }

    .footer-features {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 38px
    }

    .footer-features div {
        border-bottom: 1px solid rgba(65, 151, 230, .14)
    }

    .footer-features div:nth-child(odd) {
        border-right: 1px solid rgba(65, 151, 230, .18)
    }

    .footer-features div:nth-child(even) {
        border-right: 0
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-certs {
        justify-content: flex-start
    }

    .premium-legal .legal-links {
        white-space: normal
    }
}

/* V3 premium product catalogue */
.product-showcase-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 24px;
    overflow: hidden;
    transition: .3s;
    position: relative
}

.product-showcase-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(4, 25, 55, .12)
}

.product-media {
    height: 330px;
    background: linear-gradient(145deg, #f8fbff, #edf4fb);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .35s
}

.product-showcase-card:hover .product-media img {
    transform: scale(1.035)
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #071d3b;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em
}

.product-info {
    padding: 24px
}

.product-info h3 {
    margin: 6px 0 8px;
    font-size: 23px
}

.product-info p {
    color: #64748b;
    line-height: 1.7
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.product-actions .btn {
    flex: 1;
    text-align: center
}

.category-meta {
    color: #1683e7;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 55px;
    align-items: start
}

.gallery-wrap {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    position: sticky;
    top: 110px
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.gallery-thumb {
    width: 88px;
    height: 88px;
    border: 1px solid #dbe4ef;
    background: #fff;
    border-radius: 14px;
    padding: 7px;
    cursor: pointer
}

.gallery-thumb.active {
    border: 2px solid #1683e7
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.zoom-stage {
    height: 590px;
    background: linear-gradient(145deg, #fbfdff, #eef4fa);
    border: 1px solid #e1e8f0;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in
}

.zoom-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px
}

.zoom-stage.zoomed img {
    transform: scale(2.15);
    transform-origin: var(--x, 50%) var(--y, 50%);
    cursor: zoom-out
}

.zoom-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 29, 59, .88);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    pointer-events: none
}

.detail-panel h1 {
    font-size: 44px;
    line-height: 1.08;
    margin: 10px 0 15px
}

.model-code {
    font-size: 13px;
    font-weight: 800;
    color: #1683e7;
    letter-spacing: .12em
}

.detail-lead {
    font-size: 17px;
    color: #64748b;
    line-height: 1.75
}

.quick-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0
}

.quick-spec {
    border: 1px solid #e3e9f0;
    border-radius: 16px;
    padding: 16px
}

.quick-spec small {
    display: block;
    color: #8090a4;
    margin-bottom: 4px
}

.quick-spec strong {
    color: #071d3b
}

.oem-callout {
    background: #071d3b;
    color: #fff;
    border-radius: 20px;
    padding: 22px;
    margin: 25px 0
}

.oem-callout strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px
}

.oem-callout p {
    color: #b9c8db;
    margin: 0
}

.detail-actions {
    display: flex;
    gap: 12px
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px
}

.spec-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #e8edf3
}

.spec-table td:first-child {
    font-weight: 700;
    color: #071d3b;
    width: 38%
}

.feature-pills {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin: 18px 0
}

.feature-pills span {
    padding: 8px 12px;
    background: #edf6ff;
    color: #1268b3;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700
}

.catalog-intro {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 30px
}

.catalog-intro h2 {
    font-size: 38px;
    margin: 0
}

.catalog-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

@media(max-width:1000px) {
    .catalog-grid-v3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-detail-grid {
        grid-template-columns: 1fr
    }

    .gallery-wrap {
        position: static
    }

    .zoom-stage {
        height: 500px
    }
}

@media(max-width:650px) {
    .catalog-grid-v3 {
        grid-template-columns: 1fr
    }

    .catalog-intro {
        display: block
    }

    .gallery-wrap {
        grid-template-columns: 1fr
    }

    .gallery-thumbs {
        flex-direction: row;
        order: 2
    }

    .gallery-thumb {
        width: 72px;
        height: 72px
    }

    .zoom-stage {
        height: 390px
    }

    .detail-panel h1 {
        font-size: 34px
    }

    .quick-spec-grid {
        grid-template-columns: 1fr 1fr
    }

    .detail-actions {
        flex-direction: column
    }

    .product-media {
        height: 290px
    }
}


/* =========================================================
   GEOSUN V4 - PREMIUM HOME PAGE
========================================================= */

.geosun-home {
    overflow: hidden;
}

.geosun-home .mini-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #147fd4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.geosun-home .mini-label-light {
    color: #63baff;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.home-slider {
    position: relative;
    min-height: 680px;
    background: #06182d;
    overflow: hidden;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.015);
    transition:
        opacity .8s ease,
        visibility .8s ease,
        transform 1.1s ease;
}

.home-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.home-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-slide-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 80px 80px;
}

.home-slide-bg-one {
    background:
        radial-gradient(circle at 77% 34%, rgba(39, 151, 255, .24), transparent 27%),
        radial-gradient(circle at 87% 70%, rgba(255, 135, 22, .13), transparent 23%),
        linear-gradient(118deg, #031020 0%, #071c36 57%, #082a4c 100%);
}

.home-slide-bg-two {
    background:
        radial-gradient(circle at 76% 35%, rgba(45, 151, 250, .25), transparent 26%),
        linear-gradient(120deg, #061527, #09253e 52%, #0b416a);
}

.home-slide-bg-three {
    background:
        radial-gradient(circle at 82% 38%, rgba(255, 139, 23, .16), transparent 28%),
        radial-gradient(circle at 68% 62%, rgba(41, 154, 246, .18), transparent 28%),
        linear-gradient(125deg, #03101e, #061c34 55%, #092b48);
}

.home-slide-grid {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.04fr) minmax(430px, .96fr);
    align-items: center;
    gap: 60px;
    padding-top: 68px;
    padding-bottom: 72px;
}

.home-slide-copy {
    max-width: 690px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #79c1ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.hero-kicker:before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: #168ef3;
}

.home-slide-copy h1,
.home-slide-copy .hero-h1 {
    max-width: 820px;
    margin: 20px 0 24px;
    color: #fff;
    font-size: clamp(47px, 5.2vw, 76px);
    line-height: .99;
    letter-spacing: -.052em;
    font-weight: 800;
}

.home-slide-copy h1 span,
.home-slide-copy .hero-h1 span {
    display: block;
    margin-top: 7px;
    color: #fec088;
}

.home-slide-copy p {
    max-width: 660px;
    margin: 0;
    color: #b7c9da;
    font-size: 17px;
    line-height: 1.82;
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-secondary-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(8px);
}

.hero-secondary-btn:hover {
    color: #07182f;
    background: #fff;
}

.hero-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
    color: #d1dfeb;
    font-size: 12px;
    font-weight: 700;
}

.hero-mini-proof span {
    position: relative;
    padding-left: 15px;
}

.hero-mini-proof span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #168ef3;
}


/* product hero */

.home-slide-product {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slide-product img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 35px 40px rgba(0, 0, 0, .38)) drop-shadow(0 5px 12px rgba(0, 0, 0, .15));
    animation: homeProductFloat 5s ease-in-out infinite;
}

.product-two img {
    max-height: 500px;
}

.product-three img {
    max-height: 500px;
}

.hero-product-glow {
    position: absolute;
    z-index: 1;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(24, 142, 239, .33),
            rgba(24, 142, 239, .09) 50%,
            transparent 71%);
    filter: blur(5px);
}

.hero-floating-card,
.hero-spec-card {
    position: absolute;
    z-index: 6;
    min-width: 175px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    color: #fff;
    background: rgba(6, 26, 47, .71);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
}

.hero-floating-card small,
.hero-spec-card span {
    display: block;
    color: #7dbff5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-floating-card strong,
.hero-spec-card strong {
    display: block;
    margin-top: 2px;
    font-size: 13px;
}

.hero-float-one {
    left: 0;
    top: 72px;
}

.hero-float-two {
    right: 0;
    bottom: 78px;
}

.hero-spec-card {
    right: 3%;
    bottom: 70px;
}

@keyframes homeProductFloat {

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

    50% {
        transform: translateY(-10px);
    }
}


/* slider controls */

.slider-arrow {
    position: absolute;
    z-index: 15;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(2, 15, 29, .35);
    backdrop-filter: blur(10px);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: .25s ease;
}

.slider-arrow:hover {
    border-color: #319eee;
    background: #1689e5;
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    z-index: 15;
    left: 50%;
    bottom: 25px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .3s ease;
}

.slider-dot.active {
    width: 34px;
    background: #2ca1ff;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.home-trust-bar {
    position: relative;
    z-index: 8;
    background: #fff;
    border-bottom: 1px solid #e8eef5;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.home-trust-item {
    padding: 26px 24px;
    border-right: 1px solid #e9eff5;
}

.home-trust-item:first-child {
    border-left: 1px solid #e9eff5;
}

.trust-number {
    display: block;
    color: #0a213b;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.home-trust-item p {
    margin: 2px 0 0;
    color: #78899b;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   SHARED SECTION TITLE
========================================================= */

.modern-section-title {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 42px;
}

.modern-section-title h2,
.home-cert-header h2 {
    margin: 0;
    max-width: 720px;
    color: #071a33;
    font-size: clamp(35px, 4.15vw, 56px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.modern-section-title h2 span,
.home-cert-header h2 span {
    color: #071a33;
}

.section-title-side p {
    margin: 0 0 17px;
    color: #000;
    ;
    font-size: 14px;
}

.text-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #071c34;
    font-size: 13px;
    font-weight: 800;
}

.text-arrow-link span {
    font-size: 20px;
    transition: .25s;
}

.text-arrow-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.category-showcase-section {
    background: #f8fafc;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 295px;
    gap: 18px;
}

.home-category-card {
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px solid #e3ebf2;
    border-radius: 25px;
    background:
        radial-gradient(circle at 80% 24%, rgba(26, 142, 236, .13), transparent 30%),
        linear-gradient(145deg, #fff, #edf5fb);
    box-shadow: 0 5px 28px rgba(5, 27, 51, .04);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.home-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(5, 27, 51, .11);
}

.category-large {
    grid-column: span 2;
    grid-row: span 2;
}

.home-category-copy {
    position: relative;
    z-index: 3;
    padding: 26px;
}

.home-category-copy>span {
    display: block;
    color: #1686dc;
    font-size: 11px;
    font-weight: 900;
}

.home-category-copy h3 {
    margin: 7px 0 8px;
    color: #071c33;
    font-size: 27px;
    line-height: 1.05;
    letter-spacing: -.025em;
}

.category-large .home-category-copy h3 {
    font-size: 37px;
}

.home-category-copy p {
    max-width: 275px;
    margin: 0;
    color: #728397;
    font-size: 13px;
}

.home-category-card img {
    position: absolute;
    right: 4%;
    bottom: -5%;
    width: 66%;
    height: 64%;
    object-fit: contain;
    transition: transform .4s ease;
}

.category-large img {
    right: 4%;
    bottom: 0;
    width: 75%;
    height: 66%;
}

.home-category-card:hover img {
    transform: scale(1.04) translateY(-4px);
}

.category-arrow {
    position: absolute;
    left: 26px;
    bottom: 22px;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid #d3e1ed;
    border-radius: 50%;
    color: #0b6eba;
    background: rgba(255, 255, 255, .85);
    font-size: 18px;
}

.category-dark {
    color: #fff;
    background:
        radial-gradient(circle at 78% 72%, rgba(31, 148, 240, .25), transparent 34%),
        linear-gradient(145deg, #041426, #082843);
}

.category-dark .home-category-copy h3 {
    color: #fff;
}

.category-dark .home-category-copy p {
    color: #aebfce;
}

.category-dark .category-arrow {
    color: #fff;
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.home-products-section {
    background: #fff;
}

.home-featured-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-featured-card {
    overflow: hidden;
    border: 1px solid #e4ebf2;
    border-radius: 22px;
    background: #fff;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.home-featured-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(3, 27, 52, .105);
}

.home-product-image {
    position: relative;
    overflow: hidden;
    display: block;
    height: 315px;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 55%, #fff 0, #f1f6fa 69%);
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}

.home-featured-card:hover .home-product-image img {
    transform: scale(1.055);
}

.home-product-tag {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 17px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0f6fb9;
    background: #fff;
    box-shadow: 0 5px 18px rgba(4, 29, 55, .08);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-view-circle {
    position: absolute;
    right: 17px;
    bottom: 17px;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #087acf;
    font-size: 10px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s ease;
}

.home-featured-card:hover .product-view-circle {
    opacity: 1;
    transform: translateY(0);
}

.home-product-content {
    padding: 20px;
}

.home-product-category {
    color: #1482d5;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-product-content h3 {
    margin: 5px 0 16px;
    color: #071c34;
    font-size: 20px;
    letter-spacing: -.02em;
}

.home-mini-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.home-mini-specs span {
    padding: 10px;
    border-radius: 11px;
    background: #f5f8fb;
    color: #223d56;
    font-size: 11px;
    font-weight: 800;
}

.home-mini-specs small {
    display: block;
    margin-bottom: 1px;
    color: #8c9aaa;
    font-size: 9px;
    font-weight: 600;
}

.home-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #edf1f4;
    color: #8a99a8;
    font-size: 11px;
}

.home-product-bottom a {
    color: #0973c5;
    font-weight: 800;
}


/* =========================================================
   PRIVATE LABEL / OEM PANEL
========================================================= */

.home-brand-section {
    padding-top: 45px;
}

.home-brand-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 590px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 57%, rgba(22, 137, 229, .28), transparent 31%),
        linear-gradient(125deg, #031323, #061e37 57%, #092d4d);
    box-shadow: 0 30px 85px rgba(4, 25, 46, .16);
}

.home-brand-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 68px 68px;
}

.home-brand-product {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 590px;
}

.home-brand-product img {
    position: relative;
    z-index: 3;
    width: 88%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .34));
}

.brand-product-circle {
    position: absolute;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(74, 172, 245, .21);
    border-radius: 50%;
}

.brand-product-circle:after {
    content: "";
    position: absolute;
    inset: 42px;
    border: 1px solid rgba(74, 172, 245, .16);
    border-radius: 50%;
}

.home-brand-content {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: 60px 65px 60px 20px;
}

.home-brand-content h2 {
    max-width: 630px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(40px, 4.7vw, 65px);
    line-height: 1.01;
    letter-spacing: -.05em;
}

.home-brand-content h2 span {
    color: #63b7f7;
}

.home-brand-content p {
    max-width: 660px;
    margin: 0;
    color: #afc3d5;
    font-size: 15px;
    line-height: 1.82;
}

.brand-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 29px 0;
}

.brand-feature-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: #d8e6f1;
    background: rgba(255, 255, 255, .045);
}

.brand-feature-list strong {
    color: #36a3f7;
    font-size: 11px;
}

.brand-feature-list span {
    font-size: 12px;
    font-weight: 700;
}

.brand-white-btn {
    color: #071c34;
    background: #fff;
}

.brand-white-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   ABOUT / SEO
========================================================= */

.home-about-seo {
    background: #f7fafc;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}

.home-about-content h2 {
    max-width: 750px;
    margin: 0 0 25px;
    color: #071d34;
    font-size: clamp(37px, 4.1vw, 56px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.home-about-content h2 span {
    color: #1684d7;
}

.home-about-content p {
    max-width: 790px;
    color: #65788b;
    font-size: 15px;
    line-height: 1.86;
}

.about-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 25px;
}

.about-seo-links a {
    color: #0d74bf;
    font-size: 13px;
    font-weight: 800;
}

.home-about-side {
    display: grid;
    gap: 17px;
}

.about-side-card {
    padding: 28px;
    border: 1px solid #e0e8ef;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(5, 28, 50, .045);
}

.about-side-card>span {
    color: #1484d7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-side-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.about-side-card li {
    position: relative;
    padding: 11px 10px 11px 27px;
    border-radius: 10px;
    color: #52677a;
    background: #f7f9fb;
    font-size: 11px;
    font-weight: 700;
}

.about-side-card li:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 17px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1688dc;
}

.about-side-blue {
    color: #fff;
    background: linear-gradient(135deg, #071c34, #0b62a1);
}

.about-side-blue>span {
    color: #75c2fb;
}

.about-side-blue strong {
    display: block;
    max-width: 400px;
    margin: 10px 0 18px;
    font-size: 25px;
    line-height: 1.2;
}

.about-side-blue a {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.home-process-section {
    background: #fff;
}

.process-title {
    margin-bottom: 38px;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dfe7ef;
    border-left: 1px solid #dfe7ef;
}

.home-process-card {
    position: relative;
    min-height: 250px;
    padding: 32px;
    border-right: 1px solid #dfe7ef;
    border-bottom: 1px solid #dfe7ef;
    transition: .3s;
}

.home-process-card:hover {
    z-index: 2;
    background: #071c34;
    box-shadow: 0 20px 42px rgba(4, 28, 50, .14);
    transform: translateY(-4px);
}

.home-process-card>span {
    color: #1489df;
    font-size: 11px;
    font-weight: 900;
}

.home-process-card h3 {
    margin: 50px 0 10px;
    color: #071c34;
    font-size: 21px;
    transition: .3s;
}

.home-process-card p {
    margin: 0;
    color: #77889a;
    font-size: 13px;
    line-height: 1.7;
    transition: .3s;
}

.home-process-card:hover h3 {
    color: #fff;
}

.home-process-card:hover p {
    color: #b7c7d4;
}


/* =========================================================
   CERTIFICATIONS
========================================================= */

.home-certification-section {
    background: #f4f8fb;
}

.home-cert-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 35px;
}

.home-cert-header p {
    max-width: 360px;
    color: #718396;
    font-size: 13px;
}

.home-cert-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    overflow: hidden;
    border: 1px solid #dae4ec;
    border-radius: 20px;
    background: #fff;
}

.home-cert-grid div {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e1e8ee;
    color: #16334c;
    font-size: 21px;
    font-weight: 900;
}

.home-cert-grid div:last-child {
    border-right: 0;
}

.home-cert-grid span {
    display: block;
    margin-top: 2px;
    color: #8796a4;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================================
   FAQ
========================================================= */

.home-faq-section {
    background: #041426;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
}

.home-faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.home-faq-intro h2 {
    margin: 0 0 17px;
    color: #fff;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.home-faq-intro h2 span {
    color: #1485d8;
}

.home-faq-intro p {
    margin-bottom: 25px;
    color: #fff;
    font-size: 14px;
}

.home-faq-list details {
    border-top: 1px solid #dfe7ee;
}

.home-faq-list details:last-child {
    border-bottom: 1px solid #dfe7ee;
}

.home-faq-list summary {
    position: relative;
    padding: 25px 45px 25px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 20px;
    color: #1689df;
    font-size: 27px;
    font-weight: 400;
}

.home-faq-list details[open] summary:after {
    content: "−";
}

.home-faq-list details p {
    max-width: 760px;
    margin: -4px 0 25px;
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.home-final-cta {
    padding-top: 35px;
}

.home-final-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 56px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 15%, rgba(255, 255, 255, .17), transparent 24%),
        linear-gradient(120deg, #0877c8, #09090a 60%, #09090a);
}

.home-final-panel:after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -130px;
    width: 310px;
    height: 310px;
    border: 55px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.home-final-panel>div {
    position: relative;
    z-index: 2;
}

.home-final-panel span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
}

.home-final-panel h2 {
    margin: 0 0 7px;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -.045em;
}

.home-final-panel h2 strong {
    font-weight: 900;
}

.home-final-panel p {
    max-width: 620px;
    margin: 0;
    color: #d9efff;
    font-size: 13px;
}

.home-final-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.home-cta-white {
    color: #086fb8;
    background: #fff;
}

.home-cta-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    background: transparent;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .home-slide-grid {
        grid-template-columns: 1fr 440px;
        gap: 25px;
    }

    .home-featured-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-cert-grid div {
        border-bottom: 1px solid #e1e8ee;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-large {
        grid-column: span 2;
    }
}


@media(max-width:900px) {

    .home-slider {
        min-height: auto;
    }

    .home-slide-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 64px;
        padding-bottom: 65px;
    }

    .home-slide-copy {
        text-align: center;
        margin: auto;
    }

    .hero-kicker {
        justify-content: center;
    }

    .home-slide-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-slide-actions,
    .hero-mini-proof {
        justify-content: center;
    }

    .home-slide-product {
        height: 430px;
    }

    .hero-float-one {
        left: 8%;
    }

    .hero-float-two {
        right: 8%;
    }

    .slider-arrow {
        display: none;
    }

    .home-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modern-section-title {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-brand-panel {
        grid-template-columns: 1fr;
    }

    .home-brand-product {
        min-height: 430px;
    }

    .home-brand-content {
        padding: 20px 45px 55px;
        text-align: center;
    }

    .brand-feature-list {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cert-header {
        display: block;
    }

    .home-faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-faq-intro {
        position: static;
    }

    .home-final-panel {
        display: block;
        text-align: center;
    }

    .home-final-actions {
        justify-content: center;
        margin-top: 25px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:640px) {

    .home-slide-grid {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .home-slide-copy h1,
    .home-slide-copy .hero-h1 {
        font-size: 41px;
        line-height: 1.02;
    }

    .home-slide-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .home-slide-actions {
        flex-direction: column;
    }

    .home-slide-actions .btn {
        width: 100%;
    }

    .hero-mini-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .home-slide-product {
        height: 340px;
        margin-top: 10px;
    }

    .hero-floating-card,
    .hero-spec-card {
        display: none;
    }

    .hero-product-glow {
        width: 280px;
        height: 280px;
    }

    .slider-dots {
        bottom: 16px;
    }

    .home-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-trust-item {
        padding: 17px 13px;
    }

    .trust-number {
        font-size: 16px;
    }

    .home-trust-item p {
        font-size: 10px;
    }

    .modern-section-title h2,
    .home-cert-header h2 {
        font-size: 35px;
    }

    .home-category-grid {
        display: block;
    }

    .home-category-card {
        min-height: 330px;
        margin-bottom: 14px;
    }

    .category-large {
        min-height: 400px;
    }

    .home-category-card img,
    .category-large img {
        width: 80%;
        height: 58%;
        right: 0;
    }

    .home-featured-products {
        grid-template-columns: 1fr;
    }

    .home-product-image {
        height: 330px;
    }

    .home-brand-panel {
        border-radius: 23px;
    }

    .home-brand-product {
        min-height: 340px;
    }

    .brand-product-circle {
        width: 280px;
        height: 280px;
    }

    .home-brand-content {
        padding: 0 24px 38px;
    }

    .home-brand-content h2 {
        font-size: 39px;
    }

    .brand-feature-list {
        grid-template-columns: 1fr;
    }

    .about-side-card ul {
        grid-template-columns: 1fr;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-process-card {
        min-height: 210px;
    }

    .home-process-card h3 {
        margin-top: 32px;
    }

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

    .home-cert-grid div {
        min-height: 100px;
    }

    .home-faq-list summary {
        font-size: 14px;
    }

    .home-final-panel {
        padding: 38px 23px;
    }

    .home-final-panel h2 {
        font-size: 37px;
    }

    .home-final-actions {
        flex-direction: column;
    }

    .home-final-actions .btn {
        width: 100%;
    }

}


/* Very small phones */

@media(max-width:380px) {

    .home-slide-copy h1,
    .home-slide-copy .hero-h1 {
        font-size: 35px;
    }

    .home-slide-product {
        height: 285px;
    }

    .home-trust-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-item {
        border-left: 1px solid #e9eff5;
    }

}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.geosun-logo {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width:768px) {
    .geosun-logo {
        width: 135px;
    }
}

.footer-geosun-logo {
    width: 175px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}

/* =====================================================
   PREMIUM MANUFACTURING PROCESS
===================================================== */

.premium-process {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(0, 132, 255, .08), transparent 28%),
        linear-gradient(180deg, #ffffed 0%, #ffffed 100%);
}

.premium-process::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: -220px;
    border: 1px solid rgba(0, 113, 220, .08);
    border-radius: 50%;
}

.premium-process-title {
    margin-bottom: 55px;
}

.premium-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.premium-process-card {
    position: relative;
    min-height: 270px;
    padding: 34px 30px 32px;
    overflow: hidden;
    border: 1px solid #e4ebf3;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 35px rgba(9, 40, 72, .045);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.premium-process-card:hover {
    transform: translateY(-8px);
    border-color: #c7e3fb;
    box-shadow: 0 24px 55px rgba(7, 54, 98, .11);
}

.process-step {
    position: absolute;
    right: 26px;
    top: 20px;
    color: #e3edf6;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
}

.process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    border-radius: 15px;
    color: #087bd7;
    background: linear-gradient(145deg, #f1f8ff, #ffffff);
    border: 1px solid #d9ebfb;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(8, 123, 215, .07);
}

.premium-process-card h3 {
    margin: 0 0 11px;
    color: #071c34;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.45px;
}

.premium-process-card p {
    margin: 0;
    color: #748598;
    font-size: 13px;
    line-height: 1.75;
}

.premium-process-card::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a7ce1, #32b8ff);
    transition: width .35s ease;
}

.premium-process-card:hover::after {
    width: 72px;
}

@media(max-width:1000px) {
    .premium-process {
        padding: 85px 0;
    }

    .premium-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .premium-process {
        padding: 70px 0;
    }

    .premium-process-title {
        margin-bottom: 38px;
    }

    .premium-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .premium-process-card {
        min-height: auto;
        padding: 28px 24px 30px;
    }

    .process-icon {
        margin-bottom: 30px;
    }

    .process-step {
        font-size: 36px;
    }
}

/* ==========================================================
   PREMIUM PRODUCT CATEGORY SHOWCASE
========================================================== */

.category-premium {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 10%, rgba(13, 143, 235, .08), transparent 25%),
        #f6f9fc;
}

.category-premium-title {
    margin-bottom: 48px;
}


/* ==========================================================
   GRID
========================================================== */

.premium-category-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr .85fr;
    grid-template-rows: 300px 300px;
    gap: 16px;
}


/* ==========================================================
   BASE CARD
========================================================== */

.premium-category-card {
    position: relative;
    display: block;
    overflow: hidden;

    padding: 28px;

    border-radius: 24px;
    border: 1px solid #e3ebf2;

    background: #fff;

    color: #071b31;
    text-decoration: none;

    box-shadow:
        0 2px 3px rgba(8, 38, 67, .02),
        0 15px 40px rgba(8, 38, 67, .045);

    transition:
        transform .4s cubic-bezier(.2, .7, .2, 1),
        box-shadow .4s ease,
        border-color .4s ease;
}

.premium-category-card:hover {
    transform: translateY(-6px);

    border-color: #cfe4f5;

    box-shadow:
        0 25px 60px rgba(8, 43, 75, .12);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.premium-category-main {
    grid-row: 1 / 3;
}

.premium-category-tower {
    grid-row: 1 / 3;
}


/* ==========================================================
   CARD HEADER
========================================================== */

.premium-category-head {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-index {
    color: #0b8de5;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}


/* ARROW */

.premium-category-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dce6ee;
    border-radius: 50%;

    background: #fff;

    color: #071b31;
    font-size: 18px;

    transition: .35s ease;
}

.premium-category-card:hover .premium-category-arrow {
    color: #fff;
    background: #071e35;
    border-color: #071e35;

    transform: rotate(45deg);
}


/* ==========================================================
   CONTENT
========================================================== */

.premium-category-copy {
    position: relative;
    z-index: 4;

    margin-top: 30px;
}

.category-label {
    display: block;

    margin-bottom: 8px;

    color: #0b8de5;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.7px;
}

.premium-category-copy h3 {
    margin: 0 0 10px;

    color: #071b31;

    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.05;

    letter-spacing: -1px;
}

.premium-category-copy p {
    max-width: 330px;

    margin: 0;

    color: #748495;

    font-size: 12px;
    line-height: 1.7;
}


/* ==========================================================
   PRODUCT IMAGES
========================================================== */

.premium-category-image {
    position: absolute;

    left: 8%;
    right: 8%;
    bottom: 52px;

    height: 50%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.premium-category-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(0 22px 20px rgba(5, 25, 45, .14));

    transition:
        transform .55s cubic-bezier(.2, .7, .2, 1);
}

.premium-category-card:hover .premium-category-image img {
    transform: scale(1.055) translateY(-3px);
}


/* LARGE SOUNDBAR */

.premium-category-main .premium-category-image {
    left: 5%;
    right: 5%;

    height: 51%;
}


/* TOWER */

.premium-category-tower .premium-category-image {
    height: 54%;

    left: 12%;
    right: 12%;
}


/* ==========================================================
   SMALL CARDS
========================================================== */

.premium-category-small .premium-category-copy {
    margin-top: 20px;
}

.premium-category-small .premium-category-copy h3 {
    max-width: 190px;

    font-size: 23px;
}

.premium-category-small .premium-category-copy p {
    max-width: 180px;

    font-size: 11px;
}

.premium-category-small .premium-category-image {
    left: auto;
    right: 10px;
    bottom: 8px;

    width: 43%;
    height: 50%;
}


/* ==========================================================
   BOTTOM SPEC
========================================================== */

.category-bottom {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 22px;

    z-index: 5;

    display: flex;
    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid #edf1f5;

    color: #8a98a5;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==========================================================
   MORE AUDIO DARK CARD
========================================================== */

.premium-category-more {
    color: #fff;

    border-color: transparent;

    background:
        radial-gradient(circle at 95% 100%,
            rgba(27, 157, 242, .42),
            transparent 42%),
        linear-gradient(135deg,
            #061a2e 0%,
            #082b4b 55%,
            #07558a 100%);
}

.premium-category-more .category-index {
    color: #53bcff;
}

.premium-category-more .premium-category-arrow {
    color: #fff;

    background: rgba(255, 255, 255, .06);

    border-color: rgba(255, 255, 255, .18);
}

.premium-category-more:hover .premium-category-arrow {
    color: #071b31;
    background: #fff;
}

.more-audio-content {
    position: relative;
    z-index: 3;

    margin-top: 24px;
}

.premium-category-more .category-label {
    color: #57bdff;
}

.more-audio-content h3 {
    max-width: 290px;

    margin: 0 0 12px;

    color: #fff;

    font-size: 25px;
    line-height: 1.08;

    letter-spacing: -.8px;
}

.more-audio-content h3 strong {
    display: block;

    color: #58bdff;

    font-weight: 700;
}

.more-audio-content p {
    max-width: 260px;

    margin: 0;

    color: #a8bed0;

    font-size: 11px;
    line-height: 1.65;
}

.more-products-button {
    display: inline-block;

    margin-top: 18px;

    color: #fff;

    font-size: 10px;
    font-weight: 700;
}

.more-audio-circle {
    position: absolute;

    width: 230px;
    height: 230px;

    right: -115px;
    bottom: -130px;

    border: 35px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}


/* ==========================================================
   DECORATIVE DETAIL
========================================================== */

.premium-category-card::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -150px;
    bottom: -150px;

    border: 1px solid rgba(9, 135, 222, .08);
    border-radius: 50%;

    pointer-events: none;
}

.premium-category-more::after {
    display: none;
}


/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1050px) {

    .category-premium {
        padding: 85px 0 95px;
    }

    .premium-category-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .premium-category-main,
    .premium-category-tower {
        grid-row: auto;

        min-height: 520px;
    }

    .premium-category-small,
    .premium-category-more {
        min-height: 320px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:650px) {

    .category-premium {
        padding: 65px 0 75px;
    }

    .category-premium-title {
        margin-bottom: 32px;
    }

    .premium-category-grid {
        display: flex;
        flex-direction: column;

        gap: 14px;
    }

    .premium-category-card,
    .premium-category-main,
    .premium-category-tower {
        width: 100%;

        min-height: 470px;

        padding: 24px;

        border-radius: 20px;
    }

    .premium-category-small {
        min-height: 370px;
    }

    .premium-category-more {
        min-height: 330px;
    }

    .premium-category-copy {
        margin-top: 24px;
    }

    .premium-category-copy h3 {
        font-size: 27px;
    }

    .premium-category-image,
    .premium-category-main .premium-category-image,
    .premium-category-tower .premium-category-image {
        left: 8%;
        right: 8%;

        bottom: 50px;

        width: auto;
        height: 48%;
    }

    .premium-category-small .premium-category-image {
        left: auto;
        right: 10px;

        bottom: 12px;

        width: 48%;
        height: 45%;
    }

    .category-bottom {
        left: 24px;
        right: 24px;
    }
}

/* ==========================================================
   GEOSUN PRODUCT RANGE - PREMIUM COLOR UPDATE
========================================================== */

.category-premium {
    padding: 110px 0 120px;

    background:
        radial-gradient(circle at 8% 15%,
            rgba(23, 139, 226, .09),
            transparent 28%),
        radial-gradient(circle at 92% 80%,
            rgba(91, 190, 255, .10),
            transparent 25%),
        linear-gradient(180deg,
            #ffffed 0%,
            #f3f8fc 50%,
            #01071b 100%);
}


/* Remove old numbers completely */

.category-index {
    display: none !important;
}


/* Arrow goes to right */

.premium-category-head {
    justify-content: flex-end;
}


/* ==========================================================
   SOUNDBAR - SOFT ICE BLUE
========================================================== */

.premium-category-main {
    background:
        radial-gradient(circle at 60% 72%,
            rgba(72, 175, 241, .18),
            transparent 35%),
        linear-gradient(145deg,
            #ffffff 0%,
            #edf8ff 100%);

    border-color: #dcecf7;
}


/* ==========================================================
   TOWER - WARM PREMIUM LIGHT
========================================================== */

.premium-category-tower {
    background:
        radial-gradient(circle at 55% 75%,
            rgba(208, 224, 235, .30),
            transparent 38%),
        linear-gradient(145deg,
            #ffffff 0%,
            #f3f6f8 100%);

    border-color: #e2e8ed;
}


/* ==========================================================
   BLUETOOTH - GEOSUN BLUE FEATURE CARD
========================================================== */

.premium-category-small:nth-of-type(3) {
    color: #fff;

    background:
        radial-gradient(circle at 82% 75%,
            rgba(59, 181, 255, .34),
            transparent 38%),
        linear-gradient(135deg,
            #041a30 0%,
            #07375d 52%,
            #075f99 100%);

    border-color: transparent;
}

.premium-category-small:nth-of-type(3) .category-label {
    color: #62c4ff;
}

.premium-category-small:nth-of-type(3) .premium-category-copy h3 {
    color: #fff;
}

.premium-category-small:nth-of-type(3) .premium-category-copy p {
    color: #b4cad9;
}

.premium-category-small:nth-of-type(3) .premium-category-arrow {
    color: #fff;

    background: rgba(255, 255, 255, .07);

    border-color: rgba(255, 255, 255, .20);
}


/* ==========================================================
   TROLLEY - VERY LIGHT BLUE/GREY
========================================================== */

.premium-category-small:nth-of-type(4) {
    background:
        radial-gradient(circle at 83% 75%,
            rgba(53, 154, 221, .13),
            transparent 38%),
        linear-gradient(145deg,
            #ffffff 0%,
            #edf4f8 100%);
}


/* ==========================================================
   MORE AUDIO - PREMIUM DARK
========================================================== */

.premium-category-more {
    background:
        radial-gradient(circle at 90% 90%,
            rgba(27, 168, 255, .35),
            transparent 38%),
        linear-gradient(135deg,
            #061523 0%,
            #072a47 55%,
            #064d7d 100%);

    border: none;
}


/* ==========================================================
   MORE PREMIUM PRODUCT IMAGE PRESENTATION
========================================================== */

.premium-category-image::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4%;

    width: 70%;
    height: 22px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(17, 52, 77, .12);

    filter: blur(15px);
}

.premium-category-image img {
    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 24px 24px rgba(8, 31, 49, .13));
}


/* ==========================================================
   CLEANER ARROW
========================================================== */

.premium-category-arrow {
    width: 44px;
    height: 44px;

    color: #0b78c8;

    border: 1px solid rgba(10, 115, 190, .16);

    background: rgba(255, 255, 255, .72);

    backdrop-filter: blur(8px);
}

.premium-category-card:hover .premium-category-arrow {
    color: #fff;

    border-color: #087ed5;

    background: #087ed5;

    transform: rotate(45deg);
}


/* ==========================================================
   CARD HOVER
========================================================== */

.premium-category-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 30px 70px rgba(5, 40, 70, .13);
}


/* ==========================================================
   TEXT
========================================================== */

.premium-category-copy h3 {
    font-weight: 750;
    letter-spacing: -1.2px;
}

.premium-category-copy p {
    color: #708294;
}


/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:650px) {

    .category-premium {
        padding: 70px 0 80px;
    }

    .premium-category-main {
        background:
            linear-gradient(155deg,
                #ffffff,
                #eaf6fd);
    }

    .premium-category-tower {
        background:
            linear-gradient(155deg,
                #ffffff,
                #f0f4f7);
    }

}

/* =========================================================
   FEATURED PRODUCTS — PREMIUM HORIZONTAL CAROUSEL
   DESKTOP 4 | TABLET 2 | MOBILE 1
========================================================= */

.home-products-section {
    position: relative;
    padding: 100px 0 105px;
    overflow: hidden;
    background: #ffffed;
}


/* =========================
   HEADING
========================= */

.home-products-section .modern-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 46px;
}

.home-products-section .modern-section-title h2 {
    max-width: 720px;
    margin: 0;
    color: #071a33;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.home-products-section .modern-section-title h2 span {
    color: #071c34;
}

.home-products-section .section-title-side {
    flex-shrink: 0;
}


/* =========================
   CAROUSEL SHELL
========================= */

.featured-carousel {
    position: relative;
    width: 100%;
}

.featured-carousel-window {
    position: relative;
    width: 100%;
    overflow: hidden;
    outline: none;
}


/* =========================
   TRACK
========================= */

.home-featured-products {
    --product-gap: 18px;

    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;

    width: 100% !important;

    gap: var(--product-gap);

    margin: 0 !important;
    padding: 0 !important;

    transform: translate3d(0, 0, 0);

    transition:
        transform .62s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}


/* =========================
   EXACTLY 4 CARDS
========================= */

.home-featured-card {
    position: relative;

    flex:
        0 0 calc((100% - (var(--product-gap) * 3)) / 4);

    width:
        calc((100% - (var(--product-gap) * 3)) / 4);

    min-width: 0;

    overflow: hidden;

    border: 1px solid #e5e9ee;
    border-radius: 3px;

    background: #f5f6f7;

    box-shadow: none;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.home-featured-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 42px rgba(4, 24, 44, .10);
}


/* =========================
   IMAGE AREA
========================= */

.home-product-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 300px;

    padding: 26px 22px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #f8f9fa 0%,
            #edf1f4 100%);
}

.home-product-image::after {
    content: "";

    position: absolute;

    left: 20%;
    right: 20%;
    bottom: 30px;

    height: 18px;

    border-radius: 50%;

    background: rgba(16, 37, 56, .12);

    filter: blur(15px);
}

.home-product-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transform: scale(.90);

    transition:
        transform .55s cubic-bezier(.2, .7, .2, 1);
}

.home-featured-card:hover .home-product-image img {
    transform: scale(.97);
}


/* =========================
   PRODUCT BADGE
========================= */

.home-product-tag {
    position: absolute;

    z-index: 5;

    top: 17px;
    left: 17px;

    padding: 7px 10px;

    border-radius: 2px;

    background: #fff;

    color: #0879d9;

    box-shadow:
        0 4px 15px rgba(4, 28, 50, .07);

    font-size: 9px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: .8px;
    text-transform: uppercase;
}


/* =========================
   VIEW BUTTON
========================= */

.product-view-circle {
    position: absolute;

    z-index: 6;

    right: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #111820;
    color: #fff;

    font-size: 9px;
    font-weight: 800;

    opacity: 0;

    transform: translateY(8px);

    transition: .3s ease;
}

.home-featured-card:hover .product-view-circle {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   PRODUCT INFORMATION
========================= */

.home-product-content {
    min-height: 215px;

    padding: 21px 20px 20px;

    background: #fff;
}

.home-product-category {
    display: block;

    margin-bottom: 7px;

    color: #087bd3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.home-product-content h3 {
    margin: 0 0 17px;

    color: #071a32;

    font-size: 20px;
    line-height: 1.16;

    letter-spacing: -.5px;

    font-weight: 750;
}

.home-product-content h3 a {
    color: inherit;
}


/* =========================
   SPECIFICATIONS
========================= */

.home-mini-specs {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 0 0 17px;
}

.home-mini-specs span {
    padding: 9px 10px;

    border-radius: 2px;

    background: #f5f7f9;

    color: #17334c;

    font-size: 11px;
    font-weight: 750;
}

.home-mini-specs small {
    display: block;

    margin-bottom: 2px;

    color: #8b99a6;

    font-size: 8px;
    font-weight: 600;

    text-transform: uppercase;
}


/* =========================
   PRODUCT FOOTER
========================= */

.home-product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 0;

    padding-top: 14px;

    border-top: 1px solid #e7ebef;
}

.home-product-bottom>span {
    color: #8a96a2;

    font-size: 10px;
    font-weight: 600;
}

.home-product-bottom a {
    color: #0879d9;

    font-size: 11px;
    font-weight: 800;
}

.home-product-bottom a:hover {
    text-decoration: underline;
}


/* =========================================================
   LARGE SIDE ARROWS
========================================================= */

.featured-nav {
    position: absolute;

    z-index: 20;

    top: 40%;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 70px;

    padding: 0;

    border: 0;
    border-radius: 0;

    color: #fff;

    background: rgba(10, 18, 27, .78);

    backdrop-filter: blur(6px);

    font-family: Arial, sans-serif;

    font-size: 35px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background .25s ease,
        opacity .25s ease;
}

.featured-prev {
    left: 0;
}

.featured-next {
    right: 0;
}

.featured-nav:hover {
    background: #087fd7;
}

.featured-nav:disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   DOT NAVIGATION
========================================================= */

.featured-carousel-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 14px;

    margin-top: 30px;
}

.featured-carousel-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c6ccd2;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.featured-carousel-dot:hover {
    background: #77818b;
}

.featured-carousel-dot.active {
    background: #161d25;

    transform: scale(1.35);
}


/* =========================================================
   TABLET — EXACTLY 2
========================================================= */

@media(max-width:1100px) {

    .home-products-section {
        padding: 80px 0;
    }

    .home-featured-products {
        --product-gap: 18px;
    }

    .home-featured-card {

        flex:
            0 0 calc((100% - var(--product-gap)) / 2);

        width:
            calc((100% - var(--product-gap)) / 2);
    }

    .home-product-image {
        height: 340px;
    }

}


/* =========================================================
   MOBILE — EXACTLY 1
========================================================= */

@media(max-width:640px) {

    .home-products-section {
        padding: 65px 0;
    }

    .home-products-section .modern-section-title {

        display: block;

        margin-bottom: 30px;
    }

    .home-products-section .modern-section-title h2 {

        font-size: 36px;

        line-height: 1.03;

        letter-spacing: -1.5px;
    }

    .home-products-section .section-title-side {

        margin-top: 18px;
    }


    .home-featured-products {

        --product-gap: 14px;
    }


    .home-featured-card {

        flex: 0 0 100%;

        width: 100%;
    }


    .home-product-image {

        height: 330px;

        padding: 24px;
    }


    .home-product-content {

        min-height: auto;

        padding: 22px 20px;
    }


    .home-product-content h3 {

        font-size: 22px;
    }


    .featured-nav {

        width: 42px;

        height: 60px;

        font-size: 29px;
    }


    .featured-carousel-dots {

        margin-top: 24px;
    }

}

/* =========================================================
   PREMIUM BRAND LOGO SHOWCASE
========================================================= */

.brand-showcase {
    position: relative;
    overflow: hidden;
    padding: 95px 0 72px;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(19, 142, 226, .07),
            transparent 28%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbfd 100%);

    border-top: 1px solid #edf2f6;
    border-bottom: 1px solid #edf2f6;
}


/* =========================================================
   HEADING
========================================================= */

.brand-showcase-head {
    display: grid;

    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 52px;
}

.brand-showcase-head h2 {
    max-width: 720px;

    margin: 8px 0 0;

    color: #071a31;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2.4px;
}

.brand-showcase-head h2 span {
    display: block;

    color: #1689df;
}

.brand-showcase-head>p {
    max-width: 410px;

    margin: 0 0 4px;

    color: #718294;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   MARQUEE
========================================================= */

.brand-marquee {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 10px 0 15px;
}


/* =========================================================
   TRACK
========================================================= */

.brand-marquee-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 18px;

    animation:
        geosunLogoScroll 32s linear infinite;

    will-change: transform;
}


/* Pause when user inspects logos */

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


/* =========================================================
   LOGO TILE
========================================================= */

.brand-logo-item {
    position: relative;

    flex: 0 0 220px;

    height: 118px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px 32px;

    overflow: hidden;

    border: 1px solid rgba(13, 48, 77, .075);

    border-radius: 14px;

    background: rgba(255, 255, 255, .88);

    box-shadow:
        0 8px 30px rgba(5, 36, 62, .035);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


/* subtle highlight */

.brand-logo-item::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: -55px;
    right: -45px;

    border-radius: 50%;

    background: rgba(20, 143, 226, .055);

    transition: .4s ease;
}


/* =========================================================
   LOGOS
========================================================= */

.brand-logo-item img {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    max-width: 145px;

    max-height: 54px;

    object-fit: contain;

    filter:
        grayscale(1) saturate(0) opacity(.68);

    transition:
        filter .35s ease,
        transform .35s ease,
        opacity .35s ease;
}


.brand-logo-wide img {
    max-width: 165px;
}


.brand-logo-svl img {
    max-height: 60px;
}


/* =========================================================
   HOVER
========================================================= */

.brand-logo-item:hover {
    transform: translateY(-5px);

    background: #fff;

    border-color: rgba(16, 135, 218, .20);

    box-shadow:
        0 20px 45px rgba(5, 39, 68, .10);
}

.brand-logo-item:hover::before {
    transform: scale(1.7);
}

.brand-logo-item:hover img {
    filter:
        grayscale(0) saturate(1) opacity(1);

    transform: scale(1.06);
}


/* =========================================================
   EDGE FADES
========================================================= */

.brand-marquee-fade {
    position: absolute;

    z-index: 10;

    top: 0;
    bottom: 0;

    width: 130px;

    pointer-events: none;
}

.brand-fade-left {
    left: 0;

    background:
        linear-gradient(90deg,
            #f9fbfd 10%,
            rgba(249, 251, 253, 0));
}

.brand-fade-right {
    right: 0;

    background:
        linear-gradient(270deg,
            #f9fbfd 10%,
            rgba(249, 251, 253, 0));
}


/* =========================================================
   BOTTOM DETAIL
========================================================= */

.brand-showcase-bottom {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    margin-top: 35px;
}

.brand-showcase-bottom>span {
    width: 70px;

    height: 1px;

    background: #d9e2e9;
}

.brand-showcase-bottom p {
    margin: 0;

    color: #8493a1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


/* =========================================================
   INFINITE ANIMATION
========================================================= */

@keyframes geosunLogoScroll {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 9px),
                0,
                0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px) {

    .brand-showcase {
        padding: 75px 0 62px;
    }

    .brand-showcase-head {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 38px;
    }

    .brand-logo-item {
        flex-basis: 190px;

        height: 105px;

        padding: 22px 27px;
    }

    .brand-logo-item img {
        max-width: 130px;

        max-height: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:640px) {

    .brand-showcase {
        padding: 62px 0 52px;
    }

    .brand-showcase-head {
        margin-bottom: 30px;
    }

    .brand-showcase-head h2 {
        font-size: 35px;

        letter-spacing: -1.5px;
    }

    .brand-showcase-head>p {
        font-size: 12px;
    }

    .brand-marquee-track {
        gap: 12px;

        animation-duration: 24s;
    }

    .brand-logo-item {
        flex-basis: 155px;

        height: 88px;

        padding: 18px 22px;

        border-radius: 10px;
    }

    .brand-logo-item img {
        max-width: 110px;

        max-height: 40px;
    }

    .brand-marquee-fade {
        width: 35px;
    }

    .brand-showcase-bottom {
        gap: 10px;

        margin-top: 25px;
    }

    .brand-showcase-bottom>span {
        width: 22px;
    }

    .brand-showcase-bottom p {
        font-size: 7px;

        letter-spacing: .8px;

        white-space: nowrap;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media(prefers-reduced-motion:reduce) {

    .brand-marquee-track {
        animation: none;
    }

}

/* =========================================================
   GEOSUN — FOOTER LEGAL BAR
========================================================= */

.premium-legal{
    width:100%;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:32px;

    padding:22px 0;
    margin-top:0;

    border-top:1px solid rgba(255,255,255,.10);

    font-size:14px;
    line-height:1.5;
    color:#9db5cc;
}

/* Left */
.premium-legal > span:first-child{
    justify-self:start;
    white-space:nowrap;
}

/* Center */
.premium-legal .legal-links{
    justify-self:center;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    white-space:nowrap;
}

.premium-legal .legal-links a{
    display:inline-flex;
    align-items:center;

    color:#a9c5df;
    text-decoration:none;

    transition:
        color .2s ease,
        opacity .2s ease;
}

.premium-legal .legal-links a:hover{
    color:#ffffff;
}

.premium-legal .legal-divider{
    color:rgba(255,255,255,.28);
}

/* Right */
.premium-legal > span:last-child{
    justify-self:end;
    white-space:nowrap;
    text-align:right;
}

.premium-legal .atw-credit{
    color:#2498ef;
    font-weight:700;
    text-decoration:none;
}

.premium-legal .atw-credit:hover{
    color:#ffffff;
}


/* Tablet */
@media (max-width:1100px){

    .premium-legal{
        grid-template-columns:1fr 1fr;
        gap:16px 30px;
    }

    .premium-legal .legal-links{
        grid-column:1 / -1;
        grid-row:2;
        justify-self:center;
    }

    .premium-legal > span:last-child{
        justify-self:end;
    }
}


/* Mobile */
@media (max-width:767px){

    .premium-legal{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        gap:12px;
        padding:22px 0;

        text-align:center;
        font-size:13px;
    }

    .premium-legal > span:first-child,
    .premium-legal > span:last-child{
        justify-self:auto;
        white-space:normal;
        text-align:center;
    }

    .premium-legal .legal-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px 12px;

        white-space:normal;
    }
}

/* =========================================================
   RELATED PRODUCTS — PREMIUM PRODUCT CARDS
========================================================= */

.related-products-section{
    background:#f6f9fc !important;
    overflow:hidden;
}

.related-products-section .modern-section-title{
    margin-bottom:34px;
}


/* GRID */

.related-products-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:22px !important;
    width:100%;
    align-items:stretch;
}


/* CARD */

.related-product-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;

    background:#fff;
    border:1px solid #e5edf4;
    border-radius:20px;

    box-shadow:
        0 3px 10px rgba(10,38,65,.02),
        0 12px 30px rgba(10,38,65,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.related-product-card:hover{
    transform:translateY(-6px);
    border-color:#d4e5f3;

    box-shadow:
        0 8px 20px rgba(10,38,65,.05),
        0 22px 45px rgba(10,38,65,.09);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.related-product-image{
    position:relative;

    display:flex !important;
    align-items:center;
    justify-content:center;

    width:100%;
    height:310px !important;

    padding:28px !important;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            #f7fafc 0%,
            #edf4f8 100%
        );

    text-decoration:none;
}


/* IMPORTANT — FIX HUGE IMAGES */

.related-product-image img{
    display:block;

    width:100% !important;
    height:100% !important;

    max-width:260px !important;
    max-height:255px !important;

    object-fit:contain !important;

    margin:auto;

    transition:transform .4s ease;
}


.related-product-card:hover
.related-product-image img{
    transform:scale(1.045);
}


/* subtle product stage */

.related-product-image::after{
    content:"";

    position:absolute;

    left:22%;
    right:22%;
    bottom:25px;

    height:18px;

    background:rgba(9,36,61,.10);

    filter:blur(15px);

    border-radius:50%;

    z-index:0;
}

.related-product-image img{
    position:relative;
    z-index:1;
}


/* =========================================================
   CONTENT
========================================================= */

.related-product-content{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:23px 24px 25px !important;

    border-top:1px solid #edf2f6;
}


.related-product-content .category-meta{
    display:block;

    margin-bottom:8px;

    color:#0787df;

    font-size:11px;
    font-weight:800;

    letter-spacing:.08em;
    text-transform:uppercase;
}


.related-product-content h3{
    margin:0 0 11px !important;

    font-size:20px !important;
    line-height:1.25;

    letter-spacing:-.025em;
}


.related-product-content h3 a{
    color:#09233c;
    text-decoration:none;
}


.related-product-content h3 a:hover{
    color:#0787df;
}


.related-product-content p{
    margin:0 0 20px !important;

    color:#6e8192;

    font-size:13px !important;
    line-height:1.65;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


/* push button/link to bottom */

.related-product-content
.text-arrow-link{
    margin-top:auto;

    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#087fd1;

    font-size:13px;
    font-weight:700;

    text-decoration:none;
}


.related-product-content
.text-arrow-link span{
    transition:transform .25s ease;
}


.related-product-content
.text-arrow-link:hover span{
    transform:translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

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

    .related-product-image{
        height:280px !important;
    }

    .related-product-image img{
        max-height:225px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .related-products-grid{
        grid-template-columns:1fr !important;
        gap:18px !important;
    }

    .related-product-card{
        border-radius:16px;
    }

    .related-product-image{
        height:250px !important;
        padding:22px !important;
    }

    .related-product-image img{
        max-width:220px !important;
        max-height:205px !important;
    }

    .related-product-content{
        padding:20px !important;
    }

    .related-product-content h3{
        font-size:19px !important;
    }

}

/* =========================================================
   PREMIUM PRODUCT SPECIFICATIONS
========================================================= */

.premium-spec-section{
    background:#f5f8fb;
}

.spec-layout{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:70px;
    align-items:start;
}

.spec-heading{
    position:sticky;
    top:120px;
}

.spec-heading h2,
.customization-head h2{
    margin:14px 0 18px;
    color:#09233c;
    font-size:clamp(34px,4vw,54px);
    line-height:1.04;
    letter-spacing:-.045em;
}

.spec-heading h2 span,
.customization-head h2 span{
    display:block;
    color:#0787df;
}

.spec-heading > p{
    max-width:480px;
    margin:0;
    color:#687d90;
    font-size:15px;
    line-height:1.75;
}

.spec-highlight{
    display:inline-flex;
    flex-direction:column;
    margin-top:32px;
    padding:18px 22px;
    background:#09233c;
    border-radius:14px;
}

.spec-highlight strong{
    color:#fff;
    font-size:18px;
}

.spec-highlight span{
    margin-top:4px;
    color:#8fcfff;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}


/* SPEC CARD */

.premium-spec-card{
    overflow:hidden;
    padding:10px 28px;
    background:#fff;
    border:1px solid #e2eaf1;
    border-radius:22px;
    box-shadow:0 18px 50px rgba(11,43,70,.06);
}

.spec-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    min-height:72px;
    border-bottom:1px solid #edf2f6;
}

.spec-row:last-child{
    border-bottom:0;
}

.spec-row span{
    color:#7a8c9c;
    font-size:13px;
}

.spec-row strong{
    color:#0a243d;
    font-size:14px;
    font-weight:700;
}


/* =========================================================
   CUSTOMIZATION
========================================================= */

.customization-section{
    background:#fff;
}

.customization-head{
    display:grid;
    grid-template-columns:1.15fr .65fr;
    gap:70px;
    align-items:end;
    margin-bottom:42px;
}

.customization-head > p{
    margin:0 0 8px;
    color:#687d90;
    font-size:14px;
    line-height:1.75;
}


/* CARDS */

.customization-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.custom-option{
    position:relative;
    min-height:235px;
    padding:28px;

    background:#f6f9fc;
    border:1px solid #e7eef4;
    border-radius:18px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.custom-option:hover{
    transform:translateY(-5px);
    background:#fff;
    box-shadow:0 18px 40px rgba(10,42,68,.08);
}

.custom-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    margin-bottom:38px;

    background:#e5f4ff;
    border-radius:12px;

    color:#0787df;
    font-size:12px;
    font-weight:800;
}

.custom-option h3{
    margin:0 0 10px;
    color:#09233c;
    font-size:19px;
    letter-spacing:-.025em;
}

.custom-option p{
    margin:0;
    color:#718496;
    font-size:13px;
    line-height:1.65;
}


/* FEATURE CARD */

.custom-option-dark{
    display:flex;
    flex-direction:column;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(13,144,225,.35),
            transparent 45%
        ),
        #08243d;

    border-color:#08243d;
}

.custom-option-dark:hover{
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(13,144,225,.45),
            transparent 45%
        ),
        #08243d;
}

.custom-option-dark h3{
    margin-top:25px;
    color:#fff;
    font-size:23px;
}

.custom-option-dark p{
    color:#b9cfdf;
}

.custom-option-dark .btn{
    align-self:flex-start;
    margin-top:auto;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px){

    .spec-layout{
        grid-template-columns:1fr;
        gap:35px;
    }

    .spec-heading{
        position:static;
    }

    .customization-head{
        grid-template-columns:1fr;
        gap:15px;
    }

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


@media(max-width:600px){

    .premium-spec-card{
        padding:5px 20px;
        border-radius:16px;
    }

    .spec-row{
        grid-template-columns:1fr;
        gap:5px;
        padding:17px 0;
        min-height:0;
    }

    .spec-heading h2,
    .customization-head h2{
        font-size:34px;
    }

    .customization-grid{
        grid-template-columns:1fr;
    }

    .custom-option{
        min-height:auto;
        padding:24px;
    }

    .custom-icon{
        margin-bottom:28px;
    }

    .custom-option-dark{
        min-height:260px;
    }
}

/* =========================================================
   FOOTER SOCIAL MEDIA
========================================================= */

.footer-social{
    margin-top:24px;
}

.footer-social-title{
    display:block;
    margin-bottom:12px;

    color:#9fb1c3;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.footer-social-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
}

.footer-social-links a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;

    color:#fff;
    background:rgba(255,255,255,.05);

    font-size:11px;
    font-weight:800;
    text-decoration:none;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.footer-social-links a:hover{
    transform:translateY(-3px);

    background:#0787df;
    border-color:#0787df;
    color:#fff;
}

@media(max-width:600px){

    .footer-social-links{
        gap:8px;
    }

    .footer-social-links a{
        width:36px;
        height:36px;
    }
}
/* Dynamic CMS pages */
.dynamic-page-hero{background:linear-gradient(135deg,#f7fbff 0%,#eef6fb 100%)}.dynamic-content{max-width:920px;margin:auto;color:#52697d;font-size:16px;line-height:1.85}.dynamic-content h2,.dynamic-content h3{color:#09233c;letter-spacing:-.03em}.dynamic-content h2{font-size:clamp(28px,4vw,44px);margin:42px 0 16px}.dynamic-content h3{font-size:24px;margin:30px 0 12px}.dynamic-content p{margin:0 0 20px}.dynamic-content ul,.dynamic-content ol{padding-left:22px;margin:0 0 24px}.dynamic-content a{color:#087fd1;text-decoration:underline}
