/*
Theme Name: OffTheShelfUK Theme
Theme URI: https://offtheshelfuk.ltd/
Author: GO & PARTNERS UK LIMITED
Author URI: https://offtheshelfuk.ltd/
Description: Premium British corporate theme for OffTheShelfUK — UK Off-The-Shelf & Ready-Made Companies.
Version: 1.0.0
Text Domain: offtheshelfuk
*/

/* ═══════════════════════════════════════════════════════════
   GOOGLE FONTS
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — BRITISH CORPORATE
   White-background · Navy blue · Gold accents · Clean cards
═══════════════════════════════════════════════════════════ */
:root {
    /* ── Core Palette ── */
    --os-navy: #1A2347;
    /* Deep British Navy */
    --os-navy-dark: #0E1630;
    /* Darkest Navy */
    --os-blue: #003BA4;
    /* Royal Blue */
    --os-blue-light: #1554CC;
    /* Lighter Royal Blue */
    --os-green: #00694A;
    /* British Racing Green */
    --os-gold: #C6973A;
    /* Warm British Gold */
    --os-gold-light: #E5B04F;
    --os-success: #0A7C4F;
    --os-danger: #C0392B;

    /* ── Text ── */
    --os-text: #0F1A2E;
    --os-text-body: #2E3A4F;
    --os-text-muted: #5C6B7F;
    --os-text-xs: #8A99AD;

    /* ── Surfaces — primarily white ── */
    --os-bg: #F7F9FC;
    /* Slight off-white page bg */
    --os-white: #FFFFFF;
    --os-bg-card: #FFFFFF;
    --os-bg-navy: #1A2347;
    --os-border: #DDE3EC;
    --os-border-md: #C8D2E0;

    /* ── Shadows ── */
    --os-shadow-xs: 0 1px 3px rgba(15, 26, 46, 0.06);
    --os-shadow: 0 4px 12px rgba(15, 26, 46, 0.08);
    --os-shadow-md: 0 8px 24px rgba(15, 26, 46, 0.10);
    --os-shadow-lg: 0 16px 40px rgba(15, 26, 46, 0.12);
    --os-shadow-xl: 0 24px 64px rgba(15, 26, 46, 0.16);
    --os-shadow-blue: 0 8px 32px rgba(0, 59, 164, 0.20);
    --os-shadow-gold: 0 8px 32px rgba(198, 151, 58, 0.24);

    /* ── Typography ── */
    --os-font-display: 'Outfit', system-ui, sans-serif;
    --os-font: 'Inter', system-ui, sans-serif;

    /* ── Radii ── */
    --os-r: 10px;
    --os-r-lg: 16px;
    --os-r-xl: 24px;
    --os-r-pill: 100px;

    /* ── Animation ── */
    --os-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --os-ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: var(--os-bg) !important;
}

#wpadminbar {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes os-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes os-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes os-sep-shimmer {
    0% {
        background-position: 200% 0;
    }

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

@keyframes os-pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 59, 164, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 59, 164, 0);
    }
}

@keyframes os-live-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

@keyframes os-float {

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

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

@keyframes osFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes osPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes osMeshMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.97);
    }

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

@keyframes osTicker {
    from {
        transform: translateX(0);
    }

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

/* ═══════════════════════════════════════════════════════════
   ANIMATION UTILITIES
═══════════════════════════════════════════════════════════ */
.os-animate {
    animation: osFadeUp 0.65s var(--os-ease) forwards;
    opacity: 0;
}

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

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

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

.os-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--os-ease-std), transform 0.6s var(--os-ease-std);
}

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

.os-delay-h1 {
    transition-delay: 0.08s;
}

.os-delay-h2 {
    transition-delay: 0.18s;
}

.os-delay-h3 {
    transition-delay: 0.28s;
}

.os-delay-h4 {
    transition-delay: 0.38s;
}

