/*
Theme Name: Off The Shelf UK Theme
Theme URI: https://offtheshelfuk.ltd/
Author: GO & PARTNERS UK LIMITED
Author URI: https://offtheshelfuk.ltd/
Description: Ultra-Premium British Corporate Theme for Off The Shelf UK. Features advanced UI, timeline integrations, and massive SEO performance enhancements.
Version: 2.0.0
Text Domain: offtheshelfuk
*/

/* ═══════════════════════════════════════════════════════════
   PREMIUM DESIGN SYSTEM VARIABLES
═══════════════════════════════════════════════════════════ */
:root {
    /* Deep Corporate Palette */
    --os-navy: #1B1B1B;
    --os-navy-light: #2A2A2A;
    --os-navy-dark: #000000;
    --os-blue: #C69E63;
    --os-blue-glow: rgba(198, 158, 99, 0.4);

    /* Luxury Accents */
    --os-gold: #C69E63;
    --os-gold-light: #E8CC99;
    --os-gold-glow: rgba(198, 158, 99, 0.3);

    /* Utility */
    --os-success: #198754;
    --os-danger: #DC3545;
    --os-neutral: #6C757D;

    /* Surfaces */
    --os-bg: #F8F9FA;
    --os-bg-light: #F0F2F5;
    --os-white: #FFFFFF;
    --os-border: rgba(0, 0, 0, 0.08);

    /* Typography Colors */
    --os-text: #212529;
    --os-text-muted: #495057;
    --os-text-light: #ADB5BD;
    --os-text-body: #343a40;

    /* Premium Typography */
    --os-font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
    --os-font-body: 'Inter', system-ui, sans-serif;

    /* Radii */
    --os-r-sm: 6px;
    --os-r: 12px;
    --os-r-lg: 20px;
    --os-r-xl: 32px;
    --os-r-pill: 999px;

    /* Deep Shadows */
    --os-shadow-sm: 0 2px 8px rgba(3, 26, 61, 0.04);
    --os-shadow: 0 8px 24px rgba(3, 26, 61, 0.08);
    --os-shadow-lg: 0 20px 48px rgba(3, 26, 61, 0.12);
    --os-shadow-xl: 0 32px 64px rgba(3, 26, 61, 0.16);

    /* Transitions */
    --os-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE SETUP
═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--os-bg) !important;
    color: var(--os-text);
    font-family: var(--os-font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin-top: 0 !important;
}

#wpadminbar {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL NOTICE BAR
═══════════════════════════════════════════════════════════ */
.os-global-notice {
    background: linear-gradient(90deg, var(--os-navy), var(--os-blue), var(--os-navy));
    background-size: 200% auto;
    color: var(--os-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: bgShimmer 5s linear infinite;
}

.os-global-notice a {
    color: var(--os-gold-light);
    text-decoration: none;
    margin-left: 8px;
    font-weight: 600;
}

.os-global-notice a:hover {
    text-decoration: underline;
}

.os-pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28A745;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    animation: pulseGlow 2s infinite;
}

/* ═══════════════════════════════════════════════════════════
   STRUCTURE
═══════════════════════════════════════════════════════════ */
.offtheshelfuk-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 100vh;
}

.os-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.os-section {
    padding: 110px 0;
}

.os-bg-white {
    background: var(--os-white);
}

.os-bg-light {
    background: var(--os-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--os-font-display);
    color: var(--os-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--os-text-muted);
}

a {
    color: var(--os-blue);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--os-navy);
}

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

.os-text-muted {
    color: var(--os-text-muted);
}

.os-text-lg {
    font-size: 1.2rem;
    line-height: 1.8;
}

.os-mt-sm {
    margin-top: 1rem;
}

.os-mt-md {
    margin-top: 2rem;
}

.os-mt-lg {
    margin-top: 3.5rem;
}

.os-mt-xl {
    margin-top: 5rem;
}

.os-mb-md {
    margin-bottom: 2rem;
}

.os-mb-lg {
    margin-bottom: 3.5rem;
}

/* Heading Blocks */
.os-heading-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.os-section-label {
    display: inline-block;
    font-family: var(--os-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--os-gold);
    margin-bottom: 15px;
}

