/* ============================================================
   RJK GROUP — MAIN STYLESHEET
   style.css · Shared across all pages
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
    --ink: #0a1628;
    --navy: #0f2d5a;
    --blue: #1a56db;
    --blue2: #2563eb;
    --surface: #f0f4ff;
    --card: #ffffff;
    --muted: #5a6a85;
    --white: #ffffff;
    --border: rgba(26, 86, 219, 0.12);
    --accent: #93c5fd;
    --transition: 0.25s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--surface);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    overflow: visible;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── TYPOGRAPHY ── */
.font-cond {
    font-family: 'Barlow Condensed', sans-serif;
}

/* ── SECTION LABELS ── */
.sec-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    text-align: center;
    margin-bottom: 10px;
}

.sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
}

.sec-desc {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* ── LAYOUT WRAP ── */
.rjk-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes expandW {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

[data-anim] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--blue2);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-2px);
}

.btn-ghost-wh {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-wh:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--blue2);
    border: 1px solid #fff;
}

.btn-white:hover {
    background: var(--surface);
    transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(7, 16, 32, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s ease;
}

.site-nav.scrolled .nav-inner {
    height: 65px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    display: block;
    max-height: 44px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 14px;
    border-radius: 3px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue2);
    padding: 9px 20px;
    border-radius: 4px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(7, 16, 32, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px 24px;
    gap: 4px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: #fff;
}

.nav-mobile .nav-cta {
    margin-top: 12px;
    text-align: center;
    display: block;
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile .nav-cta {
        display: block;
    }
}

@media(max-width:640px) {
    .hero-orb {
        display: none;
    }
}

@media(max-width:560px) {
    .rjk-wrap {
        padding: 48px 18px;
    }

    .nav-inner {
        height: 70px;
        padding: 0 18px;
    }

    .site-nav.scrolled .nav-inner {
        height: 62px;
    }

    .nav-logo-img {
        max-height: 38px;
    }

    .btn,
    .hero-btn-p,
    .hero-btn-o,
    .cta-btn-p,
    .cta-btn-o,
    .cta-btn,
    .prod-link,
    .pdf-link,
    .sol-cta,
    .adv-link {
        justify-content: center;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-btns,
    .cta-btns,
    .prod-btns {
        width: 100%;
    }

    .hero-btns > a,
    .cta-btns > a,
    .prod-btns > a {
        flex: 1 1 100%;
    }

    .spec-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .spec-val,
    .spec-val-r {
        margin-left: 0;
        width: 100%;
        padding-left: 16px;
    }

    .cta-divider {
        display: none;
    }

    .footer-contact-item,
    .cta-ci {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

/* ── HERO (shared base) ── */
.hero {
    background: linear-gradient(135deg, #071020 0%, #0f2d5a 45%, #1a56db 100%);
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 24px 60px;
    position: relative;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-home,
.hero-about,
.hero-products {
    background: #071020;
    height: calc(100vh - 70px);
    min-height: 530px;
    padding-bottom: 0;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/primo-hero.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/doubler-parallel-ply-winder.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/primo-hero.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-home::after,
.hero-about::after,
.hero-products::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #071020 30%, rgba(7, 16, 32, 0.5) 65%, transparent 100%);
    z-index: 1;
}

/* ── PRODUCT PAGE HEROES ── */
.hero-primo,
.hero-cone,
.hero-doubler,
.hero-splicer {
    background: #071020;
    height: calc(100vh - 70px);
    min-height: 530px;
    padding-bottom: 0;
}

.hero-primo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/primo-hero.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-cone::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/high-speed-cone-winder.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
    transform: scaleX(-1);
}

.hero-doubler::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/doubler-parallel-ply-winder.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-splicer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/pneumatic-hand-splicers.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-primo::after,
.hero-cone::after,
.hero-doubler::after,
.hero-splicer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #071020 30%, rgba(7, 16, 32, 0.5) 65%, transparent 100%);
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero-orb1 {
    top: -140px;
    right: -140px;
    width: 560px;
    height: 560px;
    background: rgba(37, 99, 235, 0.13);
}

.hero-orb2 {
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: rgba(26, 86, 219, 0.09);
}

.hero-orb3 {
    top: 50%;
    right: 5%;
    width: 220px;
    height: 220px;
    background: rgba(147, 197, 253, 0.06);
    transform: translateY(-50%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-img-wrap {
    display: none;
}

.hero-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.02;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 span {
    color: var(--accent);
}

.hero-sub {
    margin-top: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    max-width: 480px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hstat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.hstat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-btn-p {
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue2);
    border-radius: 4px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.hero-btn-o {
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.hero-btn-o:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 28px;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandW 0.8s 0.5s ease both;
}

/* ── TRUST BAND ── */
.trust-band {
    background: var(--navy);
    padding: 18px 0;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 10px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
    border-right: none;
}

.trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.trust-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
}

/* ── SECTION BANDS ── */
.section-light {
    background: var(--surface);
    padding: 60px 0;
}

.section-light .rjk-wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.section-white {
    background: var(--white);
    padding: 60px 0;
}

.section-white .rjk-wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.section-dark {
    background: var(--navy);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-dark .rjk-wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.15);
    pointer-events: none;
}

/* ── CARDS (generic) ── */
.card {
    background: var(--card);
    border-radius: 12px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 86, 219, 0.1);
    border-color: var(--blue2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.spec-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 4px;
}

.spec-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.spec-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 20px;
    transition: all 0.3s ease;
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.card-dark .card-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-dark .card-icon svg {
    stroke: var(--accent);
}

.card-dark h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.card-dark p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

/* ── TABLE ── */
.table-wrap {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
}

.rjk-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 500px;
}

.rjk-table thead tr {
    background: var(--navy);
}

.rjk-table thead th {
    padding: 12px 14px;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.rjk-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.rjk-table tbody tr:last-child {
    border-bottom: none;
}

.rjk-table tbody tr:hover {
    background: var(--surface);
}

.rjk-table tbody td {
    padding: 11px 14px;
    font-size: 13px;
    color: var(--ink);
}

.rjk-table tbody tr td:first-child {
    font-weight: 600;
    color: var(--navy);
}

.table-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    padding-left: 4px;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--navy);
    border-radius: 16px;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.18);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
}

.cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 32px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 24px;
}

.cta-btn-p {
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue2);
    border-radius: 4px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.cta-btn-o {
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.cta-btn-o:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.cta-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.cta-ci {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.cta-ci strong {
    color: #fff;
}

.cc-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-ic svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

.cta-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── STAR RATINGS ── */
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    width: 15px;
    height: 15px;
    background: var(--blue2);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ── SITE FOOTER ── */
.site-footer {
    background: var(--ink);
    padding: 56px 24px 28px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.1);
    pointer-events: none;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.footer-brand {}

.footer-logo {
    margin-bottom: 4px;
}

.footer-logo-img {
    display: block;
    max-width: 180px;
    width: auto;
    height: auto;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-item>div {
    min-width: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-contact-text {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-contact-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 2px;
}

.footer-contact-value {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    overflow-wrap: anywhere;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── ENQUIRY SIDEBAR ── */
.enquiry-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    position: sticky;
    top: 90px;
}

.enquiry-box h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.enquiry-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.enq-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

.enq-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--ink);
}

.ei {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ei svg {
    width: 15px;
    height: 15px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.enq-contact-item strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1px;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tbadge {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}

/* ── CHECK LIST ── */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-top: 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
}

.check-list li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── OVERVIEW STRIP ── */
.ov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ov-item {
    background: var(--card);
    border-radius: 12px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ov-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.08);
}

.ov-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ov-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ov-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.ov-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

/* ── CONTENT + SIDEBAR LAYOUT ── */
.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.page-body-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.1;
}

/* ── RELATED PRODUCTS ── */
.rel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.rel-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.rel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26, 86, 219, 0.12);
    border-color: var(--blue);
}

.rel-img {
    height: 180px;
    overflow: hidden;
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rel-card:hover .rel-img img {
    transform: scale(1.05);
}

.rel-body {
    padding: 18px 16px;
}

.rel-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.rel-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.25;
}

.rel-body p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.rel-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.2s;
}

.rel-link::after {
    content: '';
    position: absolute;
    inset: 0;
}

.rel-link:hover {
    gap: 8px;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media(max-width:960px) {
    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-col {
        display: none;
    }
}

@media(max-width:768px) {
    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ov-grid {
        grid-template-columns: 1fr 1fr;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 40px 20px;
    }
}

@media(max-width:560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-col ul {
        gap: 8px;
    }

    .footer-bottom {
        margin-top: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom span {
        width: 100%;
    }

    .trust-item {
        padding: 8px 14px;
    }

    .trust-text {
        font-size: 11px;
    }

    .ov-grid {
        grid-template-columns: 1fr;
    }
}