/* ═══════════════════════════════════════════════════════════
   WRAPPER & CONTAINER
═══════════════════════════════════════════════════════════ */
.offtheshelfuk-wrapper {
    font-family: var(--os-font);
    color: var(--os-text-body);
    background: var(--os-bg);
    line-height: 1.65;
    text-align: left;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.os-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
.offtheshelfuk-wrapper h1 {
    font-family: var(--os-font-display);
    color: var(--os-navy);
    font-weight: 800;
    margin-top: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.offtheshelfuk-wrapper h2 {
    font-family: var(--os-font-display);
    color: var(--os-navy);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.offtheshelfuk-wrapper h3,
.offtheshelfuk-wrapper h4 {
    font-family: var(--os-font-display);
    color: var(--os-navy);
    font-weight: 600;
    margin-top: 0;
    line-height: 1.35;
}

.offtheshelfuk-wrapper p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--os-text-body);
    line-height: 1.8;
}

.offtheshelfuk-wrapper a {
    text-decoration: none;
    color: var(--os-blue);
    transition: color 0.15s;
}

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

/* ═══════════════════════════════════════════════════════════
   SHIMMER SEPARATOR (top accent bar)
═══════════════════════════════════════════════════════════ */
.os-separator {
    height: 3px;
    background: linear-gradient(90deg,
            var(--os-blue) 0%,
            var(--os-gold) 35%,
            var(--os-green) 65%,
            var(--os-blue) 100%);
    background-size: 200% 100%;
    animation: os-sep-shimmer 3.5s linear infinite;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.os-header-container {
    background: var(--os-white);
    position: sticky;
    top: 0;
    z-index: 9990;
    border-bottom: 1px solid var(--os-border);
    box-shadow: 0 2px 12px rgba(15, 26, 46, 0.06);
}

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

.os-logo {
    font-family: var(--os-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--os-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.os-logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: auto;
}

.os-logo-img-wrap img {
    height: 44px;
    width: auto;
    display: block;
}

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

.os-logo-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--os-navy);
    letter-spacing: -0.02em;
}

.os-logo-name span {
    color: var(--os-blue);
}

.os-logo-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--os-text-muted);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 1px;
}

.os-nav {
    display: flex;
    gap: 2px;
    align-items: center;
    padding-left: 16px;
}

.os-nav-btn {
    background: transparent;
    border: none;
    padding: 8px 14px;
    font-family: var(--os-font);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--os-text-body) !important;
    cursor: pointer;
    border-radius: var(--os-r);
    transition: all 0.18s;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
}

.os-nav-btn:hover {
    color: var(--os-navy) !important;
    background: rgba(0, 59, 164, 0.06);
}

.os-nav-btn.active {
    color: var(--os-blue) !important;
    background: rgba(0, 59, 164, 0.08);
    font-weight: 600;
}

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

.os-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: #25D366;
    color: white !important;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--os-r);
    text-decoration: none !important;
    transition: all 0.2s;
    margin-left: 8px;
    white-space: nowrap;
}

.os-nav-cta:hover {
    background: #1ebe5e;
    color: white !important;
    transform: translateY(-1px);
}

/* Mobile Hamburger */
.os-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--os-r);
}

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

.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);
}

/* Mobile Drawer */
.os-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--os-white);
    z-index: 99999;
    transition: right 0.32s var(--os-ease);
    box-shadow: -4px 0 32px rgba(15, 26, 46, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.os-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 22, 48, 0.5);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s;
}

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

.os-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--os-border);
}

.os-drawer-close {
    width: 32px;
    height: 32px;
    background: var(--os-bg);
    border: 1px solid var(--os-border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--os-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-drawer-nav {
    padding: 16px 24px;
    flex: 1;
}

.os-drawer-nav a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--os-text-body);
    border-radius: var(--os-r);
    text-decoration: none;
    transition: all 0.18s;
    border-bottom: 1px solid var(--os-border);
}

.os-drawer-nav a:last-child {
    border-bottom: none;
}

.os-drawer-nav a:hover,
.os-drawer-nav a.active {
    background: rgba(0, 59, 164, 0.06);
    color: var(--os-blue);
}