.os-section-label-blue {
    display: inline-block;
    font-family: var(--os-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--os-blue);
    margin-bottom: 15px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS (Premium)
═══════════════════════════════════════════════════════════ */
[class^="os-btn-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--os-font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--os-r);
    letter-spacing: 0.2px;
    transition: all 0.3s var(--os-ease);
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    outline: none;
}

.os-btn-primary {
    background: var(--os-blue);
    color: var(--os-white) !important;
    box-shadow: var(--os-shadow-sm);
}

.os-btn-primary:hover {
    background: var(--os-navy);
    box-shadow: var(--os-shadow);
    transform: translateY(-2px);
}

.os-btn-secondary {
    background: var(--os-navy);
    color: var(--os-white) !important;
}

.os-btn-secondary:hover {
    background: var(--os-navy-light);
    box-shadow: var(--os-shadow);
    transform: translateY(-2px);
}

.os-btn-gold {
    background: linear-gradient(135deg, var(--os-gold), #B5952F);
    color: var(--os-white) !important;
    box-shadow: var(--os-shadow-sm);
}

.os-btn-gold:hover {
    box-shadow: var(--os-shadow-lg);
    transform: translateY(-2px);
}

.os-btn-outline-primary {
    background: transparent;
    color: var(--os-blue) !important;
    border: 2px solid var(--os-blue);
}

.os-btn-outline-primary:hover {
    background: var(--os-blue);
    color: var(--os-white) !important;
    transform: translateY(-2px);
}

.os-btn-outline-light {
    background: transparent;
    color: var(--os-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.os-btn-outline-light:hover {
    background: var(--os-white);
    color: var(--os-navy) !important;
    transform: translateY(-2px);
}

.os-btn-whatsapp,
.os-btn-wa {
    background: #25D366;
    color: var(--os-white) !important;
}

.os-btn-whatsapp:hover,
.os-btn-wa:hover {
    background: #1EBE5E;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.os-btn-whatsapp-large {
    background: #25D366;
    color: var(--os-white) !important;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: var(--os-r-lg);
}

.os-btn-whatsapp-large:hover {
    background: #1EBE5E;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.os-btn-block {
    width: 100%;
}

.os-btn-large {
    font-size: 1.15rem;
    padding: 18px 45px;
}

/* ═══════════════════════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════════════════════ */
.os-grid {
    display: grid;
    gap: 30px;
}

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

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

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

.os-align-center {
    align-items: center;
}

.os-gap-lg {
    gap: 60px;
}

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

@media (max-width: 991px) {

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

    .os-gap-lg {
        gap: 40px;
    }
}

@media (max-width: 767px) {

    .os-grid-2,
    .os-grid-3,
    .os-grid-4 {
        grid-template-columns: 1fr;
    }

    .os-container {
        padding: 0 25px;
    }

    .os-section {
        padding: 70px 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */
.os-header-container {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 9990;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--os-shadow-sm);
}

.os-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.os-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
}

.os-logo-img-wrap img {
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--os-shadow-sm);
    border: 2px solid var(--os-white);
}

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

.os-logo-name {
    font-family: var(--os-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--os-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.os-logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--os-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.os-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.os-nav-link {
    font-family: var(--os-font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--os-text-muted);
    padding: 10px 16px;
    border-radius: var(--os-r-sm);
    transition: 0.2s;
    position: relative;
}

.os-nav-link:hover,
.os-nav-link.active {
    color: var(--os-navy);
    background: rgba(3, 26, 61, 0.04);
}

.os-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--os-blue);
    border-radius: 2px 2px 0 0;
}

.os-nav-btn-solid {
    background: var(--os-navy);
    color: var(--os-white) !important;
    padding: 10px 22px;
    border-radius: var(--os-r-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
    box-shadow: var(--os-shadow-sm);
    transition: 0.3s;
}

.os-nav-btn-solid:hover {
    background: var(--os-blue);
    box-shadow: var(--os-shadow);
    transform: translateY(-1px);
}

.os-nav-btn-outline {
    background: #25D366;
    color: var(--os-white) !important;
    padding: 10px 22px;
    border-radius: var(--os-r-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 8px;
    transition: 0.3s;
}

.os-nav-btn-outline:hover {
    background: #1EBE5E;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

/* Dropdown */
.os-dropdown-wrap {
    position: relative;
}

.os-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--os-white);
    min-width: 250px;
    padding: 12px;
    border-radius: var(--os-r);
    box-shadow: var(--os-shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: osFadeInUp 0.2s ease-out;
}

.os-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--os-text);
    font-weight: 500;
    border-radius: var(--os-r-sm);
    transition: 0.2s;
}

.os-dropdown-menu a i {
    color: var(--os-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.os-dropdown-menu a:hover {
    background: var(--os-bg);
    color: var(--os-blue);
    transform: translateX(4px);
}

/* Mobile Hamburger & Drawer Base */
.os-hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

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

.os-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.os-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.os-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.os-mobile-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    background: var(--os-white);
    z-index: 99999;
    transition: right 0.4s var(--os-ease);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.os-mobile-drawer.open {
    right: 0;
}

.os-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 26, 61, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.os-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.os-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.os-drawer-close {
    background: var(--os-bg);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 1.4rem;
    color: var(--os-text-muted);
    cursor: pointer;
}

.os-drawer-nav {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.os-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--os-text);
    text-decoration: none;
    border-radius: var(--os-r);
    margin-bottom: 5px;
}

.os-drawer-nav a i {
    font-size: 1.2rem;
    color: var(--os-neutral);
    width: 24px;
    text-align: center;
}

.os-drawer-nav a.active,
.os-drawer-nav a:hover {
    background: rgba(10, 88, 202, 0.06);
    color: var(--os-navy);
}

.os-drawer-nav a.active i,
.os-drawer-nav a:hover i {
    color: var(--os-blue);
}

.os-drawer-ctas {
    padding: 25px;
    background: var(--os-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 1300px) {
    .os-nav {
        display: none;
    }

    .os-hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION (Advanced Deep 3x Structure)
═══════════════════════════════════════════════════════════ */
.os-hero {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #010D23 0%, #031A3D 50%, #0A2552 100%);
    color: var(--os-white);
    text-align: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.os-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.os-hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(10, 88, 202, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.os-hero-content {
    position: relative;
    z-index: 2;
}

.os-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: var(--os-r-pill);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--os-white);
    margin-bottom: 30px;
}

.os-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--os-gold-light), var(--os-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.os-hero-rule {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--os-blue), var(--os-gold));
    margin: 30px auto;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .os-hero {
        padding: 100px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
    }

    .os-hero-trust-metrics {
        flex-direction: column;
        gap: 15px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR & TICKER (Conversion Drivers)
═══════════════════════════════════════════════════════════ */
.os-trust-bar {
    background: var(--os-white);
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--os-shadow-sm);
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.os-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.os-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--os-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--os-navy);
}

.os-trust-item i {
    color: var(--os-blue);
    font-size: 1.4rem;
}

.os-ticker-wrapper {
    background: var(--os-bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.os-activity-ticker {
    display: inline-block;
    animation: osTicker 40s linear infinite;
}

.os-ticker-inner {
    display: inline-flex;
    align-items: center;
}

.os-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--os-text-muted);
    margin-right: 50px;
}

.os-ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--os-gold);
    border-radius: 50%;
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE BLOCKS (Values)
═══════════════════════════════════════════════════════════ */
.os-feature-block {
    background: var(--os-white);
    padding: 40px;
    border-radius: var(--os-r-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--os-shadow-sm);
    transition: all 0.4s var(--os-ease);
    position: relative;
    overflow: hidden;
}

.os-feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--os-blue), transparent);
    opacity: 0;
    transition: 0.4s;
}

