 :root {
    --gold: #e5ab54;
    --gold-light: #e5ab54;
    --gold-dark: #e5ab54;
    --dark-blue: #0B1527;
  }
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }
  /* Content */
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 80px;
    width: 100%;
  }

  .hero-content { max-width: 560px; }

  /* Heading */
  .hero-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }
  .hero-h1 span {
    color: var(--gold-light);
  }

  /* Description */
  .hero-p {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    line-height: 1.78;
    margin-bottom: 40px;
    max-width: 460px;
  }

  /* Buttons */
  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(160,120,48,0.45);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(160,120,48,0.55);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border: 1.5px solid rgba(255,255,255,0.28);
    color: rgba(0, 0, 0, 0.82);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
    background-color:white ;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.07);
  }

  /* Call */
  .hero-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
  .hero-call span {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
  }
  .hero-call a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,0.3);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
  }
  .hero-call a:hover { color: var(--gold); }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: rgba(5, 10, 20, 0.95);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 20px 0;
  }
  .trust-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .trust-icon {
    width: 38px; height: 38px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .trust-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .trust-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
  }
  .trust-sep {
    width: 1px; height: 32px;
    background: rgba(201,168,76,0.12);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-inner { padding: 60px 28px; }
    .trust-bar-inner { padding: 0 24px; }
    .trust-sep { display: none; }
    .hero-overlay {
      background: linear-gradient(180deg, rgba(11,21,39,0.88) 0%, rgba(11,21,39,0.75) 100%);
    }
  }
  @media (max-width: 600px) {
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  }

  /* ══════════════════════════════
     SECTION WRAPPER
  ══════════════════════════════ */
  .why-choose {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    position: relative;
    overflow: visible;
    padding-top: 70px;
  }

  /* ══════════════════════════════
     LEFT PANEL  (55%)
  ══════════════════════════════ */
  .left-image {
    flex: 0 0 55%;
    position: relative;
    overflow: visible;
  }

  .left-image .desktop-image {
    width: 100%;
    height: 95%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .left-image .mobile-image { display: none; }

  /* Security link badges */
  .security-link {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid #c0c8d8;
    border-left: 5px solid #e5ab54;
    padding: 11px 20px;
    min-width: 130px;
    border-radius: 2px;
    box-shadow: 2px 3px 12px rgba(0,0,0,0.12);
    transition: all 0.22s;
    z-index: 5;
  }
  .security-link:hover { background: #e5ab54; }
  .security-link:hover .link-text { color: #fff; }

  .link-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.8px;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .home-security     { top: 60px; left: 80px; }
  .business-security { bottom: 100px; right: 26px; }

  /* Camera overlapping into right panel */
  .camera-wrap {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-52%);
    z-index: 20;
    width: 340px;
    pointer-events: none;
  }
  .camera-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(6px 10px 24px rgba(0,0,0,0.20));
  }

  /* ══════════════════════════════
     RIGHT PANEL  (45%)
  ══════════════════════════════ */
  .right-text {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 50px;
  }

  .content { width: 100%; }

  .content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0d0d0d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .logo1 {
    height: 130px;
    width: auto;
    display: block;
    margin-bottom: 20px;
  }

  .content h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0d0d0d;
    text-transform: uppercase;
    line-height: 1.45;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
  }

  .content p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
  }
  .content p a { color: inherit; font-weight: 700; text-decoration: none; }
  .content p a:hover { color: #e5ab54; }

  .buttons {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-read {
    background: #111;
    color: #fff;
    padding: 13px 30px;
    border-radius: 5px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-read:hover { background: #333; }

  .btn-contact {
    background: #e5ab54;
    color: #fff;
    padding: 13px 30px;
    border-radius: 5px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-contact:hover { background: #e5ab54; }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 1200px) {
    .camera-wrap { width: 270px; right: -110px; }
    .right-text  { padding: 50px 40px 50px 155px; }
  }

  @media (max-width: 1024px) {
    .camera-wrap { width: 210px; right: -80px; }
    .right-text  { padding: 50px 30px 50px 120px; }
    .content h3  { font-size: 21px; }
    .content h4  { font-size: 15px; }
  }

  @media (max-width: 768px) {
    .why-choose     { flex-direction: column; overflow: hidden; }
    .left-image     { flex: none; width: 100%; overflow: hidden; }

    .left-image .desktop-image { display: none; }
    .left-image .mobile-image  {
      display: block;
      width: 100%;
      height: 280px;
      object-fit: cover;
      object-position: center top;
    }

    .camera-wrap       { display: none; }
    .home-security     { top: 14px;    left: 14px;  }
    .business-security { bottom: 14px; right: 14px; }

    .right-text {
      flex: none;
      width: 100%;
      padding: 36px 20px 40px;
    }

    .content h3 { font-size: 20px; }
    .content h4 { font-size: 15px; }
    .content p  { font-size: 14px; }
  }

  @media (max-width: 480px) {
    .left-image .mobile-image { height: 220px; }
    .content h3 { font-size: 18px; }
    .buttons    { flex-direction: column; }
    .btn-read, .btn-contact { text-align: center; width: 100%; }
  }

   /* ══════════════════════════════
     SECTION
  ══════════════════════════════ */
  .platform-section {
    background: #ffffff;
    padding: 80px 60px 100px;
  }

  /* ── TOP HEADING ── */
  .platform-heading {
    text-align: center;
    margin-bottom: 52px;
  }
  .platform-heading .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #8a9ab0;
    margin-bottom: 14px;
  }
  .platform-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0d2137;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .platform-heading p {
    font-size: 16px;
    font-weight: 500;
    color: #5a6a7e;
  }

  /* ══════════════════════════════
     TAB BAR
  ══════════════════════════════ */
  .tab-bar {
    display: flex;
    max-width: 900px;
    margin: 0 auto 56px;
    border: 1.5px solid #d8dfe8;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
  }

  .tab-btn {
    flex: 1;
    padding: 15px 12px;
    background: transparent;
    border: none;
    border-right: 1.5px solid #d8dfe8;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7a8a9c;
    cursor: pointer;
    transition: all 0.22s ease;
    text-align: center;
    line-height: 1.3;
  }
  .tab-btn:last-child { border-right: none; }
  .tab-btn:hover:not(.active) { background: #f5f8fa; color: #e5ab54; }
  .tab-btn.active { background: #e5ab54; color: #fff; font-weight: 700; }

  /* ══════════════════════════════
     TAB PANELS
  ══════════════════════════════ */
  .tab-panel {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 80px;
  }
  .tab-panel.active { display: flex; }

  /* ── LEFT TEXT ── */
  .panel-text {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .panel-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0d2137;
    line-height: 1.25;
    margin-bottom: 30px;
  }
  .panel-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .panel-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 15px;
    color: #3a4e63;
    line-height: 1.55;
  }
  .panel-text ul li::before {
    content: '';
    display: block;
    width: 9px; height: 9px;
    min-width: 9px;
    background: #e5ab54;
    border-radius: 50%;
    margin-top: 6px;
  }

  /* ── RIGHT MEDIA ── */
  .panel-media {
    flex: 1;
    min-width: 0;
  }

  /* VIDEO — no border, no shadow, no controls bar feel */
  .video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1e2e;
  }
  .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* hide native controls visually but keep them for accessibility */
  }
  /* Remove native controls bar look — no outline, no border */
  .video-wrap video:focus { outline: none; }

  /* IMAGE panels — same container, img fills it */
  .img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1e2e;
  }
  .img-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ── PANEL 3 specific: dark card style like screenshot ── */
  .secure-card {
    background: #0d1e2e;
    border-radius: 10px;
    border-top: 3px solid #e5ab54;
    padding: 40px 36px 50px;
    position: relative;
  }
  /* Top accent line */
  .secure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: #e5ab54;
    border-radius: 0 0 3px 3px;
  }
  .secure-icons-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .secure-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .secure-icon-item .icon-box {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
  }
  .secure-icon-item .icon-box svg { color: #fff; }
  .secure-icon-item span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  /* Connector lines */
  .secure-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    width: 60%;
  }
  .conn-line-h {
    width: 100%; height: 1px;
    background: rgba(255,255,255,0.25);
    position: relative;
  }
  .conn-ticks {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .conn-tick {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.25);
  }
  .conn-line-v {
    width: 1px; height: 30px;
    background: rgba(255,255,255,0.25);
    margin: 0 auto;
  }
  /* Platform box */
  .secure-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
  }
  .platform-box {
    width: 64px; height: 64px;
    background: #162a3d;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .cloud-icon {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  /* Shield badge */
  .shield-wrap {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  /* ── PANEL 4 specific: wheel/circle diagram ── */
  .wheel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
  .wheel-wrap img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 960px) {
    .tab-panel.active { flex-direction: column; gap: 40px; }
    .panel-text { flex: none; max-width: 100%; width: 100%; }
    .panel-media { width: 100%; }
    .platform-heading h2 { font-size: 30px; }
    .platform-section { padding: 60px 24px 80px; }
  }
  @media (max-width: 600px) {
    .tab-bar { flex-wrap: wrap; }
    .tab-btn { flex: 0 0 50%; border-bottom: 1.5px solid #d8dfe8; }
    .tab-btn:nth-child(2) { border-right: none; }
    .tab-btn:nth-child(3) { border-bottom: none; }
    .tab-btn:nth-child(4) { border-right: none; border-bottom: none; }
    .platform-heading h2 { font-size: 24px; }
    .panel-text h3 { font-size: 26px; }
    .platform-section { padding: 50px 16px 70px; }
    .secure-icons-row { gap: 8px; }
    .secure-icon-item span { font-size: 9px; }
  }

  
  /* ══════════════════════════════
     SECTION WRAPPER
  ══════════════════════════════ */
  .pss-hero {
    position: relative;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* ══════════════════════════════
     BACKGROUND LAYERS
  ══════════════════════════════ */
  .pss-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .pss-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: pss-zoom 22s ease-in-out infinite alternate;
  }

  @keyframes pss-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
  }

  .pss-bg-desktop {
    background-image: url("./images/background/security-banner.webp");
  }
  .pss-bg-mobile {
    background-image: url("./images/security-banner-mb.webp");
    display: none;
  }

  /* Multi-layer overlay — asymmetric gradient from left */
  .pss-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg,
        rgba(6,10,20,0.92) 0%,
        rgba(10,15,30,0.78) 45%,
        rgba(10,15,30,0.30) 75%,
        transparent 100%
      );
  }

  /* Diagonal gold slash */
  .pss-slash {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 55%,
      rgba(201,168,76,0.06) 56%,
      rgba(201,168,76,0.03) 65%,
      transparent 66%
    );
    pointer-events: none;
  }

  /* Noise texture overlay */
  .pss-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* Dot grid pattern */
  .pss-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ══════════════════════════════
     CONTENT GRID
  ══════════════════════════════ */
  .pss-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 600px;
  }

  /* ══════════════════════════════
     LEFT TEXT BLOCK
  ══════════════════════════════ */
  .pss-text {
    max-width: 620px;
  }

  /* Eyebrow pill */
  .pss-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 40px;
    margin-bottom: 18px;
    animation: pss-fadein 0.8s ease both;
  }
  .pss-eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pss-pulse 2s ease-in-out infinite;
  }
  @keyframes pss-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.65); }
  }
  .pss-eyebrow span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  /* Heading */
  .pss-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    animation: pss-slideup 0.9s cubic-bezier(0.4,0,0.2,1) 0.1s both;
  }

  .pss-title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
    display: inline-block;
  }
  .pss-title em::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: pss-expand 1.4s ease 0.8s both;
  }
  @keyframes pss-expand {
    from { width: 0; opacity: 0; }
    to   { width: 100%; opacity: 1; }
  }

  /* Description */
  .pss-desc {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 520px;
    animation: pss-slideup 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s both;
  }
  .pss-desc a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    transition: border-color 0.2s, color 0.2s;
  }
  .pss-desc a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  /* CTA button */
  .pss-cta-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: pss-slideup 0.9s cubic-bezier(0.4,0,0.2,1) 0.3s both;
  }

  .pss-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.28s;
    box-shadow: 0 6px 28px rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
  }
  .pss-btn-main::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.18);
    transition: left 0.5s ease;
  }
  .pss-btn-main:hover::before { left: 100%; }
  .pss-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201,168,76,0.4);
  }
  .pss-btn-main svg { width: 16px; height: 16px; flex-shrink: 0; }

  .pss-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    transition: all 0.25s;
  }
  .pss-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .pss-btn-ghost svg { width: 14px; height: 14px; }

  /* Trust indicators */
  .pss-trust {
    display: flex;
    gap: 0;
    animation: pss-fadein 1s ease 0.6s both;
  }

  .pss-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px 0 0;
    margin-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .pss-trust-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .pss-trust-num {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
  }
  .pss-trust-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  /* ══════════════════════════════
     RIGHT EMPTY (keeps image visible)
  ══════════════════════════════ */
  .pss-visual { /* empty col — lets background photo show */ }

  /* ══════════════════════════════
     SCROLL INDICATOR
  ══════════════════════════════ */
  .pss-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: pss-fadein 1s ease 1.2s both;
    cursor: pointer;
  }
  .pss-scroll span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .pss-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(201,168,76,0.6), transparent);
    animation: pss-scrolldrop 1.8s ease-in-out infinite;
  }
  @keyframes pss-scrolldrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }

  /* ══════════════════════════════
     SHARED ANIMATIONS
  ══════════════════════════════ */
  @keyframes pss-slideup {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pss-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 900px) {
    .pss-bg-desktop { display: none; }
    .pss-bg-mobile  { display: block; }

    .pss-content {
      grid-template-columns: 1fr;
      padding: 80px 30px 60px;
      text-align: center;
      min-height: unset;
    }
    .pss-visual { display: none; }
    .pss-text { max-width: 100%; }
    .pss-desc { max-width: 100%; }
    .pss-cta-wrap { justify-content: center; }
    .pss-trust { justify-content: center; }
    .pss-eyebrow { margin: 0 auto 28px; }
    .pss-title em::after { left: 50%; transform: translateX(-50%); }
  }

  @media (max-width: 560px) {
    .pss-content { padding: 100px 20px 70px; }
    .pss-title { font-size: 36px; }
    .pss-desc { font-size: 14.5px; }
    .pss-btn-main { padding: 14px 28px; font-size: 13px; }
    .pss-trust { flex-wrap: wrap; gap: 20px; }
    .pss-trust-item {
      border-right: none;
      margin-right: 0;
      padding-right: 0;
      flex: 1 1 40%;
      min-width: 100px;
    }
  }

   /* ─────────────────── SECTION ─────────────────── */
  .realtime-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .realtime-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    z-index: 0;
  }

  .realtime-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* ─────────────────── HEADER ─────────────────── */
  .realtime-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .realtime-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .realtime-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    opacity: 0.8;
  }

  /* ─────────────────── DASHBOARD WRAPPER ─────────────────── */
  .dashboard-wrapper {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
  }

  /* ─────────────────── CAMERA GRID ─────────────────── */
  .cameras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  /* ─────────────────── CAMERA CARD ─────────────────── */
  .camera-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 2px solid transparent;
  }

  .camera-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,149,0,0.2);
    border-color: var(--primary-orange);
  }

  .camera-preview {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .camera-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.01) 3px,
      rgba(255,255,255,0.01) 6px
    );
    pointer-events: none;
  }

  .camera-overlay {
    position: absolute;
    top: 12px; left: 12px; right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
  }

  .rec-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.75);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
  }

  .rec-badge .dot {
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink-dot 1.5s infinite;
    flex-shrink: 0;
  }

  @keyframes blink-dot {
    0%, 50%  { opacity: 1; }
    51%,100% { opacity: 0.2; }
  }

  .camera-quality {
    background: rgba(0,0,0,0.75);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
  }

  .camera-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.3);
  }

  .camera-info {
    padding: 18px 20px;
  }

  .camera-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
  }

  .camera-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
  }

  .status-item .icon {
    width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ═══════════════════════════════════════
     TABLET  ≤ 900px
  ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    .realtime-section { padding: 70px 16px; }
    .dashboard-wrapper { padding: 24px; border-radius: 22px; }
    .cameras-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .realtime-header { margin-bottom: 40px; }
  }

  /* ═══════════════════════════════════════
     MOBILE  ≤ 600px
  ═══════════════════════════════════════ */
  @media (max-width: 600px) {
    .realtime-section { padding: 52px 12px 60px; }

    .realtime-section::before { height: 180px; }

    .realtime-header {
      margin-bottom: 28px;
      padding: 0 4px;
    }

    .realtime-header h2 { font-size: 1.65rem; margin-bottom: 10px; }
    .realtime-header p  { font-size: 0.95rem; }

    /* Dashboard wrapper — remove heavy padding on mobile */
    .dashboard-wrapper {
      padding: 16px 12px;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    }

    /* Single column on mobile */
    .cameras-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    /* Make cards horizontal on mobile: preview left, info right */
    .camera-card {
      display: flex;
      flex-direction: row;
      border-radius: 14px;
    }

    .camera-preview {
      width: 130px;
      min-width: 130px;
      aspect-ratio: unset;
      flex-shrink: 0;
      border-radius: 0;
    }

    .camera-overlay {
      top: 8px; left: 8px; right: 8px;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    .rec-badge, .camera-quality {
      font-size: 0.65rem;
      padding: 4px 8px;
      border-radius: 5px;
    }

    .rec-badge .dot { width: 5px; height: 5px; }

    .camera-icon { font-size: 1.6rem; }

    .camera-info {
      padding: 14px 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1;
      min-width: 0;
    }

    .camera-name {
      font-size: 0.95rem;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .camera-status {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .status-item { font-size: 0.78rem; }
  }

  /* Very small phones */
  @media (max-width: 360px) {
    .camera-preview {
      width: 110px;
      min-width: 110px;
    }
    .camera-info { padding: 10px 10px; }
    .camera-name { font-size: 0.88rem; }
  }

   
  :root {
    --dark-blue: #0A0F1E;
    --navy: #0D1B3E;
    --panel-bg: #0b1628;
  }

  /* ─────────────────────── SECTION ─────────────────────── */
  .equip-section {
    background: var(--panel-bg);
    padding: 70px 0;
    overflow: hidden;
  }

  .equip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
    min-height: 680px;
  }

  /* ─────────────────────── LEFT ─────────────────────── */
  .equip-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
    line-height: 1.1;
  }

  .equip-items { display: flex; flex-direction: column; gap: 0; }

  .equip-item {
    padding: 14px 0 14px 20px;
    border-left: 3px solid rgba(255,255,255,0.07);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    border-radius: 0 8px 8px 0;
  }
  .equip-item::before {
    content: '';
    position: absolute;
    left: -3px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    border-radius: 2px;
  }
  .equip-item.active::before,
  .equip-item:hover::before { transform: scaleY(1); }

  .equip-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
    transition: color 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.45s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.5px;
    transform: translateX(0);
  }
  .equip-item p {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.0);
    line-height: 1.6;
    max-width: 340px;
    transition: color 0.45s cubic-bezier(0.4,0,0.2,1), max-height 0.45s cubic-bezier(0.4,0,0.2,1);
    max-height: 0;
    overflow: hidden;
  }
  .equip-item.active h3,
  .equip-item:hover h3 { color: #fff; transform: translateX(4px); }
  .equip-item.active p,
  .equip-item:hover p  { color: rgba(255,255,255,0.55); max-height: 80px; }

  /* ── CTA ── */
  .equip-cta { margin-top: 36px; }
  .equip-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s;
    cursor: pointer;
  }
  .equip-cta a:hover { background: var(--gold); color: var(--dark-blue); }
  .equip-cta small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    padding-left: 4px;
  }

  /* ─────────────────────── RIGHT (desktop) ─────────────────────── */
  .equip-right {
    position: relative;
    height: 620px;
  }

  .eq-svg {
    position: absolute;
    cursor: pointer;
    transition: filter 0.5s cubic-bezier(0.4,0,0.2,1),
                transform 0.5s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.4) saturate(0.15) grayscale(0.3);
    will-change: filter, transform;
  }
  .eq-svg.highlight {
    filter: brightness(1.05) saturate(1.1);
    transform: scale(1.07) translateY(-3px);
    z-index: 10;
  }
  .eq-svg.highlight .eq-glow { opacity: 1; }
  .eq-svg svg { display: block; }

  .eq-glow {
    position: absolute;
    inset: -8px;
    border-radius: 18px;
    border: 1.5px solid rgba(201,168,76,0.7);
    box-shadow: 0 0 28px rgba(201,168,76,0.35), 0 0 8px rgba(201,168,76,0.2);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }

  .eq-tag {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--gold);
    color: var(--dark-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .eq-svg.highlight .eq-tag { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ═══════════════════════════════════════════
     MOBILE: Scrollable horizontal card grid
     ═══════════════════════════════════════════ */

  /* Mobile equipment grid — hidden on desktop */
  .mobile-equip-grid { display: none; }

  .mobile-card {
    flex: 0 0 auto;
    width: 130px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    scroll-snap-align: start;
  }
  .mobile-card.active {
    border-color: var(--gold);
    background: rgba(201,168,76,0.07);
    transform: translateY(-3px);
  }
  .mobile-card svg { display: block; }
  .mobile-card-label {
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: center;
    transition: color 0.3s;
  }
  .mobile-card.active .mobile-card-label { color: var(--gold); }

  /* Scroll container */
  .mobile-scroll-wrap {
    overflow-x: auto;
    padding: 8px 20px 16px;
    display: flex;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-scroll-wrap::-webkit-scrollbar { display: none; }

  /* Category tabs */
  .mobile-cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 12px;
    scrollbar-width: none;
  }
  .mobile-cat-tabs::-webkit-scrollbar { display: none; }
  .mobile-tab {
    flex: 0 0 auto;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    background: transparent;
  }
  .mobile-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
  }

  /* ─────────────────────── BREAKPOINTS ─────────────────────── */

  /* Tablet */
  @media (max-width: 1024px) {
    .equip-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 30px;
    }
    .equip-right { height: 500px; }

    /* Scale down SVG items proportionally */
    .equip-right { transform-origin: top left; }
    #equipRight {
      transform: scale(0.78);
      transform-origin: top center;
      height: 490px;
    }
  }

  /* Mobile */
  @media (max-width: 700px) {
    .equip-section { padding: 44px 0 56px; }

    .equip-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 0;
      min-height: unset;
    }

    .equip-left {
      padding: 0 20px;
    }

    .equip-left h2 {
      font-size: 28px;
      margin-bottom: 24px;
      padding: 0;
    }

    /* Hide desktop SVG canvas on mobile */
    .equip-right { display: none; }

    /* Show mobile grid */
    .mobile-equip-grid { display: block; }

    .equip-items { gap: 0; }

    .equip-item { padding: 12px 0 12px 16px; }
    .equip-item h3 { font-size: 15px; }
    .equip-item p { font-size: 13px; max-width: 100%; }

    .equip-cta {
      margin-top: 28px;
      text-align: center;
    }
    .equip-cta a {
      width: 100%;
      justify-content: center;
      padding: 15px 24px;
      font-size: 13px;
    }
    .equip-cta small { text-align: center; }
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .mobile-card { width: 110px; }
    .equip-left h2 { font-size: 24px; }
  }

   .pb-section {
    background: #ffffff;
    padding: 64px 0 60px;
    position: relative;
    overflow: hidden;
  }

  /* Dot texture */
  .pb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10,15,30,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }

  /* Gold top rule */
  .pb-rule {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
  }

  /* Header */
  .pb-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 44px;
    padding: 0 20px;
  }
  .pb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .pb-eyebrow-line {
    width: 36px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }
  .pb-eyebrow span {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
  }
  .pb-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: -0.3px;
    line-height: 1.1;
  }
  .pb-header h2 span { color: var(--gold-dark); }
  .pb-header p {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(10,15,30,0.4);
    margin-top: 8px;
  }

  /* Marquee rows */
  .pb-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
  }

  .pb-row-wrap {
    overflow: hidden;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .pb-row {
    display: flex;
    gap: 32px;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pb-row-1 { justify-content: center; flex-wrap: wrap; }

  /* Brand card */
  .pb-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 165px;
    background: #fff;
    border: 1.5px solid rgba(10,15,30,0.08);
    border-radius: 14px;
    padding: 14px 22px;
    flex-shrink: 0;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }

  /* Shine sweep */
  .pb-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
  }
  .pb-card:hover::before { left: 150%; }

  /* Bottom gold line */
  .pb-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .pb-card:hover::after { transform: translateX(-50%) scaleX(1); }

  .pb-card:hover {
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 8px 28px rgba(10,15,30,0.08), 0 2px 8px rgba(201,168,76,0.12);
    transform: translateY(-4px);
  }

  .pb-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(1) opacity(0.45);
    transition: filter 0.35s ease;
    user-select: none;
    pointer-events: none;
  }
  .pb-card:hover img { filter: grayscale(0) opacity(1); }

  @media (max-width: 600px) {
    .pb-section { padding: 48px 0 44px; }
    .pb-card { width: 140px; height: 138px; padding: 12px 16px; }
    .pb-dot { display: none; }
  }

   /* ── SECTION ── */
  .pse-section {
    background: linear-gradient(135deg, #f0f3f8 0%, #e4e9f2 40%, #dde4f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid pattern */
  .pse-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(10,15,30,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,15,30,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* Gold accent diagonal shape */
  .pse-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .pse-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  /* ── LEFT ── */
  .pse-left {}

  .pse-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
  }
  .pse-eyebrow span {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .pse-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
  }
  .pse-left h2 em {
    font-style: normal;
    color: var(--gold-dark);
    position: relative;
  }

  .pse-left p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(10,15,30,0.5);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 36px;
  }

  /* Stats row */
  .pse-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .pse-stat-item {}
  .pse-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
    margin-bottom: 4px;
  }
  .pse-stat-num span { color: var(--gold-dark); }
  .pse-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(10,15,30,0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .pse-stat-divider {
    width: 1px;
    background: rgba(10,15,30,0.1);
    align-self: stretch;
  }

  /* CTA buttons */
  .pse-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .pse-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--dark-blue), #1a2a50);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(10,15,30,0.2);
  }
  .pse-btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(160,120,48,0.3);
  }
  .pse-btn-primary svg { width: 16px; height: 16px; }

  .pse-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    background: transparent;
    color: var(--dark-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 2px solid rgba(10,15,30,0.15);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
  }
  .pse-btn-secondary:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
  }
  .pse-btn-secondary svg { width: 15px; height: 15px; }

  /* ── RIGHT ── */
  .pse-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @keyframes float1 {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .pse-scene-wrap {
    opacity: 0;
    animation: slideIn 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
    position: relative;
    width: 100%;
  }

  .pse-product-img {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 40px 80px rgba(10,15,30,0.18));
    animation: float1 6s ease-in-out infinite;
  }
  .pse-product-img:hover {
    filter: drop-shadow(0 50px 100px rgba(10,15,30,0.25));
  }

  /* Floating badges */
  .pse-badge {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(10,15,30,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 30;
    animation: float1 4s ease-in-out infinite;
  }
  .pse-badge.b1 {
    top: 10%; left: 0px;
    animation-delay: 1s;
  }
  .pse-badge.b2 {
    top: 22%; right: 0px;
    animation-delay: 0.4s;
  }
  .pse-badge-icon {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pse-badge-icon.green { background: rgba(74,170,106,0.12); color: #2a8a4a; }
  .pse-badge-icon.gold  { background: rgba(201,168,76,0.12);  color: var(--gold-dark); }
  .pse-badge-icon svg { width: 14px; height: 14px; }
  .pse-badge-text { display: flex; flex-direction: column; line-height: 1; }
  .pse-badge-text strong {
    font-family: 'Oswald', sans-serif;
    font-size: 12px; font-weight: 700;
    color: var(--dark-blue);
  }
  .pse-badge-text span {
    font-size: 10px; font-weight: 600;
    color: rgba(10,15,30,0.4);
    margin-top: 2px;
  }

  @media (max-width: 1024px) {
    .pse-inner { grid-template-columns: 1fr; gap: 0; padding: 50px 30px; }
    .pse-right { height: 420px; }
    .pse-left p { max-width: 100%; }
  }
  @media (max-width: 600px) {
    .pse-inner { padding: 40px 20px; }
    .pse-right { height: 340px; }
    .pse-stats { gap: 20px; }
    .pse-stat-divider { display: none; }
    .pse-product-img {
    width: 60%;}
  }

    /* ── SECTION ── */
  .expert-section {
    background: #fff;
    padding: 80px 0;
  }

  .expert-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ── LEFT ── */
  .expert-left {}

  .expert-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 44px;
    max-width: 480px;
  }
  .expert-left h2 em {
    font-style: normal;
    color: var(--gold-dark);
  }

  /* Icon grid */
  .icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    margin-bottom: 48px;
  }

  .icon-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: default;
    transition: transform 0.2s;
  }
  .icon-item:hover { transform: translateY(-3px); }

  .icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    transition: all 0.25s;
    background: #fff;
    flex-shrink: 0;
  }
  .icon-item:hover .icon-wrap {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(201,168,76,0.06);
  }
  .icon-wrap svg {
    width: 55px;
    height: 70px;
    stroke-width: 1.6;
  }

  .icon-label {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(10,15,30,0.65);
    line-height: 1.45;
    max-width: 160px;
  }

  /* CTA */
  .expert-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--dark-blue), #1a2a50);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(10,15,30,0.18);
    width: fit-content;
  }
  .btn-call:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(160,120,48,0.3);
  }
  .btn-call svg { width: 18px; height: 18px; flex-shrink: 0; }

  .cta-note {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(10,15,30,0.35);
    padding-left: 4px;
  }

  /* ── RIGHT: Image ── */
  .expert-right {
    position: relative;
  }

  .expert-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10,15,30,0.14);
    line-height: 0;
  }

  .expert-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .expert-img-wrap:hover img {
    transform: scale(1.03);
  }

  /* Gold accent corner */
  .expert-img-wrap::before {
    content: '';
    position: absolute;
    top: -8px; right: -8px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 16px 0 0;
    z-index: 2;
    opacity: 0.7;
  }
  .expert-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -8px; left: -8px;
    width: 80px; height: 80px;
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 0 0 0 16px;
    z-index: 2;
    opacity: 0.7;
  }

  /* Floating availability badge */
  .avail-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 32px rgba(10,15,30,0.14);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    min-width: 210px;
  }
  .avail-dot-wrap {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(74,170,106,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .avail-dot {
    width: 12px;
    height: 12px;
    background: #4aaa6a;
    border-radius: 50%;
  }
  .avail-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(74,170,106,0.25);
    animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
  }
  @keyframes ping {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
  }
  .avail-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-blue);
  }
  .avail-text span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(10,15,30,0.4);
  }

  /* Rating badge top right */
  .rating-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--dark-blue);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(10,15,30,0.2);
  }
  .stars {
    display: flex;
    gap: 2px;
  }
  .stars svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
  }
  .rating-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
  }
  .rating-text span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
  }

  @media (max-width: 1024px) {
    .expert-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 30px; }
    .avail-badge { left: 16px; bottom: 16px; }
    .rating-badge { right: 16px; top: 16px; }
  }
  @media (max-width: 600px) {
    .expert-inner { padding: 0 20px; }
    .expert-section { padding: 50px 0; }
    .icon-grid { grid-template-columns: 1fr; gap: 24px; }
  }

  .ost-section {
  background: #fff;
  padding: 90px 40px 100px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.ost-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ost-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ost-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── LEFT: Image ── */
.ost-image-wrap { position: relative; }

.ost-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 75%; height: 75%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  z-index: 0;
}