.os-drawer-ctas {
    padding: 20px 24px;
    border-top: 1px solid var(--os-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.os-hero {
    padding: 112px 0 96px;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 59, 164, 0.14) 0%, transparent 70%),
        linear-gradient(165deg, #0E1630 0%, #1A2347 55%, #1F2D60 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.os-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 59, 164, 0.22) 0%, transparent 70%);
    filter: blur(50px);
    animation: osMeshMove 14s ease-in-out infinite;
    pointer-events: none;
}

.os-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(198, 151, 58, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    animation: osMeshMove 18s ease-in-out infinite reverse;
    pointer-events: none;
}

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

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

.os-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 59, 164, 0.22);
    border: 1px solid rgba(147, 190, 255, 0.22);
    color: #93BEEF;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--os-r-pill);
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
}

.os-live-dot {
    width: 7px;
    height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    display: inline-block;
    animation: os-live-dot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.os-hero h1 {
    color: #fff;
    font-family: var(--os-font-display);
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.10;
    letter-spacing: -0.04em;
}

.os-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #93BEEF 0%, #C0E0FF 50%, #E6F4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.os-hero-rule {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--os-gold), var(--os-gold-light));
    margin: 22px auto 26px;
    border-radius: 2px;
}

.os-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.60);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.80;
    font-weight: 400;
}

.os-gradient-text {
    background: linear-gradient(135deg, #93BEEF, var(--os-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.os-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--os-blue);
    color: white !important;
    font-family: var(--os-font);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--os-r);
    border: 1.5px solid var(--os-blue);
    cursor: pointer;
    transition: all 0.2s var(--os-ease);
    letter-spacing: -0.01em;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 59, 164, 0.22), 0 4px 18px rgba(0, 59, 164, 0.16);
    position: relative;
    overflow: hidden;
}

.os-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.10), transparent);
    pointer-events: none;
}

.os-btn:hover {
    background: #002E85;
    border-color: #002E85;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 59, 164, 0.30);
}

.os-btn:active {
    transform: translateY(0);
}

.os-btn-navy {
    background: var(--os-navy);
    border-color: var(--os-navy);
    box-shadow: 0 2px 6px rgba(26, 35, 71, 0.25);
}

.os-btn-navy:hover {
    background: var(--os-navy-dark);
    border-color: var(--os-navy-dark);
}

.os-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.90) !important;
    box-shadow: none;
}

.os-btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.50);
    color: #fff !important;
    transform: translateY(-1px);
}

.os-btn-gold {
    background: var(--os-gold);
    border-color: var(--os-gold);
    box-shadow: 0 2px 8px rgba(198, 151, 58, 0.28);
}

.os-btn-gold:hover {
    background: #B5862E;
    border-color: #B5862E;
}

.os-btn-wa {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28) !important;
}

.os-btn-wa:hover {
    background: #1ebe58 !important;
    border-color: #1ebe58 !important;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.os-section {
    padding: 88px 0;
    background: var(--os-white);
}

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

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

.os-section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--os-blue);
    background: rgba(0, 59, 164, 0.07);
    padding: 5px 14px;
    border-radius: var(--os-r-pill);
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════
   GRID
═══════════════════════════════════════════════════════════ */
.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.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);
}

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.os-card {
    background: var(--os-white);
    border: 1px solid var(--os-border);
    border-radius: var(--os-r-lg);
    padding: 32px;
    box-shadow: var(--os-shadow);
    transition: all 0.3s var(--os-ease);
    position: relative;
    overflow: hidden;
}