.os-feature-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--os-shadow-lg);
}

.os-feature-block:hover::before {
    opacity: 1;
}

.os-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 88, 202, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.os-feature-icon i {
    font-size: 1.6rem;
    color: var(--os-blue);
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM ENTITY LISTING (Pulse Box)
═══════════════════════════════════════════════════════════ */
.os-pulse-box {
    background: var(--os-white);
    border: 2px solid var(--os-blue);
    border-radius: var(--os-r-xl);
    padding: 50px;
    box-shadow: var(--os-shadow-lg);
    position: relative;
    /* subtle glowing edge */
    box-shadow: 0 0 0 0 rgba(10, 88, 202, 0);
    animation: pulsePremium 3s infinite;
}

@keyframes pulsePremium {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 88, 202, 0.2);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(10, 88, 202, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 88, 202, 0);
    }
}

.os-badge-success {
    background: rgba(25, 135, 84, 0.1);
    color: var(--os-success);
    padding: 6px 14px;
    border-radius: var(--os-r-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.os-badge-neutral {
    background: rgba(108, 117, 125, 0.1);
    color: var(--os-neutral);
    padding: 6px 14px;
    border-radius: var(--os-r-pill);
    font-size: 0.8rem;
    font-weight: 700;
}

.os-premium-title {
    font-size: 3rem;
    margin: 20px 0 10px;
    color: var(--os-navy);
    letter-spacing: 2px;
}

.os-company-meta {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--os-text-muted);
    margin-bottom: 30px;
    background: var(--os-bg);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.os-premium-list {
    list-style: none;
    margin-bottom: 40px;
}

.os-premium-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--os-navy);
}

.os-premium-list li i {
    color: var(--os-success);
    font-size: 1.2rem;
}

.os-action-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.os-action-group>* {
    flex: 1;
    text-align: center;
}