.ost-img-main {
  position: relative; z-index: 1;
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 60px rgba(10,15,30,0.12);
}

/* Small inset image */
.ost-img-inset {
  position: absolute;
  bottom: -28px; right: -28px;
  z-index: 2;
  width: 180px; height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: 0 8px 28px rgba(10,15,30,0.15);
}

/* Founded badge */
.ost-founded-badge {
  position: absolute;
  top: 28px; right: -20px;
  z-index: 2;
  background: #0A0F1E;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(10,15,30,0.22);
}
.ost-founded-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 900;
  color: #C9A84C; line-height: 1;
  margin-bottom: 4px;
}
.ost-founded-label {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── RIGHT: Text ── */
.ost-text {}

.ost-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ost-eyebrow-line { width: 36px; height: 2px; background: linear-gradient(90deg, transparent, #C9A84C); border-radius: 2px; }
.ost-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #A07830;
}

.ost-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; color: #0A0F1E;
  line-height: 1.18; margin-bottom: 10px;
}
.ost-heading span { color: #C9A84C; }

.ost-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #C9A84C, #e8c96a);
  border-radius: 2px; margin-bottom: 26px;
}

.ost-para {
  font-size: 15px; line-height: 1.9;
  color: #666; margin-bottom: 18px;
}
.ost-para strong { color: #0A0F1E; font-weight: 600; }
.ost-para:last-of-type { margin-bottom: 34px; }

/* Stats row */
.ost-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8ecf2;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
  margin-bottom: 36px;
}
.ost-stat {
  background: #f8f9fc;
  padding: 20px 16px;
  text-align: center;
  transition: background .2s;
}
.ost-stat:hover { background: #fffbf0; }
.ost-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 900;
  color: #C9A84C; line-height: 1;
  margin-bottom: 5px;
}
.ost-stat-label {
  font-size: 11.5px; font-weight: 600;
  color: #888; line-height: 1.4;
}

/* CTA link */
.ost-cta {
  display: inline-flex;
  align-items: center; gap: 10px;
  background: #0A0F1E; color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.ost-cta:hover { background: #1e2a45; transform: translateY(-2px); }
.ost-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ost-section { padding: 70px 28px 80px; }
  .ost-container { gap: 50px; }
  .ost-img-main { height: 420px; }
  .ost-img-inset { width: 140px; height: 110px; right: -16px; bottom: -16px; }
}
@media (max-width: 700px) {
  .ost-section { padding: 56px 20px 64px; }
  .ost-container { grid-template-columns: 1fr; gap: 48px; }
  .ost-image-wrap { order: 2; }
  .ost-text { order: 1; }
  .ost-img-main { height: 300px; }
  .ost-image-wrap::before { display: none; }
  .ost-img-inset { display: none; }
  .ost-founded-badge { right: 12px; top: 16px; padding: 12px 16px; }
  .ost-founded-year { font-size: 22px; }
  .ost-cta { width: 100%; justify-content: center; }
  .ost-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .ost-stats { grid-template-columns: 1fr 1fr; }
  .ost-stat:last-child { grid-column: span 2; }
  .ost-img-main { height: 250px; }
}
.omv2-section { background:#f4f6f9; padding:90px 40px 100px; font-family:'Open Sans',sans-serif; position:relative; overflow:hidden; }
.omv2-section::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(10,15,30,0.03) 1px,transparent 1px); background-size:28px 28px; pointer-events:none; }
.omv2-container { max-width:1100px; margin:0 auto; position:relative; z-index:2; }
.omv2-header { text-align:center; margin-bottom:60px; }
.omv2-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:16px; }
.omv2-eline { width:36px; height:2px; background:linear-gradient(90deg,transparent,#C9A84C); border-radius:2px; }
.omv2-eline.r { background:linear-gradient(90deg,#C9A84C,transparent); }
.omv2-eyebrow span { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#A07830; }
.omv2-heading { font-family:'Montserrat',sans-serif; font-size:clamp(26px,3.8vw,44px); font-weight:800; color:#0A0F1E; line-height:1.15; margin-bottom:14px; }
.omv2-heading span { color:#C9A84C; }
.omv2-sub { font-size:15px; color:#888; max-width:500px; margin:0 auto; line-height:1.8; }
.omv2-mission { background:linear-gradient(135deg,#0A0F1E,#1e2a45); border-radius:18px; padding:50px 56px; margin-bottom:72px; position:relative; overflow:hidden; }
.omv2-mission-label { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:rgba(201,168,76,0.55); margin-bottom:16px; position:relative; z-index:1; }
.omv2-mission-text { font-family:'Montserrat',sans-serif; font-size:clamp(16px,2vw,22px); font-weight:700; color:#fff; line-height:1.65; max-width:820px; position:relative; z-index:1; }
.omv2-mission-text em { font-style:normal; color:#C9A84C; }
.omv2-cols { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.omv2-col-label { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#A07830; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.omv2-col-label::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,rgba(201,168,76,0.3),transparent); }
.omv2-col-heading { font-family:'Montserrat',sans-serif; font-size:clamp(20px,2.2vw,30px); font-weight:800; color:#0A0F1E; line-height:1.2; margin-bottom:10px; }
.omv2-col-heading em { font-style:normal; color:#C9A84C; }
.omv2-col-divider { width:48px; height:3px; background:linear-gradient(90deg,#C9A84C,#e8c96a); border-radius:2px; margin-bottom:28px; }
.omv2-value-list { display:flex; flex-direction:column; }
.omv2-value-item { display:flex; align-items:flex-start; gap:18px; padding:22px 0; border-bottom:1px solid #e8ecf2; transition:padding-left .2s; }
.omv2-value-item:hover { padding-left:6px; }
.omv2-value-item:first-child { padding-top:0; }
.omv2-value-item:last-child { border-bottom:none; }
.omv2-vnum { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:900; color:rgba(201,168,76,0.38); min-width:22px; padding-top:2px; flex-shrink:0; }
.omv2-vtitle { font-family:'Montserrat',sans-serif; font-size:14.5px; font-weight:800; color:#0A0F1E; margin-bottom:5px; }
.omv2-vdesc { font-size:13.5px; color:#777; line-height:1.75; }
.omv2-right { position:sticky; top:100px; }
.omv2-right-para { font-size:14.5px; line-height:1.85; color:#666; margin-bottom:38px; }
.omv2-right-para strong { color:#0A0F1E; font-weight:600; }
.omv2-stat-block { border-left:3px solid #C9A84C; padding-left:22px; margin-bottom:32px; }
.omv2-stat-big { font-family:'Montserrat',sans-serif; font-size:52px; font-weight:900; color:#0A0F1E; line-height:1; margin-bottom:5px; letter-spacing:-1px; }
.omv2-stat-big em { font-style:normal; color:#C9A84C; }
.omv2-stat-title { font-family:'Montserrat',sans-serif; font-size:13.5px; font-weight:700; color:#0A0F1E; margin-bottom:4px; }
.omv2-stat-desc { font-size:12.5px; color:#999; line-height:1.55; }
.omv2-mini-row { display:flex; border-top:1px solid #e8ecf2; padding-top:28px; margin-top:4px; }
.omv2-mini { flex:1; text-align:center; border-right:1px solid #e8ecf2; padding:0 10px; }
.omv2-mini:last-child { border-right:none; }
.omv2-mini-num { font-family:'Montserrat',sans-serif; font-size:22px; font-weight:900; color:#C9A84C; line-height:1; margin-bottom:5px; }
.omv2-mini-label { font-size:10.5px; font-weight:600; color:#888; line-height:1.4; }
@media(max-width:900px){ .omv2-section{padding:70px 28px 80px} .omv2-cols{gap:50px} .omv2-right{position:static} .omv2-mission{padding:36px 36px} }
@media(max-width:700px){ .omv2-section{padding:56px 20px 64px} .omv2-cols{grid-template-columns:1fr; gap:50px} .omv2-mission{padding:28px 22px} .omv2-stat-big{font-size:40px} }
@media(max-width:400px){ .omv2-mini-row{flex-wrap:wrap} .omv2-mini{flex:1 1 50%; border-right:none; border-bottom:1px solid #e8ecf2; padding:10px 0} .omv2-mini:nth-child(3),.omv2-mini:nth-child(4){border-bottom:none} }

.wca2-section { background:#fff; padding:90px 40px 100px; font-family:'Open Sans',sans-serif; position:relative; overflow:hidden; }
.wca2-section::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(10,15,30,0.03) 1px,transparent 1px); background-size:28px 28px; pointer-events:none; }
.wca2-container { max-width:1100px; margin:0 auto; position:relative; z-index:2; }
.wca2-header { text-align:center; margin-bottom:64px; }
.wca2-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:16px; }
.wca2-eline { width:36px; height:2px; background:linear-gradient(90deg,transparent,#C9A84C); border-radius:2px; }
.wca2-eline.r { background:linear-gradient(90deg,#C9A84C,transparent); }
.wca2-eyebrow span { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#A07830; }
.wca2-heading { font-family:'Montserrat',sans-serif; font-size:clamp(26px,3.8vw,44px); font-weight:800; color:#0A0F1E; line-height:1.15; margin-bottom:14px; }
.wca2-heading span { color:#C9A84C; }
.wca2-sub { font-size:15px; color:#888; max-width:500px; margin:0 auto; line-height:1.8; }
.wca2-layout { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; margin-bottom:64px; }
.wca2-img-wrap { position:relative; }
.wca2-img-wrap::after { content:''; position:absolute; bottom:-20px; right:-20px; width:75%; height:75%; background:rgba(201,168,76,0.07); border:1.5px solid rgba(201,168,76,0.18); border-radius:18px; z-index:0; }
.wca2-img { position:relative; z-index:1; width:100%; height:500px; object-fit:cover; border-radius:16px; display:block; box-shadow:0 20px 60px rgba(10,15,30,0.12); }
.wca2-badge { position:absolute; top:24px; left:-20px; z-index:2; background:#0A0F1E; border-radius:12px; padding:14px 20px; box-shadow:0 6px 22px rgba(10,15,30,0.22); text-align:center; }
.wca2-badge-num { font-family:'Montserrat',sans-serif; font-size:26px; font-weight:900; color:#C9A84C; line-height:1; margin-bottom:3px; }
.wca2-badge-label { font-size:10px; font-weight:600; color:rgba(255,255,255,0.45); letter-spacing:1.5px; text-transform:uppercase; }
.wca2-col-label { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#A07830; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.wca2-col-label::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,rgba(201,168,76,0.3),transparent); }
.wca2-text-heading { font-family:'Montserrat',sans-serif; font-size:clamp(22px,2.5vw,34px); font-weight:800; color:#0A0F1E; line-height:1.2; margin-bottom:10px; }
.wca2-text-heading em { font-style:normal; color:#C9A84C; }
.wca2-text-divider { width:50px; height:3px; background:linear-gradient(90deg,#C9A84C,#e8c96a); border-radius:2px; margin-bottom:22px; }
.wca2-para { font-size:14.5px; line-height:1.85; color:#666; margin-bottom:18px; }
.wca2-para strong { color:#0A0F1E; font-weight:600; }
.wca2-para:last-of-type { margin-bottom:30px; }
.wca2-award-list { display:flex; flex-direction:column; margin-bottom:30px; }
.wca2-award-row { display:flex; align-items:flex-start; gap:16px; padding:17px 0; border-bottom:1px solid #f0f1f5; transition:padding-left .2s; }
.wca2-award-row:hover { padding-left:5px; }
.wca2-award-row:first-child { padding-top:0; }
.wca2-award-row:last-child { border-bottom:none; }
.wca2-award-icon { width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,#C9A84C,#e8c96a); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 3px 10px rgba(201,168,76,0.25); }
.wca2-award-icon svg { width:16px; height:16px; stroke:#0A0F1E; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.wca2-award-name { font-family:'Montserrat',sans-serif; font-size:13.5px; font-weight:800; color:#0A0F1E; margin-bottom:2px; }
.wca2-award-org { font-size:12px; color:#A07830; font-weight:600; }
.wca2-award-year { font-size:11px; color:#bbb; margin-top:2px; }
.wca2-cert-label { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:rgba(10,15,30,0.35); margin-bottom:14px; }
.wca2-cert-list { display:flex; flex-wrap:wrap; gap:10px; }
.wca2-cert-pill { background:#f4f6f9; border:1.5px solid #e8ecf2; border-radius:30px; padding:7px 15px; display:flex; align-items:center; gap:7px; transition:border-color .2s; }
.wca2-cert-pill:hover { border-color:#C9A84C; }
.wca2-cert-dot { width:6px; height:6px; border-radius:50%; background:#C9A84C; flex-shrink:0; }
.wca2-cert-text { font-family:'Montserrat',sans-serif; font-size:11.5px; font-weight:700; color:#555; }
.wca2-banner { background:linear-gradient(135deg,#0A0F1E,#1e2a45); border-radius:18px; padding:48px 56px; display:flex; align-items:center; gap:60px; position:relative; overflow:hidden; }
.wca2-banner::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.wca2-banner-left { flex:1; position:relative; z-index:1; }
.wca2-banner-sublabel { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:rgba(201,168,76,0.55); margin-bottom:12px; }
.wca2-banner-heading { font-family:'Montserrat',sans-serif; font-size:clamp(18px,2.2vw,26px); font-weight:800; color:#fff; line-height:1.35; margin-bottom:12px; }
.wca2-banner-heading span { color:#C9A84C; }
.wca2-banner-desc { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.75; max-width:440px; }
.wca2-banner-right { display:flex; flex-direction:column; position:relative; z-index:1; flex-shrink:0; min-width:230px; }
.wca2-ach-item { display:flex; align-items:center; gap:12px; padding:13px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.wca2-ach-item:first-child { padding-top:0; }
.wca2-ach-item:last-child { border-bottom:none; padding-bottom:0; }
.wca2-ach-check { width:22px; height:22px; border-radius:50%; background:rgba(201,168,76,0.12); border:1.5px solid rgba(201,168,76,0.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.wca2-ach-check svg { width:10px; height:10px; stroke:#C9A84C; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.wca2-ach-text { font-size:13px; font-weight:600; color:rgba(255,255,255,0.75); }
@media(max-width:900px){ .wca2-section{padding:70px 28px 80px} .wca2-layout{gap:50px} .wca2-banner{flex-direction:column; gap:32px; padding:36px 36px} .wca2-banner-right{min-width:unset; width:100%} }
@media(max-width:700px){ .wca2-section{padding:56px 20px 64px} .wca2-layout{grid-template-columns:1fr; gap:48px} .wca2-img-wrap::after{display:none} .wca2-img{height:300px} .wca2-badge{left:12px; top:16px} .wca2-banner{padding:28px 22px; border-radius:14px} }

.cct-section{background:#f4f6f9;padding:90px 40px 100px;font-family:'Open Sans',sans-serif;position:relative;overflow:hidden}
.cct-section::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(10,15,30,0.03) 1px,transparent 1px);background-size:28px 28px;pointer-events:none}
.cct-container{max-width:1100px;margin:0 auto;position:relative;z-index:2}
.cct-header{text-align:center;margin-bottom:60px}
.cct-eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:16px}
.cct-eline{width:36px;height:2px;background:linear-gradient(90deg,transparent,#C9A84C);border-radius:2px}
.cct-eline.r{background:linear-gradient(90deg,#C9A84C,transparent)}
.cct-eyebrow span{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#A07830}
.cct-heading{font-family:'Montserrat',sans-serif;font-size:clamp(26px,3.8vw,44px);font-weight:800;color:#0A0F1E;line-height:1.15;margin-bottom:14px}
.cct-heading span{color:#C9A84C}
.cct-sub{font-size:15px;color:#888;max-width:500px;margin:0 auto;line-height:1.8}
.cct-layout{display:grid;grid-template-columns:1fr 1.1fr;gap:50px;align-items:start}
.cct-info-heading{font-family:'Montserrat',sans-serif;font-size:clamp(20px,2.2vw,28px);font-weight:800;color:#0A0F1E;line-height:1.25;margin-bottom:10px}
.cct-info-heading em{font-style:normal;color:#C9A84C}
.cct-info-divider{width:48px;height:3px;background:linear-gradient(90deg,#C9A84C,#e8c96a);border-radius:2px;margin-bottom:22px}
.cct-info-para{font-size:14.5px;line-height:1.85;color:#666;margin-bottom:36px}
.cct-info-para strong{color:#0A0F1E;font-weight:600}
.cct-detail-list{display:flex;flex-direction:column;margin-bottom:36px}
.cct-detail-row{display:flex;align-items:center;gap:18px;padding:18px 0;border-bottom:1px solid #e8ecf2;transition:padding-left .2s}
.cct-detail-row:first-child{padding-top:0}
.cct-detail-row:last-child{border-bottom:none}
.cct-detail-row:hover{padding-left:5px}
.cct-detail-icon{width:44px;height:44px;border-radius:12px;background:#0A0F1E;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 3px 12px rgba(10,15,30,0.14)}
.cct-detail-icon svg{width:18px;height:18px;stroke:#C9A84C;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cct-detail-label{font-family:'Montserrat',sans-serif;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#aaa;margin-bottom:3px}
.cct-detail-val{font-family:'Montserrat',sans-serif;font-size:14.5px;font-weight:700;color:#0A0F1E}
.cct-detail-val a{color:#0A0F1E;text-decoration:none;transition:color .2s}
.cct-detail-val a:hover{color:#C9A84C}
.cct-hours{background:#fff;border:1.5px solid #e8ecf2;border-radius:14px;padding:22px 24px;margin-bottom:32px}
.cct-hours-title{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#A07830;margin-bottom:14px;display:flex;align-items:center;gap:8px}
.cct-hours-dot{width:7px;height:7px;border-radius:50%;background:#2db87a;box-shadow:0 0 0 3px rgba(45,184,122,0.2);animation:cct-pulse 2s ease-in-out infinite}
@keyframes cct-pulse{0%,100%{box-shadow:0 0 0 3px rgba(45,184,122,0.2)}50%{box-shadow:0 0 0 7px rgba(45,184,122,0.06)}}
.cct-hours-row{display:flex;justify-content:space-between;font-size:13.5px;padding:7px 0;border-bottom:1px solid #f0f1f5;color:#666}
.cct-hours-row:last-child{border-bottom:none}
.cct-hours-row span:first-child{font-weight:600;color:#0A0F1E}
.cct-hours-row span:last-child{color:#C9A84C;font-weight:700;font-family:'Montserrat',sans-serif;font-size:12.5px}
.cct-social-title{font-family:'Montserrat',sans-serif;font-size:10px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(10,15,30,0.35);margin-bottom:12px}
.cct-socials{display:flex;gap:10px}
.cct-social-btn{width:42px;height:42px;border-radius:10px;background:#fff;border:1.5px solid #e8ecf2;display:flex;align-items:center;justify-content:center;transition:background .2s,border-color .2s,transform .2s;cursor:pointer;text-decoration:none}
.cct-social-btn:hover{background:#0A0F1E;border-color:#0A0F1E;transform:translateY(-2px)}
.cct-social-btn svg{width:16px;height:16px;stroke:#666;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s}
.cct-social-btn:hover svg{stroke:#C9A84C}
.cct-form-wrap{background:#fff;border-radius:20px;padding:44px 40px;box-shadow:0 4px 6px rgba(10,15,30,0.04),0 16px 48px rgba(10,15,30,0.09);border:1px solid rgba(201,168,76,0.1)}
.cct-form-title{font-family:'Montserrat',sans-serif;font-size:20px;font-weight:800;color:#0A0F1E;margin-bottom:6px}
.cct-form-sub{font-size:13.5px;color:#999;margin-bottom:28px;line-height:1.6}
.cct-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.cct-form-group{display:flex;flex-direction:column;gap:7px;margin-bottom:16px}
.cct-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;color:#555;letter-spacing:1px;text-transform:uppercase}
.cct-input,.cct-select,.cct-textarea{width:100%;padding:13px 16px;border:1.5px solid #e2e6ed;border-radius:8px;font-family:'Open Sans',sans-serif;font-size:14px;color:#0A0F1E;background:#fafbfd;outline:none;transition:border-color .2s,box-shadow .2s,background .2s;-webkit-appearance:none}
.cct-input:focus,.cct-select:focus,.cct-textarea:focus{border-color:#C9A84C;box-shadow:0 0 0 3px rgba(201,168,76,0.12);background:#fff}
.cct-input::placeholder,.cct-textarea::placeholder{color:#bbb}
.cct-select{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:40px}
.cct-textarea{resize:vertical;min-height:110px;line-height:1.6}
.cct-submit{width:100%;padding:16px;background:linear-gradient(135deg,#A07830,#C9A84C);color:#0A0F1E;font-family:'Montserrat',sans-serif;font-size:13px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;border:none;border-radius:8px;cursor:pointer;transition:opacity .2s,transform .2s,box-shadow .2s;box-shadow:0 4px 18px rgba(201,168,76,0.3);display:flex;align-items:center;justify-content:center;gap:10px}
.cct-submit:hover{opacity:.9;transform:translateY(-2px);box-shadow:0 8px 28px rgba(201,168,76,0.35)}
.cct-submit svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.cct-form-note{font-size:11.5px;color:#bbb;text-align:center;margin-top:14px;line-height:1.6}
.cct-strip{margin-top:64px;background:linear-gradient(135deg,#0A0F1E,#1e2a45);border-radius:20px;padding:50px 56px;display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;overflow:hidden}
.cct-strip-label{font-family:'Montserrat',sans-serif;font-size:10px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:rgba(201,168,76,0.55);margin-bottom:10px}
.cct-strip-heading{font-family:'Montserrat',sans-serif;font-size:clamp(20px,2.5vw,30px);font-weight:800;color:#fff;line-height:1.25;margin-bottom:6px}
.cct-strip-heading span{color:#C9A84C}
.cct-strip-sub{font-size:14px;color:rgba(255,255,255,0.45);line-height:1.6}
.cct-strip-btns{display:flex;gap:12px;flex-shrink:0;position:relative;z-index:1}
.cct-strip-btn-primary{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#A07830,#C9A84C);color:#0A0F1E;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:15px 28px;border-radius:8px;text-decoration:none;border:none;cursor:pointer;transition:opacity .2s,transform .2s;white-space:nowrap;box-shadow:0 4px 16px rgba(201,168,76,0.3)}
.cct-strip-btn-primary:hover{opacity:.9;transform:translateY(-2px)}
.cct-strip-btn-secondary{display:inline-flex;align-items:center;gap:8px;background:transparent;color:#fff;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:15px 28px;border-radius:8px;text-decoration:none;border:1.5px solid rgba(255,255,255,0.2);cursor:pointer;transition:border-color .2s,color .2s;white-space:nowrap}
.cct-strip-btn-secondary:hover{border-color:#C9A84C;color:#C9A84C}
.cct-strip-btn-primary svg,.cct-strip-btn-secondary svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cct-strip-text{position:relative;z-index:1}
@media(max-width:960px){.cct-section{padding:70px 28px 80px}.cct-layout{gap:36px}.cct-strip{padding:36px 36px;flex-direction:column;align-items:flex-start;gap:28px}.cct-strip-btns{width:100%}}
@media(max-width:700px){.cct-section{padding:56px 20px 64px}.cct-layout{grid-template-columns:1fr}.cct-form-wrap{padding:28px 20px}.cct-form-row{grid-template-columns:1fr}.cct-strip{padding:28px 20px;border-radius:14px;margin-top:44px}.cct-strip-btns{flex-direction:column}.cct-strip-btn-primary,.cct-strip-btn-secondary{width:100%;justify-content:center}}

 /* ── FAQ Section Styles ── */
  .psf-section {
    background: #fff;
    padding: 70px 20px 80px;
    font-family: 'Open Sans', sans-serif;
  }
  .psf-container {
    max-width: 860px;
    margin: 0 auto;
  }
  .psf-eyebrow {
    text-align: center;
    color: #C9A84C;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .psf-eyebrow::before, .psf-eyebrow::after { content: '— '; }
  .psf-heading {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #1a1f2e;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .psf-heading span { color: #C9A84C; }
  .psf-subtext {
    text-align: center;
    color: #888;
    font-size: 14.5px;
    margin-bottom: 44px;
  }

  /* Tabs */
  .psf-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 46px;
  }
  .psf-tab {
    padding: 9px 22px;
    border-radius: 30px;
    border: 2px solid #e2e6ed;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all .22s;
  }
  .psf-tab:hover { border-color: #C9A84C; color: #C9A84C; }
  .psf-tab.psf-active { background: #C9A84C; border-color: #C9A84C; color: #fff; }

  /* Group */
  .psf-group { margin-bottom: 38px; }
  .psf-group-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .psf-group-label::after { content: ''; flex: 1; height: 1px; background: #e2e6ed; }

  /* Accordion Item */
  .psf-item {
    border: 1px solid #e2e6ed;
    border-radius: 10px;
    margin-bottom: 11px;
    overflow: hidden;
    transition: box-shadow .25s;
  }
  .psf-item:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
  .psf-item.psf-open { border-color: #C9A84C; box-shadow: 0 4px 22px rgba(201,168,76,0.13); }

  .psf-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1f2e;
    transition: background .2s;
  }
  .psf-item.psf-open .psf-q { background: #fffbf0; }

  .psf-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #e2e6ed;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s;
  }
  .psf-item.psf-open .psf-icon { background: #C9A84C; border-color: #C9A84C; }
  .psf-icon svg { width: 14px; height: 14px; stroke: #aaa; transition: transform .3s, stroke .25s; }
  .psf-item.psf-open .psf-icon svg { stroke: #fff; transform: rotate(45deg); }

  .psf-ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .psf-item.psf-open .psf-ans { max-height: 400px; }

  .psf-ans-inner {
    padding: 16px 22px 20px;
    font-size: 14.5px;
    line-height: 1.78;
    color: #666;
    border-top: 1px solid #f0e8d0;
  }
  .psf-ans-inner strong { color: #1a1f2e; }
  .psf-ans-inner ul { margin: 10px 0 0 18px; }
  .psf-ans-inner ul li { margin-bottom: 6px; }

  @media (max-width: 580px) {
    .psf-q { font-size: 14px; padding: 16px 16px; }
    .psf-ans-inner { padding: 14px 16px 18px; }
  }

  .wcb-section {
  background: #f4f6f9;
  padding: 90px 40px 100px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.wcb-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.wcb-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.wcb-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.wcb-header {
  text-align: center;
  margin-bottom: 64px;
}
.wcb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.wcb-eyebrow-line { width: 36px; height: 2px; background: linear-gradient(90deg, transparent, #C9A84C); border-radius: 2px; }
.wcb-eyebrow-line.r { background: linear-gradient(90deg, #C9A84C, transparent); }
.wcb-eyebrow span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #A07830;
}
.wcb-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: #0A0F1E;
  line-height: 1.1; margin-bottom: 14px;
}
.wcb-heading span { color: #C9A84C; }
.wcb-sub {
  font-size: 15px; color: #888;
  max-width: 520px; margin: 0 auto; line-height: 1.8;
}

/* ── Main two-column layout ── */
.wcb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* Left: Image stack */
.wcb-img-stack {
  position: relative;
}
.wcb-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(10,15,30,0.12);
}
/* Decorative offset card */
.wcb-img-stack::before {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  width: 60%; height: 60%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  z-index: 0;
}
.wcb-img-main { position: relative; z-index: 1; }

/* Floating badge */
.wcb-float-badge {
  position: absolute;
  bottom: 30px; left: -30px;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.12);
  border: 1.5px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.wcb-float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wcb-float-icon svg { width: 20px; height: 20px; stroke: #0A0F1E; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.wcb-float-num { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: #0A0F1E; line-height: 1; }
.wcb-float-label { font-size: 11.5px; color: #999; margin-top: 3px; }

/* Live pill top-right */
.wcb-live-pill {
  position: absolute;
  top: 20px; right: -16px;
  z-index: 2;
  background: #0A0F1E;
  border-radius: 30px;
  padding: 9px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(10,15,30,0.2);
}
.wcb-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2db87a;
  box-shadow: 0 0 0 3px rgba(45,184,122,0.2);
  animation: wcb-pulse 2s ease-in-out infinite;
}
@keyframes wcb-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(45,184,122,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(45,184,122,0.07); }
}
.wcb-live-text { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; }

/* Right: Features */
.wcb-features { display: flex; flex-direction: column; gap: 0; }

.wcb-feat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8ecf2;
  transition: padding-left .25s;
}
.wcb-feat:first-child { padding-top: 0; }
.wcb-feat:last-child { border-bottom: none; }
.wcb-feat:hover { padding-left: 8px; }

.wcb-feat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e8ecf2;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(10,15,30,0.06);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.wcb-feat:hover .wcb-feat-icon {
  background: #0A0F1E;
  border-color: #0A0F1E;
  box-shadow: 0 6px 20px rgba(10,15,30,0.18);
}
.wcb-feat-icon svg {
  width: 22px; height: 22px;
  stroke: #C9A84C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}
.wcb-feat:hover .wcb-feat-icon svg { stroke: #C9A84C; }

.wcb-feat-body { flex: 1; }
.wcb-feat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #0A0F1E; margin-bottom: 6px;
}
.wcb-feat-desc { font-size: 13.5px; color: #888; line-height: 1.7; }

.wcb-feat-tag {
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  color: #A07830;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
}

/* ── Bottom Stats Strip ── */
.wcb-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8ecf2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
}
.wcb-stat {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  transition: background .25s;
}
.wcb-stat:hover { background: #fffbf0; }
.wcb-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px; font-weight: 700;
  color: #C9A84C; line-height: 1;
  margin-bottom: 8px;
}
.wcb-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #0A0F1E; margin-bottom: 4px;
}
.wcb-stat-sub { font-size: 11px; color: #aaa; line-height: 1.4; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .wcb-section { padding: 70px 28px 80px; }
  .wcb-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .wcb-feat-tag { display: none; }
}
@media (max-width: 700px) {
  .wcb-section { padding: 56px 16px 64px; }
  .wcb-layout { grid-template-columns: 1fr; gap: 40px; }
  .wcb-img-stack { order: 2; }
  .wcb-features { order: 1; }
  .wcb-img-main { height: 300px; }
  .wcb-img-stack::before { display: none; }
  .wcb-float-badge { left: 12px; bottom: 16px; min-width: unset; }
  .wcb-live-pill { right: 12px; top: 16px; }
  .wcb-stats-strip { grid-template-columns: repeat(2, 1fr); border-radius: 12px; }
  .wcb-stat { padding: 24px 16px; }
  .wcb-stat-num { font-size: 28px; }
}
@media (max-width: 420px) {
  .wcb-stats-strip { grid-template-columns: 1fr 1fr; }
  .wcb-feat { gap: 14px; }
  .wcb-feat-icon { width: 42px; height: 42px; border-radius: 11px; }
  .wcb-feat-icon svg { width: 18px; height: 18px; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #A07830;
  --dark:       #0A0F1E;
  --red:        #e05555;
  --green:      #2db87a;
  --bg:         #f4f6f9;
  --white:      #ffffff;
  --border:     #e8eaef;
  --feat-pl:    40px;
}

body { font-family: 'DM Sans', sans-serif; background: var(--bg); }

.bcmp-section {
  padding: 90px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: visible;
}
.bcmp-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.bcmp-section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 68%);
  pointer-events: none;
}

/* HEADER */
.bcmp-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.bcmp-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bcmp-eyebrow-line { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); border-radius: 2px; }
.bcmp-eyebrow-line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.bcmp-eyebrow span { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-dark); }
.bcmp-header h2 { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.8vw, 46px); font-weight: 700; color: var(--dark); line-height: 1.08; margin-bottom: 14px; }
.bcmp-header h2 em { font-style: normal; color: var(--gold-dark); position: relative; }
.bcmp-header h2 em::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-dark), transparent); border-radius: 2px; }
.bcmp-header p { font-size: 15px; font-weight: 500; color: rgba(10,15,30,0.45); max-width: 460px; margin: 0 auto; line-height: 1.75; }

/* ═══════════════════════════════
   DESKTOP TABLE
═══════════════════════════════ */
.bcmp-wrap {
  max-width: 980px; margin: 0 auto;
  position: relative; z-index: 2;
  padding-top: 20px;
  overflow-x: auto; overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px; background: var(--white);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 4px 8px rgba(10,15,30,0.04), 0 16px 48px rgba(10,15,30,0.10);
}

.bcmp-table { width: 100%; min-width: 620px; border-collapse: separate; border-spacing: 0; }

.bcmp-table thead th { padding: 0; border-bottom: 1.5px solid var(--border); }
.bcmp-th-feat { width: 36%; text-align: left; vertical-align: bottom; }
.bcmp-th-feat-inner { padding: 36px 24px 24px var(--feat-pl); }
.bcmp-th-feat-label { font-family: 'Oswald', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(10,15,30,0.22); display: block; margin-bottom: 6px; }
.bcmp-th-feat-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark); }

.bcmp-th-col { width: 21.33%; padding: 0; text-align: center; vertical-align: bottom; }
.bcmp-th-inner { padding: 28px 18px 22px; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.bcmp-th-plain .bcmp-th-inner { background: #fafafa; border-left: 1px solid var(--border); }

.bcmp-th-patriot { position: relative; }
.bcmp-th-patriot .bcmp-th-inner {
  background: linear-gradient(180deg, rgba(201,168,76,0.11) 0%, rgba(201,168,76,0.03) 100%);
  border-left: 2px solid var(--gold); border-right: 2px solid var(--gold); border-top: 2px solid var(--gold);
  border-radius: 12px 12px 0 0; margin: -2px -2px 0; padding-top: 38px;
}
.bcmp-best-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 8.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 3px 12px rgba(201,168,76,0.32);
}
.bcmp-th-icon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.bcmp-th-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcmp-icon-muted { background: rgba(10,15,30,0.06); }
.bcmp-icon-muted svg { stroke: rgba(10,15,30,0.35); }
.bcmp-icon-gold  { background: rgba(201,168,76,0.15); }
.bcmp-icon-gold svg { stroke: var(--gold-dark); }
.bcmp-th-name { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; }
.bcmp-th-name-muted { color: rgba(10,15,30,0.42); }
.bcmp-th-name-gold  { color: var(--gold-dark); }
.bcmp-th-sub { font-size: 10.5px; font-weight: 600; }
.bcmp-th-sub-muted { color: rgba(10,15,30,0.24); }
.bcmp-th-sub-gold  { color: rgba(201,168,76,0.6); }

/* TBODY */
.bcmp-table tbody tr { transition: background 0.18s; }
.bcmp-table tbody tr:nth-child(even) td { background: #fafbfd; }
.bcmp-table tbody tr:nth-child(even) .bcmp-td-patriot { background: rgba(201,168,76,0.07) !important; }
.bcmp-table tbody tr:hover td { background: #f4f6ff !important; }
.bcmp-table tbody tr:hover .bcmp-td-patriot { background: rgba(201,168,76,0.11) !important; }
.bcmp-table tbody td { padding: 0; border-bottom: 1px solid #eff0f4; vertical-align: middle; }
.bcmp-table tbody tr:last-child td { border-bottom: none; }

.bcmp-td-feat { text-align: left; vertical-align: middle; }
.bcmp-feat-inner { padding: 18px 24px 18px var(--feat-pl); display: flex; flex-direction: column; gap: 4px; }
.bcmp-feat-name { font-family: 'Oswald', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--dark); line-height: 1.25; }
.bcmp-feat-hint { font-size: 11px; font-weight: 500; color: rgba(10,15,30,0.36); line-height: 1.4; }

.bcmp-td-plain   { text-align: center; padding: 18px 16px; border-left: 1px solid #eff0f4; vertical-align: middle; }
.bcmp-td-patriot { text-align: center; padding: 18px 16px; background: rgba(201,168,76,0.045); border-left: 2px solid rgba(201,168,76,0.28); border-right: 2px solid rgba(201,168,76,0.28); vertical-align: middle; }

.ci-yes, .ci-no, .ci-partial { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.ci-yes { background: rgba(45,184,122,0.11); box-shadow: 0 2px 7px rgba(45,184,122,0.13); }
.ci-yes svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ci-no  { background: rgba(224,85,85,0.09); }
.ci-no svg { width: 11px; height: 11px; stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.ci-partial { background: rgba(201,168,76,0.11); }
.ci-partial svg { width: 11px; height: 11px; stroke: var(--gold-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; }

.cv { font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 700; display: inline-block; padding: 5px 12px; border-radius: 20px; }
.cv-gold  { color: var(--gold-dark); background: rgba(201,168,76,0.1); }
.cv-muted { color: rgba(10,15,30,0.35); background: rgba(10,15,30,0.045); }
.cv-red   { color: var(--red); background: rgba(224,85,85,0.08); }

/* TFOOT */
.bcmp-table tfoot td { padding: 0; border-top: 1.5px solid var(--border); }
.bcmp-tf-feat { vertical-align: middle; }
.bcmp-tf-feat-inner { padding: 24px 24px 28px var(--feat-pl); }
.bcmp-tf-feat-txt { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: rgba(10,15,30,0.38); }
.bcmp-tf-plain { padding: 24px 16px 28px; text-align: center; border-left: 1px solid var(--border); background: #fafafa; vertical-align: middle; }
.bcmp-tf-note { font-size: 11.5px; font-weight: 600; color: rgba(10,15,30,0.28); line-height: 1.6; }
.bcmp-tf-patriot { padding: 22px 16px 0; text-align: center; border-left: 2px solid rgba(201,168,76,0.45); border-right: 2px solid rgba(201,168,76,0.45); vertical-align: middle; }
.bcmp-tf-patriot-inner {
  background: linear-gradient(160deg, #a07830 0%, #c9a84c 50%, #e8c96a 100%);
  border-radius: 0 0 18px 18px; padding: 20px 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 28px rgba(160,120,48,0.32);
}
.bcmp-tf-patriot-label { font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(10,15,30,0.48); margin-bottom: 2px; }
.bcmp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; background: var(--dark); color: var(--gold-light);
  font-family: 'Oswald', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  border: none; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 6px 20px rgba(10,15,30,0.28);
  white-space: nowrap; width: 100%; justify-content: center;
}
.bcmp-cta-btn:hover { transform: translateY(-2px); background: #141b35; }
.bcmp-cta-btn svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcmp-tf-price-note { font-size: 10px; font-weight: 600; color: rgba(10,15,30,0.42); }

/* LEGEND */
.bcmp-legend { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 30px; position: relative; z-index: 2; flex-wrap: wrap; }
.bcmp-leg-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(10,15,30,0.38); }
.bcmp-leg-dot { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bcmp-leg-dot svg { width: 10px; height: 10px; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ld-green { background: rgba(45,184,122,0.12); stroke: var(--green); }
.ld-red   { background: rgba(224,85,85,0.1);   stroke: var(--red); }
.ld-gold  { background: rgba(201,168,76,0.12);  stroke: var(--gold-dark); }
.ld-green svg { stroke: var(--green); }
.ld-red   svg { stroke: var(--red); }
.ld-gold  svg { stroke: var(--gold-dark); }

/* ═══════════════════════════════
   MOBILE CARDS (below 700px)
═══════════════════════════════ */
.bcmp-mobile { display: none; max-width: 480px; margin: 0 auto; position: relative; z-index: 2; }

.bcmp-mob-tabs { display: flex; gap: 8px; margin-bottom: 20px; justify-content: center; }
.bcmp-mob-tab {
  flex: 1; padding: 10px 8px; border-radius: 10px;
  border: 2px solid var(--border); background: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  color: rgba(10,15,30,0.4); cursor: pointer; transition: all .2s; text-align: center;
}
.bcmp-mob-tab.active-tab { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,0.07); }
.bcmp-mob-tab.patriot-tab { border-color: var(--gold); color: var(--gold-dark); background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05)); }

.bcmp-mob-card { background: var(--white); border-radius: 20px; box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 8px 40px rgba(10,15,30,0.1); overflow: hidden; }
.bcmp-mob-card.patriot-card { box-shadow: 0 0 0 2px var(--gold), 0 8px 40px rgba(201,168,76,0.2); }

.bcmp-mob-head { padding: 24px 20px 20px; background: #fafafa; border-bottom: 1.5px solid var(--border); display: flex; align-items: center; gap: 14px; position: relative; }
.bcmp-mob-head.patriot-head { background: linear-gradient(160deg, rgba(201,168,76,0.13), rgba(201,168,76,0.04)); }
.bcmp-mob-best {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.bcmp-mob-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bcmp-mob-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcmp-mob-head-name { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; }
.bcmp-mob-head-sub { font-size: 11.5px; font-weight: 600; margin-top: 2px; }

.bcmp-mob-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid #f0f1f5; gap: 16px; }
.bcmp-mob-row:last-child { border-bottom: none; }
.bcmp-mob-row:nth-child(even) { background: #fafbfd; }
.bcmp-mob-feat { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.bcmp-mob-feat-name { font-family: 'Oswald', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.bcmp-mob-feat-hint { font-size: 11px; color: rgba(10,15,30,0.36); }
.bcmp-mob-val { flex-shrink: 0; }

.bcmp-mob-footer {
  background: linear-gradient(160deg, #a07830 0%, #c9a84c 50%, #e8c96a 100%);
  padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.bcmp-mob-footer-label { font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,15,30,0.45); }
.bcmp-mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px 20px; background: var(--dark); color: var(--gold-light);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 12px; text-decoration: none; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 16px rgba(10,15,30,0.3);
}
.bcmp-mob-cta:hover { background: #141b35; transform: translateY(-1px); }
.bcmp-mob-cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcmp-mob-price-note { font-size: 11px; font-weight: 600; color: rgba(10,15,30,0.4); }

/* BREAKPOINTS */
@media (max-width: 860px) {
  .bcmp-section { padding: 64px 24px; }
  :root { --feat-pl: 32px; }
}
@media (max-width: 700px) {
  .bcmp-section { padding: 48px 16px 60px; }
  .bcmp-header { margin-bottom: 32px; }
  .bcmp-wrap { display: none; }
  .bcmp-mobile { display: block; }
  .bcmp-legend { margin-top: 24px; gap: 14px; }
}
@media (max-width: 400px) {
  .bcmp-mob-tabs { gap: 6px; }
  .bcmp-mob-tab { font-size: 12px; padding: 9px 6px; }
}
.iws-section {
  background: #fff;
  padding: 90px 40px 100px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.iws-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.iws-section::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.iws-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.iws-header {
  text-align: center;
  margin-bottom: 60px;
}
.iws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.iws-eyebrow-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C);
  border-radius: 2px;
}
.iws-eyebrow-line.r { background: linear-gradient(90deg, #C9A84C, transparent); }
.iws-eyebrow span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #A07830;
}
.iws-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.1;
  margin-bottom: 14px;
}
.iws-heading span { color: #C9A84C; }
.iws-sub {
  font-size: 15px;
  color: #888;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Industry Cards Grid ── */
.iws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.iws-card {
  background: #fff;
  border: 1.5px solid #e8ecf2;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  cursor: pointer;
}
.iws-card:hover {
  box-shadow: 0 12px 48px rgba(201,168,76,0.14);
  border-color: #C9A84C;
  transform: translateY(-4px);
}

/* Card image */
.iws-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.iws-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.iws-card:hover .iws-card-img { transform: scale(1.05); }

/* Image overlay */
.iws-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,30,0.1) 0%, rgba(10,15,30,0.65) 100%);
}

/* Industry tag on image */
.iws-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(201,168,76,0.9);
  backdrop-filter: blur(8px);
  color: #0A0F1E;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Industry icon bottom of image */
.iws-card-icon {
  position: absolute;
  bottom: -20px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #0A0F1E;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10,15,30,0.2);
  z-index: 2;
}
.iws-card-icon svg {
  width: 22px; height: 22px;
  stroke: #C9A84C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card body */
.iws-card-body {
  padding: 32px 28px 28px;
}
.iws-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 8px;
}
.iws-card-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Feature chips */
.iws-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.iws-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f4f6f9;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  transition: background .2s, border-color .2s, color .2s;
}
.iws-card:hover .iws-chip {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.25);
  color: #A07830;
}
.iws-chip svg {
  width: 11px; height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card link */
.iws-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #A07830;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap .2s, color .2s;
}
.iws-card-link:hover { gap: 10px; color: #C9A84C; }
.iws-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Bottom CTA strip ── */
.iws-cta {
  background: linear-gradient(135deg, #0A0F1E 0%, #1e2a45 100%);
  border-radius: 20px;
  padding: 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.iws-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.iws-cta-left { position: relative; z-index: 1; }
.iws-cta-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 10px;
}
.iws-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.iws-cta-title span { color: #C9A84C; }
.iws-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 420px;
}
.iws-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.iws-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #C9A84C;
  color: #0A0F1E;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.iws-cta-btn-primary:hover { background: #e8c96a; transform: translateY(-2px); }
.iws-cta-btn-primary svg { width: 15px; height: 15px; }
.iws-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.iws-cta-btn-secondary:hover { border-color: #C9A84C; color: #C9A84C; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .iws-section { padding: 70px 24px 80px; }
  .iws-cta { padding: 36px 30px; }
}
@media (max-width: 700px) {
  .iws-section { padding: 56px 16px 64px; }
  .iws-grid { grid-template-columns: 1fr; }
  .iws-card-img-wrap { height: 200px; }
  .iws-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .iws-cta-desc { margin: 0 auto; }
  .iws-cta-right { width: 100%; }
  .iws-cta-btn-primary, .iws-cta-btn-secondary { width: 100%; }
}
@media (max-width: 400px) {
  .iws-card-body { padding: 28px 20px 22px; }
  .iws-card-img-wrap { height: 170px; }
}
.cns-section {
  background: #f4f6f9;
  padding: 90px 40px 100px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle dot texture */
.cns-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Red glow top right */
.cns-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(224,85,85,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold glow bottom left */
.cns-glow {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cns-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.cns-header {
  text-align: center;
  margin-bottom: 64px;
}
.cns-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cns-eyebrow-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, #A07830);
  border-radius: 2px;
}
.cns-eyebrow-line.r {
  background: linear-gradient(90deg, #A07830, transparent);
}
.cns-eyebrow span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0392b;
}
.cns-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cns-heading span { color: #A07830; }
.cns-heading em {
  font-style: normal;
  color: #A07830;
}
.cns-sub {
  font-size: 15px;
  color: #777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Big stat numbers row ── */
.cns-big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
  border: 1px solid #e2e6ed;
  border-radius: 20px;
  overflow: hidden;
  background: #e2e6ed;
}
.cns-big-stat {
  padding: 20px 32px;
  background: #fff;
  text-align: center;
  position: relative;
  transition: background .3s;
  border-right: none;
}
.cns-big-stat:hover { background: #fff8f8; }

.cns-big-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #A07830, transparent);
  opacity: 0;
  transition: opacity .3s;
}
.cns-big-stat:hover::before { opacity: 1; }

.cns-big-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 700;
  color: #A07830;
  line-height: 1;
  margin-bottom: 10px;
}
.cns-big-num sup {
  font-size: 0.45em;
  vertical-align: super;
}
.cns-big-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cns-big-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ── Two column content ── */
.cns-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* Risk list card */
.cns-risk-card {
  background: #fff5f5;
  border: 1.5px solid rgba(224,85,85,0.2);
  border-radius: 18px;
  padding: 36px;
}
.cns-risk-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cns-risk-card-title span { font-size: 20px; }
.cns-risk-card-sub {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
  line-height: 1.5;
}
.cns-risk-list { display: flex; flex-direction: column; gap: 14px; }
.cns-risk-item { display: flex; align-items: flex-start; gap: 12px; }
.cns-risk-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(224,85,85,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.cns-risk-icon svg { width: 13px; height: 13px; stroke: #A07830; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.cns-risk-text { font-size: 13.5px; color: #666; line-height: 1.6; }
.cns-risk-text strong { color: #0A0F1E; }

/* Patriot solution card */
.cns-solution-card {
  background: #fffbf0;
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 18px;
  padding: 36px;
}
.cns-solution-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.cns-solution-card-sub {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
  line-height: 1.5;
}
.cns-solution-list { display: flex; flex-direction: column; gap: 14px; }
.cns-sol-item { display: flex; align-items: flex-start; gap: 12px; }
.cns-sol-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.cns-sol-icon svg { width: 13px; height: 13px; stroke: #A07830; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cns-sol-text { font-size: 13.5px; color: #666; line-height: 1.6; }
.cns-sol-text strong { color: #A07830; }

/* ── Bottom CTA bar ── */
.cns-cta-bar {
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3347 100%);
  border: none;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cns-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cns-cta-title span { color: #C9A84C; }
.cns-cta-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.cns-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C9A84C;
  color: #0A0F1E;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.cns-cta-btn:hover { background: #e8c96a; transform: translateY(-2px); }
.cns-cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .cns-section { padding: 70px 28px 80px; }
  .cns-big-stats { grid-template-columns: repeat(3, 1fr); }
  .cns-two-col { grid-template-columns: 1fr; }
  .cns-cta-bar { flex-direction: column; text-align: center; }
  .cns-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .cns-section { padding: 56px 16px 64px; }
  .cns-big-stats {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .cns-big-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 30px 24px;
  }
  .cns-big-stat:last-child { border-bottom: none; }
  .cns-risk-card, .cns-solution-card { padding: 24px 20px; }
  .cns-cta-bar { padding: 24px 20px; }
}
.bsi-section {
  background: #fff;
  padding: 90px 40px 100px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.bsi-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.bsi-section::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.bsi-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT: Text ── */
.bsi-text {}

.bsi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bsi-eyebrow-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C);
  border-radius: 2px;
}
.bsi-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #A07830;
}

.bsi-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #0A0F1E;
  line-height: 1.18;
  margin-bottom: 22px;
}
.bsi-heading span { color: #C9A84C; }

/* Paragraphs */
.bsi-para {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
}
.bsi-para:last-of-type { margin-bottom: 32px; }
.bsi-para strong { color: #0A0F1E; font-weight: 600; }

/* Divider */
.bsi-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #C9A84C, #e8c96a);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Highlight points */
.bsi-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.bsi-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.bsi-point-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C9A84C;
  flex-shrink: 0;
}

/* CTA */
.bsi-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A0F1E;
  color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.bsi-cta:hover { background: #1e2a45; transform: translateY(-2px); }
.bsi-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── RIGHT: Image ── */
.bsi-image-wrap {
  position: relative;
}

/* Offset gold card behind */
.bsi-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -22px; right: -22px;
  width: 80%; height: 80%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  z-index: 0;
}

.bsi-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 60px rgba(10,15,30,0.13);
}

/* Floating stat card */
.bsi-stat-card {
  position: absolute;
  bottom: 32px; left: -32px;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.12);
  border: 1.5px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.bsi-stat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bsi-stat-icon svg { width: 20px; height: 20px; stroke: #0A0F1E; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.bsi-stat-num { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #0A0F1E; line-height: 1; }
.bsi-stat-label { font-size: 11.5px; color: #999; margin-top: 3px; font-weight: 500; }

/* Floating top-right tag */
.bsi-top-tag {
  position: absolute;
  top: 22px; right: -18px;
  z-index: 2;
  background: #0A0F1E;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 6px 22px rgba(10,15,30,0.2);
  display: flex; align-items: center; gap: 9px;
}
.bsi-top-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2db87a;
  box-shadow: 0 0 0 3px rgba(45,184,122,0.2);
  animation: bsi-pulse 2s ease-in-out infinite;
}
@keyframes bsi-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(45,184,122,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(45,184,122,0.07); }
}
.bsi-top-tag-text { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; }
.bsi-top-tag-sub { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 2px; white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bsi-section { padding: 70px 28px 80px; }
  .bsi-container { gap: 50px; }
  .bsi-img { height: 420px; }
}
@media (max-width: 700px) {
  .bsi-section { padding: 56px 20px 64px; }
  .bsi-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .bsi-text { order: 1; }
  .bsi-image-wrap { order: 2; }
  .bsi-img { height: 300px; }
  .bsi-image-wrap::after { display: none; }
  .bsi-stat-card { left: 12px; bottom: 16px; min-width: unset; padding: 14px 16px; gap: 10px; }
  .bsi-stat-num { font-size: 18px; }
  .bsi-top-tag { right: 12px; top: 16px; }
  .bsi-cta { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .bsi-section { padding: 44px 14px 52px; }
  .bsi-img { height: 250px; }
}
  :root {
    --acc: #e5ab54;
    --acc-dark: #b8832e;
    --acc-light: #f2c47a;
    --dark: #0A0F1E;
    --dark2: #111827;
  }
 /* ══════════════════════════
     SECTION
  ══════════════════════════ */
  .phs-section {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
  }

  /* Diagonal split background */
  .phs-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(160deg, #f7f3ec 0%, #fdf8f0 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
  }

  /* Gold orb */
  .phs-section::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(229,171,84,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  /* ══════════════════════════
     CONTAINER
  ══════════════════════════ */
  .phs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
  }

  .phs-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }

  /* ══════════════════════════
     LEFT TEXT
  ══════════════════════════ */
  .phs-text {}

  /* Tag */
  .phs-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }
  .phs-tag-bar {
    width: 36px; height: 3px;
    background: linear-gradient(90deg, var(--acc), var(--acc-light));
    border-radius: 2px;
  }
  .phs-tag span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--acc-dark);
  }

  /* Heading */
  .phs-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .phs-title .phs-hl {
    color: var(--acc);
    position: relative;
    display: inline-block;
  }
  .phs-title .phs-hl::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--acc), transparent);
    border-radius: 2px;
  }

  /* Description */
  .phs-desc {
    font-size: 15px;
    font-weight: 500;
    color: rgba(10,15,30,0.52);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
  }
  .phs-desc a {
    color: var(--acc-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(229,171,84,0.3);
    transition: border-color 0.2s;
  }
  .phs-desc a:hover { border-color: var(--acc); }

  /* Feature checklist */
  .phs-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 36px;
  }
  .phs-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
  }
  .phs-feat-icon {
    width: 22px; height: 22px;
    background: var(--acc);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .phs-feat:hover .phs-feat-icon { transform: scale(1.15); }
  .phs-feat-icon svg { width: 11px; height: 11px; color: #fff; }

  /* CTA */
  .phs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--dark);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.28s;
    box-shadow: 0 6px 20px rgba(10,15,30,0.15);
    position: relative;
    overflow: hidden;
  }
  .phs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--acc-dark), var(--acc));
    opacity: 0;
    transition: opacity 0.28s;
  }
  .phs-cta:hover::before { opacity: 1; }
  .phs-cta:hover { color: var(--dark); border-color: var(--acc); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(229,171,84,0.25); }
  .phs-cta span, .phs-cta svg { position: relative; z-index: 1; }
  .phs-cta svg { width: 16px; height: 16px; }

  /* ══════════════════════════
     RIGHT IMAGE
  ══════════════════════════ */
  .phs-img-col {
    position: relative;
  }

  /* Decorative frame */
  .phs-img-frame {
    position: relative;
    border-radius: 20px;
  }
  /* Gold corner accents */
  .phs-img-frame::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 70px; height: 70px;
    border-top: 3px solid var(--acc);
    border-left: 3px solid var(--acc);
    border-radius: 0 0 0 0;
    z-index: 3;
    opacity: 0.7;
    border-radius: 4px 0 0 0;
  }
  .phs-img-frame::after {
    content: '';
    position: absolute;
    bottom: -10px; right: -10px;
    width: 70px; height: 70px;
    border-bottom: 3px solid var(--acc);
    border-right: 3px solid var(--acc);
    border-radius: 0 0 4px 0;
    z-index: 3;
    opacity: 0.7;
  }

  .phs-img-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,15,30,0.12);
    border: 4px solid #fff;
    line-height: 0;
  }
  .phs-img-inner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .phs-img-inner:hover img { transform: scale(1.04); }

  /* Floating stat card */
  .phs-stat-card {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background: var(--dark);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    box-shadow: 0 12px 32px rgba(10,15,30,0.2);
    animation: phs-float 4s ease-in-out infinite;
  }
  @keyframes phs-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .phs-stat-icon {
    width: 38px; height: 38px;
    background: rgba(229,171,84,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .phs-stat-icon svg { width: 18px; height: 18px; color: var(--acc); }
  .phs-stat-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .phs-stat-text span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
  }

  /* Floating badge top right */
  .phs-badge {
    position: absolute;
    top: 24px;
    right: -22px;
    background: var(--acc);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(229,171,84,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: phs-float 5s ease-in-out infinite;
    animation-delay: 1s;
  }
  .phs-badge svg { width: 16px; height: 16px; color: var(--dark); }
  .phs-badge-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
  }
  .phs-badge-text span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(10,15,30,0.5);
  }

  /* ══════════════════════════
     RESPONSIVE
  ══════════════════════════ */
  @media (max-width: 968px) {
    .phs-grid { grid-template-columns: 1fr; gap: 50px; }
    .phs-section::before { display: none; }
    .phs-container { padding: 0 30px; }
    .phs-stat-card { left: 10px; bottom: 16px; }
    .phs-badge { right: 10px; }
    .phs-img-inner img { height: 380px; }
    .phs-desc { max-width: 100%; }
  }
  @media (max-width: 576px) {
    .phs-section { padding: 56px 0; }
    .phs-container { padding: 0 20px; }
    .phs-features { grid-template-columns: 1fr; }
    .phs-img-inner img { height: 300px; }
    .phs-stat-card { display: none; }
  }

    .features-section {
    padding: 36px 0 36px;
    background: #fff;
  }

  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .feat-heading {
    text-align: center;
    margin-bottom: 16px;
    min-height: 60px;
  }
  .feat-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
  }
  .feat-heading p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(10,15,30,0.52);
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto;
  }

  .feat-tabs {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .feat-tab {
    padding: 7px 18px;
    border: 2px solid #d0d5de;
    border-radius: 50px;
    background: transparent;
    color: rgba(10,15,30,0.55);
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .feat-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
  .feat-tab.active { background: var(--dark-blue); border-color: var(--dark-blue); color: #fff; }

  .feat-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #e8eaed;
    aspect-ratio: 16/5.5;
  }
  .feat-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .feat-slide.active { opacity: 1; pointer-events: auto; }
  .feat-slide svg { width: 100%; height: 100%; }

  .feat-bullets {
    width: 100%;
  }
  .bullet-panel {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
  }
  .bullet-panel.active { display: grid; }

  .bullet-card {
    background: #f5f6f8;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.2s;
  }
  .bullet-card:hover { background: #eef0f3; transform: translateY(-2px); }
  .bullet-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bullet-icon svg { width: 18px; height: 18px; }
  .bullet-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(10,15,30,0.7);
    line-height: 1.5;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .feat-heading.anim h2,
  .feat-heading.anim p { animation: fadeUp 0.3s ease both; }
  .feat-heading.anim p { animation-delay: 0.05s; }

  @media (max-width: 900px) {
    .bullet-panel { grid-template-columns: repeat(2,1fr); }
    .features-inner { padding: 0 24px; }
  }
  @media (max-width: 560px) {
    .bullet-panel { grid-template-columns: 1fr; }
    .feat-tab { padding: 7px 14px; font-size: 12px; }
    .feat-img-wrap { aspect-ratio: 4/3; }
  }

  .bnr-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* BG image */
  .bnr-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/banner-bg.webp');
    background-size: cover;
    background-position: center top;
    animation: bnr-zoom 22s ease-in-out infinite alternate;
    filter: brightness(1.05) saturate(0.9);
  }
  @keyframes bnr-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.05); }
  }

  /* Clean white-tinted overlay — light feel */
  .bnr-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        260deg,
        rgba(8,12,28,0.82) 0%,
        rgba(8,12,28,0.65) 35%,
        rgba(8,12,28,0.20) 62%,
        transparent 100%
      );
  }

  /* Frosted bottom edge */
  .bnr-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(8,12,28,0.4));
    pointer-events: none;
  }

  /* Gold accent — thin top bar */
  .bnr-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), transparent);
    z-index: 10;
  }

  /* ══════════════════════════
     CONTENT GRID
  ══════════════════════════ */
  .bnr-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 200px;
  }

  /* ══════════════════════════
     LEFT TEXT
  ══════════════════════════ */
  .bnr-text {
    animation: bnr-up 0.85s cubic-bezier(0.4,0,0.2,1) both;
  }
  @keyframes bnr-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Eyebrow */
  .bnr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: bnr-up 0.85s cubic-bezier(0.4,0,0.2,1) 0.05s both;
  }
  .bnr-eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: bnr-pulse 2s ease-in-out infinite;
  }
  @keyframes bnr-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(229,171,84,0.5); }
    50%      { box-shadow: 0 0 0 6px rgba(229,171,84,0); }
  }
  .bnr-eyebrow span {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  /* Heading */
  .bnr-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 4.5vw, 44px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    animation: bnr-up 0.85s cubic-bezier(0.4,0,0.2,1) 0.1s both;
  }
  .bnr-title em {
    font-style: italic;
    color: var(--gold-dark);
    position: relative;
    display: inline-block;
  }
  .bnr-title em::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    height: 2.5px; width: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), transparent);
    border-radius: 2px;
    animation: bnr-line 1.2s ease 0.8s both;
  }
  @keyframes bnr-line {
    from { width: 0; opacity: 0; }
    to   { width: 100%; opacity: 1; }
  }

  /* Description */
  .bnr-desc {
    font-size: 15.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 34px;
    animation: bnr-up 0.85s cubic-bezier(0.4,0,0.2,1) 0.18s both;
  }
  .bnr-desc a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(229,171,84,0.4);
    transition: border-color 0.2s, color 0.2s;
  }
  .bnr-desc a:hover { color: var(--gold); border-color: var(--gold); }

  /* CTAs */
  .bnr-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: bnr-up 0.85s cubic-bezier(0.4,0,0.2,1) 0.25s both;
  }

  .bnr-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.26s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .bnr-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }
  .bnr-btn:hover::after { left: 140%; }
  .bnr-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

  .bnr-btn-solid {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 5px 20px rgba(10,15,30,0.2);
  }
  .bnr-btn-solid:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(229,171,84,0.3);
  }

  .bnr-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
  }
  .bnr-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Stats */
  .bnr-stats {
    display: flex;
    gap: 0;
    animation: bnr-fadein 1s ease 0.5s both;
  }
  @keyframes bnr-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .bnr-stat {
    padding: 0 24px 0 0;
    margin-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .bnr-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

  .bnr-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 16px rgba(229,171,84,0.3);
  }
  .bnr-stat-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ══════════════════════════
     RIGHT — PRODUCT
  ══════════════════════════ */
  .bnr-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bnr-imgslide 1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
  }
  @keyframes bnr-imgslide {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* Soft light glow behind product */
  .bnr-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(229,171,84,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .bnr-product {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(10,15,30,0.15));
    animation: bnr-float 6.5s ease-in-out infinite;
    position: relative;
  }
  @keyframes bnr-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
  }

  /* ══════════════════════════
     SCROLL HINT
  ══════════════════════════ */
  .bnr-scroll {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: bnr-fadein 1s ease 1.2s both;
  }
  .bnr-scroll span {
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
  }
  .bnr-scroll-line {
    width: 1px; height: 34px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: bnr-drop 2s ease-in-out infinite;
  }
  @keyframes bnr-drop {
    0%   { transform: scaleY(0); transform-origin: top; }
    45%  { transform: scaleY(1); transform-origin: top; }
    55%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ══════════════════════════
     RESPONSIVE
  ══════════════════════════ */
  @media (max-width: 900px) {
    .bnr-inner {
      grid-template-columns: 1fr;
      padding: 110px 30px 80px;
      min-height: unset;
      text-align: center;
    }
    .bnr-eyebrow { margin: 0 auto 20px; }
    .bnr-desc { max-width: 100%; }
    .bnr-ctas { justify-content: center; }
    .bnr-stats { justify-content: center; }
    .bnr-visual { order: -1; }
    .bnr-product { max-width: 380px; }
    .bnr-overlay {
      background: linear-gradient(180deg,
        rgba(8,12,28,0.75) 0%,
        rgba(8,12,28,0.60) 50%,
        rgba(8,12,28,0.35) 100%
      );
    }
  }
  @media (max-width: 560px) {
    .bnr-inner { padding: 90px 20px 60px; }
    .bnr-title { font-size: 34px; }
    .bnr-desc { font-size: 14px; }
    .bnr-product { max-width: 280px; }
    .bnr-stats { flex-wrap: wrap; gap: 16px; }
    .bnr-stat { border-right: none; margin-right: 0; padding: 0; flex: 1 1 40%; }
  }

  :root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #A07830;
  --dark:       #0A0F1E;
  --red:        #e05555;
  --green:      #2db87a;
  --bg:         #f0f2f7;
  --white:      #ffffff;
  --border:     #e8eaef;
  --feat-pl:    40px;
}
.cmp-section {
  padding: 90px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: visible;
}
.cmp-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,15,30,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cmp-section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 68%);
  pointer-events: none;
}

/* HEADER */
.cmp-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.cmp-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cmp-eyebrow-line { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); border-radius: 2px; }
.cmp-eyebrow-line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.cmp-eyebrow span { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-dark); }
.cmp-header h2 { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.8vw, 46px); font-weight: 700; color: var(--dark); line-height: 1.08; margin-bottom: 14px; letter-spacing: -0.3px; }
.cmp-header h2 em { font-style: normal; color: var(--gold-dark); position: relative; }
.cmp-header h2 em::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-dark), transparent); border-radius: 2px; }
.cmp-header p { font-size: 15px; font-weight: 500; color: rgba(10,15,30,0.45); max-width: 440px; margin: 0 auto; line-height: 1.75; }

/* ═══════════════════════════════════
   DESKTOP TABLE (visible above 700px)
═══════════════════════════════════ */
.cmp-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative; z-index: 2;
  padding-top: 20px;
  overflow-x: auto; overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 4px 8px rgba(10,15,30,0.04), 0 16px 48px rgba(10,15,30,0.10);
}

.cmp-table { width: 100%; min-width: 620px; border-collapse: separate; border-spacing: 0; }

.cmp-table thead th { padding: 0; border-bottom: 1.5px solid var(--border); }
.cmp-th-feat { width: 36%; text-align: left; vertical-align: bottom; }
.cmp-th-feat-inner { padding: 36px 24px 24px var(--feat-pl); }
.cmp-th-feat-label { font-family: 'Oswald', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(10,15,30,0.22); display: block; margin-bottom: 6px; }
.cmp-th-feat-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark); }

.cmp-th-col { width: 21.33%; padding: 0; text-align: center; vertical-align: bottom; }
.cmp-th-inner { padding: 28px 18px 22px; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cmp-th-plain .cmp-th-inner { background: #fafafa; border-left: 1px solid var(--border); }

.cmp-th-patriot { position: relative; }
.cmp-th-patriot .cmp-th-inner {
  background: linear-gradient(180deg, rgba(201,168,76,0.11) 0%, rgba(201,168,76,0.03) 100%);
  border-left: 2px solid var(--gold); border-right: 2px solid var(--gold); border-top: 2px solid var(--gold);
  border-radius: 12px 12px 0 0; margin: -2px -2px 0; padding-top: 38px;
}
.cmp-best-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 8.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 3px 12px rgba(201,168,76,0.32);
}
.cmp-th-icon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; flex-shrink: 0; }
.cmp-th-icon svg { width: 20px; height: 20px; }
.cmp-icon-muted { background: rgba(10,15,30,0.06); color: rgba(10,15,30,0.35); }
.cmp-icon-gold  { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.cmp-th-name { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; }
.cmp-th-name-muted { color: rgba(10,15,30,0.42); }
.cmp-th-name-gold  { color: var(--gold-dark); }
.cmp-th-sub { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2px; }
.cmp-th-sub-muted { color: rgba(10,15,30,0.24); }
.cmp-th-sub-gold  { color: rgba(201,168,76,0.6); }

.cmp-table tbody tr { transition: background 0.18s; }
.cmp-table tbody tr:nth-child(even) td { background: #fafbfd; }
.cmp-table tbody tr:nth-child(even) .cmp-td-patriot { background: rgba(201,168,76,0.07) !important; }
.cmp-table tbody tr:hover td { background: #f4f6ff !important; }
.cmp-table tbody tr:hover .cmp-td-patriot { background: rgba(201,168,76,0.11) !important; }
.cmp-table tbody td { padding: 0; border-bottom: 1px solid #eff0f4; vertical-align: middle; }
.cmp-table tbody tr:last-child td { border-bottom: none; }

.cmp-td-feat { text-align: left; vertical-align: middle; }
.cmp-feat-inner { padding: 18px 24px 18px var(--feat-pl); display: flex; flex-direction: column; gap: 4px; }
.cmp-feat-name { font-family: 'Oswald', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--dark); letter-spacing: 0.15px; line-height: 1.25; }
.cmp-feat-hint { font-size: 11px; font-weight: 500; color: rgba(10,15,30,0.36); line-height: 1.4; }

.cmp-td-plain   { text-align: center; padding: 18px 16px; border-left: 1px solid #eff0f4; vertical-align: middle; }
.cmp-td-patriot { text-align: center; padding: 18px 16px; background: rgba(201,168,76,0.045); border-left: 2px solid rgba(201,168,76,0.28); border-right: 2px solid rgba(201,168,76,0.28); transition: background 0.18s; vertical-align: middle; }

.ci-yes, .ci-no, .ci-partial { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.ci-yes { background: rgba(45,184,122,0.11); box-shadow: 0 2px 7px rgba(45,184,122,0.13); }
.ci-yes svg { width: 13px; height: 13px; color: var(--green); }
.ci-no  { background: rgba(224,85,85,0.09); }
.ci-no svg { width: 11px; height: 11px; color: var(--red); }
.ci-partial { background: rgba(201,168,76,0.11); }
.ci-partial svg { width: 11px; height: 11px; color: var(--gold-dark); }

.cv { font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.3px; display: inline-block; padding: 5px 12px; border-radius: 20px; }
.cv-gold  { color: var(--gold-dark); background: rgba(201,168,76,0.1); }
.cv-muted { color: rgba(10,15,30,0.35); background: rgba(10,15,30,0.045); }
.cv-red   { color: var(--red); background: rgba(224,85,85,0.08); }

.cmp-table tfoot td { padding: 0; border-top: 1.5px solid var(--border); }
.cmp-tf-feat { vertical-align: middle; }
.cmp-tf-feat-inner { padding: 24px 24px 28px var(--feat-pl); }
.cmp-tf-feat-txt { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: rgba(10,15,30,0.38); letter-spacing: 0.3px; }
.cmp-tf-plain { padding: 24px 16px 28px; text-align: center; border-left: 1px solid var(--border); background: #fafafa; vertical-align: middle; }
.cmp-tf-note { font-size: 11.5px; font-weight: 600; color: rgba(10,15,30,0.28); line-height: 1.6; }
.cmp-tf-patriot { padding: 22px 16px 0; text-align: center; border-left: 2px solid rgba(201,168,76,0.45); border-right: 2px solid rgba(201,168,76,0.45); vertical-align: middle; }
.cmp-tf-patriot-inner {
  background: linear-gradient(160deg, #a07830 0%, #c9a84c 50%, #e8c96a 100%);
  border-radius: 0 0 18px 18px; padding: 20px 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 28px rgba(160,120,48,0.32);
}
.cmp-tf-patriot-label { font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(10,15,30,0.48); margin-bottom: 2px; }
.cmp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; background: var(--dark); color: var(--gold-light);
  font-family: 'Oswald', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  border: none; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 6px 20px rgba(10,15,30,0.28);
  white-space: nowrap; width: 100%; justify-content: center;
}
.cmp-cta-btn:hover { transform: translateY(-2px); background: #141b35; box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 10px 28px rgba(10,15,30,0.36); }
.cmp-cta-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.cmp-tf-price-note { font-size: 10px; font-weight: 600; color: rgba(10,15,30,0.42); }

/* LEGEND */
.cmp-legend { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 30px; position: relative; z-index: 2; flex-wrap: wrap; }
.cmp-leg-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(10,15,30,0.38); }
.cmp-leg-dot { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cmp-leg-dot svg { width: 10px; height: 10px; }
.ld-green { background: rgba(45,184,122,0.12); color: var(--green); }
.ld-red   { background: rgba(224,85,85,0.1);   color: var(--red); }
.ld-gold  { background: rgba(201,168,76,0.12);  color: var(--gold-dark); }

/* ═══════════════════════════════════
   MOBILE CARDS (hidden above 700px)
═══════════════════════════════════ */
.cmp-mobile { display: none; max-width: 480px; margin: 0 auto; position: relative; z-index: 2; }

/* Column toggle tabs */
.cmp-mob-tabs {
  display: flex; gap: 8px; margin-bottom: 20px; justify-content: center;
}
.cmp-mob-tab {
  flex: 1; padding: 10px 8px; border-radius: 10px; border: 2px solid var(--border);
  background: var(--white); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  color: rgba(10,15,30,0.4); cursor: pointer; transition: all .2s; text-align: center;
}
.cmp-mob-tab.active-tab {
  border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,0.07);
}
.cmp-mob-tab.patriot-tab {
  border-color: var(--gold); color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
}

/* Card */
.cmp-mob-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 8px 40px rgba(10,15,30,0.1);
  overflow: hidden;
}
.cmp-mob-card.patriot-card {
  box-shadow: 0 0 0 2px var(--gold), 0 8px 40px rgba(201,168,76,0.2);
}

/* Card header */
.cmp-mob-head {
  padding: 24px 20px 20px;
  background: #fafafa;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.cmp-mob-head.patriot-head {
  background: linear-gradient(160deg, rgba(201,168,76,0.13), rgba(201,168,76,0.04));
}
.cmp-mob-best {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.cmp-mob-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cmp-mob-icon svg { width: 20px; height: 20px; }
.cmp-mob-head-info { display: flex; flex-direction: column; }
.cmp-mob-head-name { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; }
.cmp-mob-head-sub { font-size: 11.5px; font-weight: 600; margin-top: 2px; }

/* Rows */
.cmp-mob-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; border-bottom: 1px solid #f0f1f5; gap: 16px;
}
.cmp-mob-row:last-child { border-bottom: none; }
.cmp-mob-row:nth-child(even) { background: #fafbfd; }
.cmp-mob-feat { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.cmp-mob-feat-name { font-family: 'Oswald', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.cmp-mob-feat-hint { font-size: 11px; color: rgba(10,15,30,0.36); }
.cmp-mob-val { flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; }

/* CTA footer */
.cmp-mob-footer {
  background: linear-gradient(160deg, #a07830 0%, #c9a84c 50%, #e8c96a 100%);
  padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cmp-mob-footer-label { font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,15,30,0.45); }
.cmp-mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px 20px; background: var(--dark); color: var(--gold-light);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 12px; text-decoration: none; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 16px rgba(10,15,30,0.3);
}
.cmp-mob-cta:hover { background: #141b35; transform: translateY(-1px); }
.cmp-mob-cta svg { width: 14px; height: 14px; }
.cmp-mob-price-note { font-size: 11px; font-weight: 600; color: rgba(10,15,30,0.4); }

/* ═══════════════════
   BREAKPOINTS
═══════════════════ */
@media (max-width: 860px) {
  .cmp-section { padding: 64px 24px; }
  :root { --feat-pl: 32px; }
}

@media (max-width: 700px) {
  .cmp-section { padding: 48px 16px 60px; }
  .cmp-header { margin-bottom: 32px; }
  /* Hide desktop table, show mobile cards */
  .cmp-wrap { display: none; }
  .cmp-mobile { display: block; }
  .cmp-legend { margin-top: 24px; gap: 14px; }
  .cmp-leg-item { font-size: 11px; }
}

@media (max-width: 400px) {
  .cmp-mob-tabs { gap: 6px; }
  .cmp-mob-tab { font-size: 12px; padding: 9px 6px; }
  .cmp-mob-row { padding: 13px 16px; }
  .cmp-mob-head { padding: 22px 16px 18px; }
}

.wcu-section {
  background: #fff;
  padding: 90px 40px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.wcu-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.wcu-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ── LEFT: Text ── */
.wcu-text {}

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.wcu-eyebrow-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C);
  border-radius: 2px;
}
.wcu-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A07830;
}

.wcu-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #0A0F1E;
  line-height: 1.15;
  margin-bottom: 18px;
}
.wcu-heading span { color: #C9A84C; }

.wcu-para {
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 36px;
  max-width: 500px;
}

/* Feature list */
.wcu-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.wcu-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wcu-feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0A0F1E, #1e2a45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,15,30,0.18);
}
.wcu-feat-icon svg {
  width: 20px; height: 20px;
  stroke: #C9A84C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wcu-feat-body {}
.wcu-feat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 4px;
}
.wcu-feat-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.6;
}

/* CTA buttons */
.wcu-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.wcu-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C9A84C;
  color: #0A0F1E;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.wcu-btn-primary:hover { background: #e8c96a; transform: translateY(-2px); }
.wcu-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0A0F1E;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #e2e6ed;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.wcu-btn-secondary:hover { border-color: #C9A84C; color: #A07830; }

/* ── RIGHT: Image ── */
.wcu-image-wrap {
  position: relative;
}

/* Decorative background card */
.wcu-image-wrap::before {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 85%; height: 85%;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-radius: 24px;
  border: 1.5px solid rgba(201,168,76,0.2);
  z-index: 0;
}

.wcu-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 480px;
  display: block;
  box-shadow: 0 20px 60px rgba(10,15,30,0.15);
}

/* Floating stat badge */
.wcu-stat-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.14);
  border: 1.5px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.wcu-stat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wcu-stat-icon svg {
  width: 20px; height: 20px;
  stroke: #0A0F1E;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wcu-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0A0F1E;
  line-height: 1;
}
.wcu-stat-label {
  font-size: 11.5px;
  color: #999;
  font-weight: 500;
  margin-top: 3px;
}

/* Second badge top-right */
.wcu-badge2 {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 2;
  background: #0A0F1E;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(10,15,30,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wcu-badge2-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2db87a;
  box-shadow: 0 0 0 3px rgba(45,184,122,0.25);
  animation: wcu-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wcu-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45,184,122,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(45,184,122,0.1); }
}
.wcu-badge2-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.wcu-badge2-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wcu-section { padding: 70px 28px; }
  .wcu-container { gap: 50px; }
  .wcu-img { height: 400px; }
}

@media (max-width: 700px) {
  .wcu-section { padding: 56px 20px; }
  .wcu-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  /* Image goes below text on mobile */
  .wcu-image-wrap { order: 2; }
  .wcu-text { order: 1; }

  .wcu-img { height: 300px; }

  .wcu-image-wrap::before { display: none; }

  .wcu-stat-badge {
    left: 12px;
    bottom: 16px;
    min-width: unset;
    padding: 12px 14px;
    gap: 10px;
  }
  .wcu-stat-num { font-size: 18px; }

  .wcu-badge2 {
    right: 12px;
    top: 16px;
  }

  .wcu-btns { flex-direction: column; }
  .wcu-btn-primary, .wcu-btn-secondary { justify-content: center; }

  .wcu-para { max-width: 100%; }
}

@media (max-width: 400px) {
  .wcu-section { padding: 44px 14px; }
  .wcu-img { height: 240px; }
  .wcu-feat-icon { width: 38px; height: 38px; }
  .wcu-feat-icon svg { width: 17px; height: 17px; }
}