.os-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--os-blue), var(--os-gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.os-card:hover {
    border-color: rgba(0, 59, 164, 0.12);
    box-shadow: var(--os-shadow-lg);
    transform: translateY(-4px);
}

.os-card:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HIGHLIGHT BOX
═══════════════════════════════════════════════════════════ */
.os-highlight-box {
    background: var(--os-white);
    border: 1px solid var(--os-border);
    border-left: 4px solid var(--os-blue);
    padding: 36px;
    border-radius: var(--os-r-lg);
    box-shadow: var(--os-shadow-md);
    margin: 24px 0;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.os-trust-bar {
    background: var(--os-navy);
    padding: 20px 0;
    overflow: hidden;
}

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

.os-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.os-trust-item:last-child {
    border-right: none;
}

.os-trust-item .ti-icon {
    color: var(--os-gold-light);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   ACTIVITY TICKER
═══════════════════════════════════════════════════════════ */
.os-activity-ticker {
    background: #F0F4FA;
    border-top: 1px solid var(--os-border);
    border-bottom: 1px solid var(--os-border);
    overflow: hidden;
    padding: 10px 0;
}

.os-ticker-inner {
    display: flex;
    gap: 0;
    animation: osTicker 30s linear infinite;
    width: max-content;
}

.os-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--os-text-muted);
    padding: 0 28px;
    border-right: 1px solid var(--os-border);
    white-space: nowrap;
}

.os-ticker-dot {
    width: 7px;
    height: 7px;
    background: var(--os-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: os-live-dot 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   STAT NUMBER
═══════════════════════════════════════════════════════════ */
.os-stat-number {
    font-family: var(--os-font-display);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--os-navy);
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════
   BADGE
═══════════════════════════════════════════════════════════ */
.os-badge {
    display: inline-block;
    background: rgba(0, 59, 164, 0.1);
    color: var(--os-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--os-r-pill);
    border: 1px solid rgba(0, 59, 164, 0.18);
}

.os-badge-green {
    background: rgba(0, 105, 74, 0.08);
    color: var(--os-green);
    border-color: rgba(0, 105, 74, 0.18);
}

.os-badge-gold {
    background: rgba(198, 151, 58, 0.10);
    color: var(--os-gold);
    border-color: rgba(198, 151, 58, 0.22);
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════ */
.os-timeline {
    position: relative;
    padding-left: 28px;
}

.os-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--os-blue), var(--os-gold));
}

.os-timeline-item {
    position: relative;
    margin-bottom: 36px;
}

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

.os-timeline-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--os-blue);
    border: 3px solid var(--os-white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--os-blue);
}

.os-timeline-day {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--os-gold);
    margin-bottom: 4px;
}

.os-timeline-item h4 {
    font-size: 1.05rem;
    color: var(--os-navy);
    margin-bottom: 6px;
}

.os-timeline-item p {
    font-size: 0.9rem;
    color: var(--os-text-muted);
    line-height: 1.70;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.os-faq-item {
    border: 1px solid var(--os-border);
    border-radius: var(--os-r);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.os-faq-item.active {
    box-shadow: var(--os-shadow-md);
}

.os-faq-q {
    width: 100%;
    background: var(--os-white);
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--os-font);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--os-navy);
    text-align: left;
    gap: 16px;
    transition: background 0.2s;
}

.os-faq-q:hover {
    background: #F7F9FC;
}

.os-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 59, 164, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--os-blue);
    transition: all 0.3s;
}

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

.os-faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--os-text-body);
    line-height: 1.80;
    border-top: 1px solid var(--os-border);
    background: #FAFBFC;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════ */
.os-form-group {
    margin-bottom: 20px;
}

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

.os-input,
.os-select,
.os-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--os-border-md);
    border-radius: var(--os-r);
    font-family: var(--os-font);
    font-size: 0.95rem;
    color: var(--os-text);
    background: var(--os-white);
    transition: all 0.2s;
    outline: none;
}

.os-input:focus,
.os-select:focus,
.os-textarea:focus {
    border-color: var(--os-blue);
    box-shadow: 0 0 0 3px rgba(0, 59, 164, 0.10);
}

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

.os-form-msg {
    display: none;
    padding: 14px 18px;
    border-radius: var(--os-r);
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 500;
}

.os-form-msg.success {
    background: rgba(10, 124, 79, 0.08);
    color: var(--os-success);
    border: 1px solid rgba(10, 124, 79, 0.22);
}

.os-form-msg.error {
    background: rgba(192, 57, 43, 0.08);
    color: var(--os-danger);
    border: 1px solid rgba(192, 57, 43, 0.22);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT WIDGET
═══════════════════════════════════════════════════════════ */
.os-wa-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.os-wa-float {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 13px 20px;
    border-radius: var(--os-r-pill);
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40);
    transition: all 0.22s;
    animation: osPulse 3s infinite;
}

.os-wa-float svg {
    width: 22px;
    height: 22px;
    fill: white;
    flex-shrink: 0;
}