@media (max-width: 500px) {
    .os-pulse-box {
        padding: 30px;
    }

    .os-action-group {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE (Graphic)
═══════════════════════════════════════════════════════════ */
.os-timeline-container {
    background: var(--os-navy);
    border-radius: var(--os-r-xl);
    padding: 50px;
    color: var(--os-white);
    box-shadow: var(--os-shadow-xl);
}

.os-timeline-container h3 {
    color: var(--os-white);
}

.os-timeline-container .os-text-muted {
    color: rgba(255, 255, 255, 0.6);
}

.os-timeline-graphic {
    position: relative;
    margin-top: 40px;
}

.os-timeline-graphic::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.os-timeline-node {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.os-timeline-node:last-child {
    margin-bottom: 0;
}

.os-timeline-marker {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--os-navy);
    border: 4px solid var(--os-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.os-timeline-phase {
    color: var(--os-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.os-timeline-content h4 {
    color: var(--os-white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.os-timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════════ */
.os-stats-section {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--os-gold-light), var(--os-gold));
}

.os-stats-grid {
    text-align: center;
}

.os-stat-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: var(--os-r-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.os-stat-icon {
    font-size: 2rem;
    color: var(--os-navy);
    margin-bottom: 15px;
}

.os-stat-val {
    font-family: var(--os-font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--os-navy);
    line-height: 1;
}

.os-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--os-navy);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING ARCHITECTURE
═══════════════════════════════════════════════════════════ */
.os-pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

.os-pricing-tier {
    background: var(--os-white);
    border-radius: var(--os-r-xl);
    border: 1px solid var(--os-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    box-shadow: var(--os-shadow);
}

.os-pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--os-shadow-lg);
}

.os-tier-header {
    padding: 45px 40px 30px;
    background: var(--os-bg-light);
    border-bottom: 1px solid var(--os-border);
    text-align: center;
}

.os-tier-name {
    display: inline-block;
    background: rgba(10, 88, 202, 0.1);
    color: var(--os-blue);
    padding: 6px 16px;
    border-radius: var(--os-r-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.os-tier-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.os-tier-header p {
    margin: 0;
    font-size: 0.95rem;
}

.os-tier-body {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.os-tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.os-tier-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.os-tier-features li:last-child {
    border-bottom: none;
}

.os-tier-features li.disabled {
    color: var(--os-text-light);
    text-decoration: line-through;
}

.text-success {
    color: var(--os-success);
}

.text-danger {
    color: var(--os-danger);
}

.text-gold {
    color: var(--os-gold);
}

/* Featured Tier */
.os-tier-featured {
    border: 2px solid var(--os-navy);
    background: var(--os-navy);
    color: var(--os-white);
    transform: scale(1.05);
    z-index: 2;
}

.os-tier-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.os-tier-featured .os-tier-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.os-tier-featured .os-tier-name {
    background: rgba(212, 175, 55, 0.2);
    color: var(--os-gold);
}

.os-tier-featured h3 {
    color: var(--os-white);
}

.os-tier-badge {
    background: linear-gradient(90deg, var(--os-gold), #B5952F);
    color: var(--os-navy);
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
}

.os-tier-featured .os-tier-body {
    background: var(--os-navy);
}

.os-tier-featured .os-tier-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--os-white);
}

.os-tier-featured p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .os-pricing-table {
        grid-template-columns: 1fr;
    }

    .os-tier-featured {
        transform: none;
    }

    .os-tier-featured:hover {
        transform: translateY(-10px);
    }
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON MATRIX
═══════════════════════════════════════════════════════════ */
.os-comparison-matrix {
    background: var(--os-white);
    border-radius: var(--os-r-xl);
    box-shadow: var(--os-shadow-lg);
    overflow: hidden;
    margin-top: 50px;
}

.os-matrix-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--os-border);
}

.os-matrix-row:last-child {
    border-bottom: none;
}

.os-matrix-row>div {
    padding: 25px 30px;
    display: flex;
    align-items: center;
}

.os-matrix-header {
    background: var(--os-navy);
    color: var(--os-white);
    font-family: var(--os-font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.os-matrix-col-feature {
    font-weight: 600;
    color: var(--os-navy);
    font-size: 1.05rem;
}

.os-matrix-col-us {
    font-weight: 700;
    color: var(--os-navy);
    background: rgba(10, 88, 202, 0.03);
    border-left: 1px solid var(--os-border);
    border-right: 1px solid var(--os-border);
}

.os-matrix-col-them {
    color: var(--os-text-muted);
}

@media (max-width: 767px) {
    .os-matrix-row {
        grid-template-columns: 1fr;
        border-bottom: 4px solid var(--os-bg);
    }

    .os-matrix-header {
        display: none;
    }

    .os-matrix-row>div {
        padding: 15px;
        border: none !important;
    }

    .os-matrix-col-us {
        background: rgba(10, 88, 202, 0.05);
    }
}

/* ═══════════════════════════════════════════════════════════
   MASSIVE FAQ ACCORDION (Premium)
═══════════════════════════════════════════════════════════ */
.os-faq-super-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.os-premium-faq-item {
    background: var(--os-bg-light);
    border-radius: var(--os-r-lg);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: 0.3s;
}

.os-premium-faq-item.active {
    background: var(--os-white);
    border-color: var(--os-blue);
    box-shadow: var(--os-shadow);
}

.os-premium-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 30px;
    font-family: var(--os-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--os-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.os-premium-faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(10, 88, 202, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--os-blue);
    transition: 0.3s;
}

.os-premium-faq-item.active .os-premium-faq-icon {
    transform: rotate(180deg);
    background: var(--os-blue);
    color: var(--os-white);
}

.os-premium-faq-a {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s var(--os-ease);
    padding: 0 30px;
}

.os-premium-faq-item.active .os-premium-faq-a {
    padding: 0 30px 25px;
}

.os-premium-faq-a p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--os-text);
}

/* ═══════════════════════════════════════════════════════════
   CTA STRATUM (Pre-Footer)
═══════════════════════════════════════════════════════════ */
.os-cta-stratum {
    position: relative;
    padding: 120px 0;
    background: var(--os-navy);
    color: var(--os-white);
    text-align: center;
    overflow: hidden;
}

.os-cta-background-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 88, 202, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.os-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.os-cta-content h2 {
    color: var(--os-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.os-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.os-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   TABBED CONTENT STRUCTURE
═══════════════════════════════════════════════════════════ */
.os-tab-content {
    display: none;
    animation: os-fade-in 0.6s var(--os-ease);
}

.os-tab-content.active {
    display: block;
}

/* Misc Internal Pages */
.os-inventory-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.os-inventory-item {
    background: var(--os-bg-light);
    border: 1px solid var(--os-border);
    border-left: 6px solid var(--os-blue);
    border-radius: var(--os-r-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.os-inv-tag-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.os-inv-tag {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--os-r-pill);
    color: #fff;
    letter-spacing: 1px;
}

.os-inv-tag.success {
    background: var(--os-success);
}

.os-inv-tag.neutral {
    background: var(--os-neutral);
}

.os-inventory-item h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.os-inv-meta {
    display: flex;
    gap: 20px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--os-text-muted);
    margin-bottom: 20px;
    background: var(--os-white);
    padding: 15px;
    border-radius: var(--os-r-sm);
}

.os-inventory-ghost {
    background: var(--os-white);
    border: 2px dashed var(--os-border);
    border-radius: var(--os-r-lg);
    padding: 60px 40px;
    text-align: center;
}

.os-ghost-icon {
    font-size: 3rem;
    color: var(--os-border);
    margin-bottom: 20px;
}

.os-article-card {
    background: var(--os-white);
    border-radius: var(--os-r-lg);
    padding: 40px;
    box-shadow: var(--os-shadow);
    transition: 0.3s;
}

.os-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--os-shadow-lg);
}

.os-article-meta {
    color: var(--os-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Contact Form Suite */
.os-contact-form-wrapper {
    background: var(--os-white);
    padding: 50px;
    border-radius: var(--os-r-xl);
    box-shadow: var(--os-shadow-xl);
}

.os-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.os-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.os-cm-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 88, 202, 0.1);
    border-radius: var(--os-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--os-blue);
    flex-shrink: 0;
}

.os-cm-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.os-cm-text strong {
    color: var(--os-navy);
    font-size: 1.1rem;
}

.os-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.os-form-group {
    margin-bottom: 25px;
}

.os-form-group label {
    display: block;
    font-weight: 600;
    color: var(--os-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.os-form-group input,
.os-form-group select,
.os-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--os-border);
    border-radius: var(--os-r);
    font-family: var(--os-font-body);
    font-size: 1rem;
    color: var(--os-text);
    transition: 0.3s;
    outline: none;
    background: var(--os-bg-light);
}

.os-form-group input:focus,
.os-form-group select:focus,
.os-form-group textarea:focus {
    border-color: var(--os-blue);
    background: var(--os-white);
    box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.1);
}

@media (max-width: 767px) {
    .os-form-row {
        grid-template-columns: 1fr;
    }

    .os-contact-form-wrapper {
        padding: 30px;
    }
}

.os-form-msg {
    padding: 15px;
    border-radius: var(--os-r);
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

.os-form-msg.success {
    background: rgba(25, 135, 84, 0.1);
    color: var(--os-success);
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.os-form-msg.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--os-danger);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Legal Policies */
.os-legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--os-white);
    border-radius: var(--os-r-xl);
    padding: 60px;
    box-shadow: var(--os-shadow);
}

.os-prose h2 {
    margin-top: 40px;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--os-border);
    padding-bottom: 15px;
}

.os-prose p,
.os-prose ul {
    font-size: 1.05rem;
    color: var(--os-text);
    margin-bottom: 20px;
}

.os-prose ul {
    padding-left: 25px;
}

.os-prose li {
    margin-bottom: 10px;
}

.os-legal-footer {
    padding: 30px;
    background: var(--os-bg-light);
    border-radius: var(--os-r-lg);
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════════════ */
.os-footer-advanced {
    background: var(--os-navy-dark);
    color: rgba(255, 255, 255, 0.7);
}

.os-footer-top {
    padding-top: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.os-footer-logo-text {
    font-family: var(--os-font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--os-white);
}

.os-footer-desc {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.os-footer-legal-blurb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-left: 2px solid var(--os-gold);
    padding-left: 15px;
    margin-top: 30px;
}

.os-footer-title {
    color: var(--os-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.os-footer-list {
    list-style: none;
}

.os-footer-list li {
    margin-bottom: 15px;
}

.os-footer-list a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.os-footer-list a:hover {
    color: var(--os-gold);
    transform: translateX(5px);
}

.os-footer-list-icons {
    list-style: none;
}

.os-footer-list-icons li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.os-bank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.os-bank-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.os-footer-middle {
    background: #010A1A;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.os-footer-policy-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.os-footer-policy-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.os-footer-policy-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.os-footer-policy-links a:hover,
.os-footer-policy-links a.active {
    color: var(--os-gold);
}

.os-footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.os-footer-bottom {
    background: #00050D;
    padding: 40px 0;
}

.os-footer-disclaimer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: justify;
    margin: 0;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   INTELLIGENT WHATSAPP AGENT
═══════════════════════════════════════════════════════════ */
.os-wa-agent-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.os-wa-float-trigger {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    text-decoration: none !important;
    position: relative;
}

.os-wa-float-trigger::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: osPulse 2s infinite;
    pointer-events: none;
}

.os-wa-float-trigger:hover {
    transform: scale(1.1);
    background: #1EBE5E;
}

.os-wa-bubble {
    width: 340px;
    background: var(--os-white);
    border-radius: var(--os-r-lg);
    box-shadow: var(--os-shadow-xl);
    overflow: hidden;
    transform-origin: bottom right;
    animation: os-fade-up 0.4s var(--os-ease);
    border: 1px solid var(--os-border);
}

.os-wa-bubble-header {
    background: var(--os-navy);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.os-wa-bubble-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
}

.os-wa-bubble-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.os-wa-title {
    color: var(--os-white);
    font-weight: 700;
    font-family: var(--os-font-display);
}

.os-wa-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.os-live-dot-small {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: os-live-dot 1.5s infinite;
}

.os-wa-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.os-wa-close:hover {
    color: var(--os-white);
}

.os-wa-bubble-body {
    padding: 25px;
    background: var(--os-bg);
}

.os-wa-bubble-body p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--os-text-body);
    background: var(--os-white);
    padding: 15px;
    border-radius: 0 12px 12px 12px;
    box-shadow: var(--os-shadow-sm);
}

.os-wa-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--os-white) !important;
    padding: 14px;
    border-radius: var(--os-r-sm);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.os-wa-action-btn:hover {
    background: #1EBE5E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Animation Utility from specific elements */
@keyframes bgShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes osFadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 500px) {
    .os-wa-agent-widget {
        bottom: 20px;
        right: 20px;
    }

    .os-wa-bubble {
        width: calc(100vw - 40px);
    }
}

/* ═══════════════════════════════════════════════════════════
   VISIBLE BREADCRUMB BAR (SEO + UX)
═══════════════════════════════════════════════════════════ */
.os-breadcrumb-bar {
    background: var(--os-bg-light);
    border-bottom: 1px solid var(--os-border);
    padding: 10px 0;
    font-size: 0.85rem;
}

.os-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

.os-breadcrumb-list li a {
    color: var(--os-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.os-breadcrumb-list li a:hover {
    color: var(--os-gold);
}

.os-breadcrumb-sep {
    color: var(--os-text-light);
    font-size: 0.75rem;
}

.os-breadcrumb-list li:last-child:not(.os-breadcrumb-sep) {
    color: var(--os-text-muted);
    font-weight: 600;
}

/* Footer trust badges */
.os-footer-trust-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.os-footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--os-r-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.os-footer-small-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ═══════════════════════════════════════════════════════════
   HERO — TRUST METRICS & SCROLL HINT
═══════════════════════════════════════════════════════════ */
.os-hero-trust-metrics {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.os-hero-trust-metrics span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: var(--os-r-pill);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}

.os-hero-trust-metrics span:hover {
    background: rgba(255, 255, 255, 0.14);
}

.os-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.8;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOWTO SECTION (4-Step Process)
═══════════════════════════════════════════════════════════ */
.os-howto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.os-howto-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--os-blue), var(--os-gold));
    z-index: 0;
    opacity: 0.3;
}

.os-howto-card {
    background: var(--os-white);
    border-radius: var(--os-r-xl);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--os-shadow);
    border: 1px solid var(--os-border);
    transition: all 0.4s var(--os-ease);
    /* glassmorphism subtle effect */
    backdrop-filter: blur(2px);
}

.os-howto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--os-shadow-xl);
    border-color: var(--os-gold);
}

.os-howto-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--os-gold), #B5952F);
    color: var(--os-navy);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(198, 158, 99, 0.4);
    font-family: var(--os-font-display);
}

.os-howto-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(198, 158, 99, 0.12), rgba(198, 158, 99, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    font-size: 1.5rem;
    color: var(--os-gold);
}

.os-howto-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.os-howto-card p {
    font-size: 0.95rem;
    color: var(--os-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .os-howto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-howto-grid::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .os-howto-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   REVIEW / TESTIMONIAL CARDS
═══════════════════════════════════════════════════════════ */
.os-review-card {
    background: var(--os-white);
    border-radius: var(--os-r-xl);
    padding: 36px;
    box-shadow: var(--os-shadow);
    border: 1px solid var(--os-border);
    transition: all 0.4s var(--os-ease);
    position: relative;
    overflow: hidden;
}

.os-review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--os-gold);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.os-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--os-shadow-xl);
    border-color: var(--os-gold);
}

.os-review-stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 18px;
}

.os-review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--os-text);
    margin-bottom: 24px;
    font-style: italic;
}

.os-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--os-border);
    padding-top: 20px;
}

.os-review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--os-gold), #B5952F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--os-navy);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.os-review-author strong {
    display: block;
    color: var(--os-navy);
    font-size: 1rem;
    margin-bottom: 3px;
}