.os-wa-float:hover {
    background: #1ebe5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
    animation: none;
}

.os-wa-label {
    font-weight: 700;
}

.os-wa-bubble {
    display: none;
    background: var(--os-white);
    border: 1px solid var(--os-border);
    border-radius: var(--os-r-lg);
    padding: 20px;
    width: 300px;
    box-shadow: var(--os-shadow-xl);
}

.os-wa-bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--os-border);
}

.os-wa-bubble-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.os-wa-bubble-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 18px;
    border-radius: var(--os-r);
    text-decoration: none !important;
    width: 100%;
    transition: background 0.2s;
}

.os-wa-bubble-btn:hover {
    background: #1ebe5e;
    color: white !important;
}

/* ═══════════════════════════════════════════════════════════
   STICKY CONVERSION BAR
═══════════════════════════════════════════════════════════ */
.os-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9995;
    background: var(--os-navy);
    border-top: 2px solid var(--os-gold);
    box-shadow: 0 -4px 24px rgba(15, 26, 46, 0.18);
}

.os-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

.os-sticky-cta-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
}

.os-sticky-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: os-live-dot 1.6s infinite;
}

.os-sticky-cta-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.os-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--os-r);
    font-size: 0.855rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.os-sticky-btn-email:hover {
    background: #DDE3EC;
    color: var(--os-navy) !important;
}

.os-sticky-btn-wa {
    background: #25D366;
    color: white !important;
}

.os-sticky-btn-wa:hover {
    background: #1ebe5e;
    color: white !important;
}

.os-sticky-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE CTA STRIP
═══════════════════════════════════════════════════════════ */
.os-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9994;
    background: var(--os-white);
    border-top: 1px solid var(--os-border);
    padding: 10px 16px;
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.os-footer {
    background: var(--os-navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 0;
}

.os-footer h3 {
    font-family: var(--os-font-display);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.os-footer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.os-footer a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.18s;
}

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

.os-footer-policies {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.os-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.os-policy-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

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

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

.os-footer-bottom {
    text-align: center;
    padding: 16px 0 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.30);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   TAG
═══════════════════════════════════════════════════════════ */
.os-tag {
    display: inline-block;
    background: rgba(0, 59, 164, 0.06);
    color: var(--os-blue);
    font-size: 0.76rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--os-r-pill);
    border: 1px solid rgba(0, 59, 164, 0.12);
    margin: 3px;
}

/* ═══════════════════════════════════════════════════════════
   TAB CONTENT VISIBILITY
═══════════════════════════════════════════════════════════ */
.os-tab-content {
    display: none;
}

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

/* ═══════════════════════════════════════════════════════════
   LEGAL / POLICY PAGES
═══════════════════════════════════════════════════════════ */
.os-legal-page {
    max-width: 820px;
    margin: 0 auto;
}

.os-legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.os-legal-page h2 {
    font-size: 1.4rem;
    margin: 36px 0 12px;
}

.os-legal-page h3 {
    font-size: 1.1rem;
    margin: 24px 0 8px;
}

.os-legal-page ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.os-legal-page li {
    margin-bottom: 6px;
    color: var(--os-text-body);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .os-container {
        padding: 0 28px;
    }

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

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

@media (max-width: 768px) {
    .os-container {
        padding: 0 18px;
    }

    .os-nav {
        display: none;
    }

    .os-hamburger {
        display: flex;
    }

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

    .os-hero {
        padding: 72px 0 60px;
    }

    .os-hero h1 {
        font-size: 2rem;
    }

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

    .os-trust-items {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 16px;
    }

    .os-sticky-cta-inner {
        padding: 10px 16px;
    }

    .os-sticky-cta-left {
        font-size: 0.8rem;
    }

    .os-mobile-cta {
        display: flex;
    }

    .os-wa-widget {
        bottom: 80px;
        right: 18px;
    }

    .os-sticky-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .os-hero h1 {
        font-size: 1.75rem;
    }

    .os-hero p {
        font-size: 0.97rem;
    }

    .os-highlight-box {
        padding: 24px;
    }

    .os-card {
        padding: 22px;
    }
}