.os-review-loc {
    display: block;
    font-size: 0.82rem;
    color: var(--os-text-muted);
    margin-bottom: 2px;
}

.os-review-loc i {
    color: var(--os-gold);
    margin-right: 4px;
}

.os-review-date {
    display: block;
    font-size: 0.78rem;
    color: var(--os-text-light);
}

/* Aggregate Rating Display */
.os-aggregate-rating-display {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--os-white);
    padding: 20px 40px;
    border-radius: var(--os-r-pill);
    box-shadow: var(--os-shadow-lg);
    border: 2px solid rgba(198, 158, 99, 0.3);
    flex-wrap: wrap;
    justify-content: center;
}

.os-agg-stars {
    color: #FBBF24;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.os-agg-score {
    font-family: var(--os-font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--os-navy);
}

.os-agg-count {
    font-size: 0.9rem;
    color: var(--os-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   SEO CONTENT BLOCK (Visible, Keyword-Rich)
═══════════════════════════════════════════════════════════ */
.os-seo-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.os-seo-prose {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--os-text);
}

.os-seo-prose h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--os-navy);
    padding-left: 16px;
    border-left: 3px solid var(--os-gold);
}

.os-seo-prose p {
    color: var(--os-text-muted);
    margin-bottom: 20px;
}

.os-seo-prose strong {
    color: var(--os-navy);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL COUNTRY TAGS
═══════════════════════════════════════════════════════════ */
.os-country-tag {
    background: var(--os-white);
    border: 1px solid var(--os-border);
    border-radius: var(--os-r);
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--os-navy);
    text-align: center;
    transition: 0.2s;
    box-shadow: var(--os-shadow-sm);
}

.os-country-tag:hover {
    border-color: var(--os-gold);
    box-shadow: var(--os-shadow);
}

/* ═══════════════════════════════════════════════════════════
   CTA STRATUM — ADDITIONAL STYLES
═══════════════════════════════════════════════════════════ */
.os-cta-sub {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.os-cta-sub strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════════
   UTILITY ADDITIONS
═══════════════════════════════════════════════════════════ */
.os-text-sm {
    font-size: 0.85rem;
}

.os-bg-navy {
    background: var(--os-navy-dark) !important;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATION LIBRARY — KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes osTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes osPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes os-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes os-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

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

@keyframes os-live-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* Entrance animation classes */
.os-animate {
    animation: os-fade-in 0.7s var(--os-ease) both;
}

.os-delay-1 {
    animation-delay: 0.15s;
}

.os-delay-2 {
    animation-delay: 0.3s;
}

.os-delay-3 {
    animation-delay: 0.45s;
}

.os-delay-h1 {
    animation-delay: 0.1s;
}

.os-delay-h2 {
    animation-delay: 0.2s;
}

.os-delay-h3 {
    animation-delay: 0.3s;
}

/* IntersectionObserver-driven entrance */
.os-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--os-ease), transform 0.7s var(--os-ease);
}

.os-hidden.os-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Live Dot */
.os-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    margin-right: 4px;
    animation: os-live-dot 1.5s infinite;
}

/* ═══════════════════════════════════════════════════════════
   INVENTORY — ADDITIONAL ACTIONS
═══════════════════════════════════════════════════════════ */
.os-inv-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE BLOCK — GLASSMORPHISM UPGRADE
═══════════════════════════════════════════════════════════ */
.os-feature-block {
    position: relative;
    isolation: isolate;
}

.os-feature-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--os-r-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
}

.os-feature-block:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   STAT CARD — HOVER GLOW
═══════════════════════════════════════════════════════════ */
.os-stat-card {
    transition: transform 0.3s var(--os-ease), box-shadow 0.3s;
}

.os-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER GRID RESPONSIVE
═══════════════════════════════════════════════════════════ */
.os-footer-grid {
    gap: 50px;
}

@media (max-width: 991px) {
    .os-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .os-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .os-activity-ticker {
        animation: none;
    }

    .os-scroll-hint {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   PULSE CTA BUTTON — DRAWN ATTENTION
═══════════════════════════════════════════════════════════ */
.os-btn-whatsapp-large {
    position: relative;
    overflow: visible;
}

.os-btn-whatsapp-large::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--os-r-lg) + 4px);
    border: 2px solid #25D366;
    animation: osPulse 2.5s ease-out infinite;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — FINAL TOUCH-UPS
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .os-cta-stratum {
        padding: 80px 0;
    }

    .os-cta-content h2 {
        font-size: 2rem;
    }

    .os-aggregate-rating-display {
        padding: 16px 24px;
        gap: 10px;
    }

    .os-review-card {
        padding: 24px;
    }

    .os-seo-prose h3 {
        font-size: 1.2rem;
    }

    .os-legal-document {
        padding: 30px 20px;
    }

    .os-howto-card {
        padding: 30px 20px;
    }

    .os-inv-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .os-trust-items {
        gap: 20px;
    }

    .os-trust-item {
        font-size: 0.9rem;
    }

    .os-trust-item i {
        font-size: 1.1rem;
    }

    .os-footer-policy-links {
        gap: 12px;
    }

    .os-footer-policy-links a {
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   CONTRAST / DARK-BACKGROUND TEXT FIXES
   Ensures all text on dark (navy) sections is white / light
═══════════════════════════════════════════════════════════ */

/* Any section/container that uses the navy dark background */
.os-bg-navy,
.os-stats-section,
.os-cta-stratum,
.os-timeline-container,
.os-tier-featured,
[style*="background: var(--os-navy)"],
[style*="background:var(--os-navy)"],
[style*="background:linear-gradient(135deg,var(--os-navy"],
[style*="background:linear-gradient(90deg,var(--os-navy"] {
    color: rgba(255, 255, 255, 0.88);
}

/* Headings inside dark sections */
.os-stats-section h2,
.os-stats-section h3,
.os-stats-section h4,
.os-cta-stratum h2,
.os-cta-stratum h3,
.os-timeline-container h3,
.os-timeline-container h4,
.os-tier-featured h3,
.os-tier-featured h4 {
    color: #ffffff;
}

/* Body text inside dark sections */
.os-stats-section p,
.os-cta-stratum p,
.os-tier-featured p,
.os-timeline-container p {
    color: rgba(255, 255, 255, 0.70);
}

/* Section labels on dark backgrounds */
.os-stats-section .os-section-label,
.os-cta-stratum .os-section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--os-gold-light);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Stat values & labels */
.os-stat-val {
    color: #ffffff !important;
}

.os-stat-label {
    color: rgba(255, 255, 255, 0.80) !important;
}

.os-stat-icon i {
    color: var(--os-gold-light) !important;
}

/* Feature blocks that land on light bg — ensure navy text */
.os-bg-white .os-feature-block h3,
.os-bg-light .os-feature-block h3 {
    color: var(--os-navy);
}

.os-bg-white .os-feature-block p,
.os-bg-light .os-feature-block p {
    color: var(--os-text-muted);
}

/* Pricing featured tier — all list text must be white */
.os-tier-featured .os-tier-features li {
    color: rgba(255, 255, 255, 0.92) !important;
}

.os-tier-featured .os-tier-features li.disabled {
    color: rgba(255, 255, 255, 0.30) !important;
    text-decoration: line-through;
}

/* Comparison matrix header columns */
.os-matrix-header>div {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* HowTo cards — always on white bg, ensure dark text */
.os-howto-card h3 {
    color: var(--os-navy);
}

.os-howto-card p {
    color: var(--os-text-muted);
}

/* Review cards — ensure text visible */
.os-review-text {
    color: var(--os-text) !important;
}

.os-review-author strong {
    color: var(--os-navy) !important;
}

/* Trust bar items — always dark (white bg) */
.os-trust-item {
    color: var(--os-navy) !important;
}

/* SEO content block — dark text on white */
.os-seo-prose p,
.os-seo-prose li {
    color: var(--os-text-muted);
}

.os-seo-prose h3 {
    color: var(--os-navy);
}

/* FAQ items — light background, dark text */
.os-premium-faq-q {
    color: var(--os-navy) !important;
}

.os-premium-faq-a p {
    color: var(--os-text) !important;
}

/* Inventory item text */
.os-inventory-item h2 {
    color: var(--os-navy);
}

/* Global notice bar — dark bg needs light text */
.os-global-notice {
    color: rgba(255, 255, 255, 0.9);
}

.os-global-notice a {
    color: var(--os-gold-light);
}

.os-global-notice strong {
    color: #ffffff;
}

/* Buttons on dark sections — maintain legibility */
.os-cta-stratum .os-btn-outline-light {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.os-cta-stratum .os-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

/* Contact page — text legibility */
.os-contact-method .os-cm-text strong {
    color: var(--os-navy) !important;
}

/* Legal document pages */
.os-legal-document h2 {
    color: var(--os-navy);
}

.os-legal-document p,
.os-legal-document li {
    color: var(--os-text-muted);
}

/* Footer — ensure muted text stays readable */
.os-footer-desc,
.os-footer-list a,
.os-footer-list-icons li,
.os-footer-small-text {
    color: rgba(255, 255, 255, 0.65);
}

.os-footer-list a:hover {
    color: var(--os-gold-light);
}

.os-footer-title {
    color: #ffffff !important;
}

/* Breadcrumb bar — always light bg */
.os-breadcrumb-bar {
    color: var(--os-text-muted);
}

/* Article cards — white bg, dark text */
.os-article-card h3 {
    color: var(--os-navy);
}

.os-article-card p {
    color: var(--os-text-muted);
}

/* Section headings — always dark navy on light bg */
.os-section h2,
.os-section h3 {
    color: var(--os-navy);
}

.os-section p {
    color: var(--os-text-muted);
}

/* Explicit override: heading inside os-heading-center always navy */
.os-heading-center h2 {
    color: var(--os-navy);
}

.os-heading-center p {
    color: var(--os-text-muted);
}

/* Section label (pill badge) — default (light bg) */
.os-section-label {
    color: var(--os-gold);
    background: rgba(198, 158, 99, 0.1);
    border-color: rgba(198, 158, 99, 0.25);
}

/* Knowledge hub tab headings */
#ots-tab-knowledge h1,
#ots-tab-knowledge h3 {
    color: var(--os-navy);
}

#ots-tab-knowledge p {
    color: var(--os-text-muted);
}

/* Global clients tab */
#ots-tab-global h1 {
    color: var(--os-navy);
}

#ots-tab-global p {
    color: var(--os-text-muted);
}

/* Pricing tab */
#ots-tab-pricing h1 {
    color: var(--os-navy);
}

/* Companies tab */
#ots-tab-companies h1,
#ots-tab-companies h2 {
    color: var(--os-navy);
}

/* E-commerce tab */
#ots-tab-ecommerce h1,
#ots-tab-ecommerce h3 {
    color: var(--os-navy);
}

#ots-tab-ecommerce p {
    color: var(--os-text-muted);
}

/* Content block text */
.os-content-block p {
    color: var(--os-text-muted);
}

/* Aggregate rating display */
.os-agg-score {
    color: var(--os-navy) !important;
}

.os-agg-count {
    color: var(--os-text-muted) !important;
}

/* Fix Hero visibility overridden by tab IDs */
.os-tab-content .os-hero h1,
.os-tab-content .os-hero h2,
.os-tab-content .os-hero h3,
.os-tab-content .os-hero p {
    color: var(--os-white) !important;
}