/*
 * Binnie Trading — Global Design Tokens & Typography
 */

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --orange: #F05022;
  --orange-dark: #D94418;
  --orange-soft: #FFF1EB;
  --navy: #0E2C52;
  --navy-2: #173C69;
  --navy-3: #0A213E;
  --ink: #1E2022;
  --text-body: #333333;
  --muted: #59595F;
  --muted-2: #6B7280;
  --bg: #F6F7F8;
  --bg-2: #EEF2F5;
  --paper: #FFFFFF;
  --line: #DDE3E8;
  --line-dark: #C8D0D8;
  --success: #1D7555;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --shadow-sm: 0 8px 22px rgba(14,44,82,.06);
  --shadow: 0 18px 50px rgba(14,44,82,.10);
  --container: 1450px;
  --header: 76px;
  --ease: 180ms ease;
  
  --color-text-title: #1E2022;
  --color-text-body: #333333;
  --color-text-muted: #59595F;
  --color-text-subtle: #6B7280;
  --color-text-nav: #5B616E;
  --color-text-dark: #0E2C30;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg, #F6F7F8);
  color: var(--text-body, #333333);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main#top {
  position: relative;
  background-color: var(--bg, #F6F7F8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='5' fill='%23F05022' fill-opacity='0.01'/%3E%3Ccircle cx='0' cy='0' r='5' fill='%23F05022' fill-opacity='0.01'/%3E%3Ccircle cx='22' cy='0' r='5' fill='%23F05022' fill-opacity='0.01'/%3E%3Ccircle cx='0' cy='22' r='5' fill='%23F05022' fill-opacity='0.01'/%3E%3Ccircle cx='22' cy='22' r='5' fill='%23F05022' fill-opacity='0.01'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: 0 0;
}

/* INTERACTIVE PAGE-WIDE HONEYCOMB / BEE HIVE GRID CANVAS */
.page-honeycomb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

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

button, input, select, textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container, 1450px));
  max-width: 1450px;
  margin-inline: auto;
}

.site-header .container {
  width: min(calc(100% - 40px), 1500px);
  max-width: 1500px;
}

.hero .container {
  width: min(calc(100% - 40px), 1450px);
  max-width: 1450px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
  background: transparent;
}

.hero--policy {
  padding: 24px 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange, #F05022);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: .875rem;
  line-height: 1.43;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  color: var(--ink, #1E2022);
}

h1 {
  max-width: 820px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: clamp(2.25rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.44px;
}

.lead {
  max-width: 760px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink, #1E2022);
}

/* Universal Button Styles */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

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

.btn--sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-text {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4;
}

.btn-text > span {
  display: block;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-text > span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.btn:hover .btn-text > span:first-child {
  transform: translateY(-100%);
}

.btn:hover .btn-text > span:last-child {
  transform: translateY(-100%);
}

.btn--primary {
  background: var(--orange, #F05022);
  border-color: var(--orange, #F05022);
  color: #fff;
  box-shadow: 0 9px 22px rgba(240, 80, 34, 0.22);
}

.btn--primary:hover {
  background: var(--navy, #0E2C52);
  border-color: var(--navy, #0E2C52);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.38), 0 10px 24px rgba(14, 44, 82, 0.24);
}

.btn--secondary {
  background: var(--paper, #FFFFFF);
  color: var(--ink, #1E2022);
  border-color: var(--line-dark, #C8D0D8);
}

.btn--secondary:hover {
  background: var(--navy, #0E2C52);
  border-color: var(--navy, #0E2C52);
  color: #fff;
  box-shadow: var(--shadow-sm, 0 8px 22px rgba(14,44,82,.06));
}

.btn--outline {
  background: transparent;
  color: var(--navy, #0E2C52);
  border-color: rgba(14, 44, 82, 0.25);
}

.btn--outline:hover {
  background: rgba(14, 44, 82, 0.05);
  border-color: var(--navy, #0E2C52);
}

.btn svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  transition: transform 240ms ease;
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange, #F05022);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: .875rem;
  line-height: 1.43;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

body.admin-bar .site-header { top: 32px; }

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
  body.admin-bar .site-header { top: 0; }
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION (5 DISTINCT DESIGN VARIATIONS)
   ========================================================================== */

/* Universal Nav Item & Icon Styling */
.nav-link-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2;
  transition: transform 0.2s ease, stroke 0.2s ease, color 0.2s ease;
}

.nav-link-item:hover .nav-icon {
  transform: translateY(-1px) scale(1.08);
}

/* --------------------------------------------------------------------------
   STYLE 1: MODERN MINIMALIST (Left Logo + Icon Nav + Active Capsule Pill)
   -------------------------------------------------------------------------- */
.site-header.header-style-1,
.site-header:not([class*="header-style-"]) {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header, 74px);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.site-header.header-style-1 .nav,
.site-header:not([class*="header-style-"]) .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header.header-style-1 .brand,
.site-header:not([class*="header-style-"]) .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #0E2C52;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-header.header-style-1 .brand-symbol,
.site-header:not([class*="header-style-"]) .brand-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0E2C52;
  color: #fff;
  box-shadow: inset -9px -9px 0 rgba(240, 80, 34, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-header.header-style-1 .nav-links,
.site-header:not([class*="header-style-"]) .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header.header-style-1 .nav-links > a.nav-link-item,
.site-header:not([class*="header-style-"]) .nav-links > a.nav-link-item {
  padding: 8px 13px;
  border-radius: 9999px;
  color: #4B5563;
  font-size: 0.885rem;
  background: transparent;
}

.site-header.header-style-1 .nav-links > a.nav-link-item:hover,
.site-header:not([class*="header-style-"]) .nav-links > a.nav-link-item:hover {
  color: #0E2C52;
  background: #F3F4F6;
}

.site-header.header-style-1 .nav-links > a.nav-link-item.active,
.site-header:not([class*="header-style-"]) .nav-links > a.nav-link-item.active {
  background: #EFF6FF;
  color: #0284C7;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.2);
}

.site-header.header-style-1 .nav-links > a.nav-link-item.active .nav-icon,
.site-header:not([class*="header-style-"]) .nav-links > a.nav-link-item.active .nav-icon {
  stroke: #0284C7;
}

/* --------------------------------------------------------------------------
   STYLE 2: FLOATING GLASSMORPHIC PILL ISLAND (Detached Floating Capsule)
   -------------------------------------------------------------------------- */
.site-header.header-style-2 {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  padding: 14px 20px;
  background: transparent !important;
  border: none !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  transition: padding 0.35s ease;
}

.site-header.header-style-2 .nav,
.site-header.header-style-2 .container {
  width: min(calc(100% - 40px), 1500px);
  max-width: 1500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px -8px rgba(14, 44, 82, 0.12), 0 0 0 1px rgba(14, 44, 82, 0.06);
  border-radius: 14px;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease, padding 0.35s ease;
}

/* Squeezes to 1300px when scrolling down to hero image / category cards */
.site-header.header-style-2.header-squeezed {
  padding: 10px 20px;
}

.site-header.header-style-2.header-squeezed .nav,
.site-header.header-style-2.header-squeezed .container {
  width: min(calc(100% - 40px), 1300px);
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px -6px rgba(14, 44, 82, 0.18), 0 0 0 1px rgba(14, 44, 82, 0.08);
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.1s ease;
}

.site-logo--header {
  width: 175px;
  max-height: 42px;
}

.site-footer .site-logo--footer {
  width: 175px;
  max-height: 44px;
}

.site-header.header-style-2 .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mobile-drawer-header {
  display: none;
}

.site-header.header-style-2 .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header.header-style-2 .nav-links > a.nav-link-item {
  padding: 8px 14px;
  border-radius: 8px;
  color: #475569;
  font-size: 0.875rem;
  background: transparent;
}

.site-header.header-style-2 .nav-links > a.nav-link-item:hover {
  color: #F05022;
  background: rgba(240, 80, 34, 0.06);
}

.site-header.header-style-2 .nav-links > a.nav-link-item.active {
  background: rgba(240, 80, 34, 0.12);
  color: #F05022;
  font-weight: 600;
}

.site-header.header-style-2 .nav-links > a.nav-link-item.active .nav-icon {
  stroke: #F05022;
}

.site-header.header-style-2 .header-cta-btn {
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   STYLE 3: CENTERED LOGO WITH SYMMETRICAL SPLIT NAVIGATION
   -------------------------------------------------------------------------- */
.site-header.header-style-3 {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header, 74px);
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-top: 3px solid #F05022;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.site-header.header-style-3 .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.site-header.header-style-3 .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0E2C52;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 6px 14px;
  border-radius: 8px;
  background: #FFFFFF;
}

.site-header.header-style-3 .brand-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0E2C52;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.site-header.header-style-3 .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header.header-style-3 .nav-links > a.nav-link-item:nth-child(2) {
  margin-right: 240px; /* Leaves room for centered brand logo */
}

.site-header.header-style-3 .nav-links > a.nav-link-item {
  padding: 8px 12px;
  border-radius: 6px;
  color: #334155;
  font-size: 0.885rem;
  background: transparent;
}

.site-header.header-style-3 .nav-links > a.nav-link-item:hover {
  color: #0E2C52;
  background: #F8FAFC;
}

.site-header.header-style-3 .nav-links > a.nav-link-item.active {
  color: #0E2C52;
  font-weight: 700;
  background: transparent;
}

.site-header.header-style-3 .nav-links > a.nav-link-item.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10px;
  right: 10px;
  height: 2.5px;
  background: #F05022;
  border-radius: 2px;
}

.site-header.header-style-3 .nav-links > a.nav-link-item.active .nav-icon {
  stroke: #F05022;
}

/* --------------------------------------------------------------------------
   STYLE 4: DARK NAVY EXECUTIVE LUXURY BAR
   -------------------------------------------------------------------------- */
.site-header.header-style-4 {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header, 74px);
  display: flex;
  align-items: center;
  background: #0B1B2B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.site-header.header-style-4 .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header.header-style-4 .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-header.header-style-4 .brand-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #F05022 0%, #FF7A00 100%);
  color: #fff;
  box-shadow: 0 0 16px rgba(240, 80, 34, 0.45);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-header.header-style-4 .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header.header-style-4 .nav-links > a.nav-link-item {
  padding: 8px 14px;
  border-radius: 8px;
  color: #CBD5E1;
  font-size: 0.885rem;
  background: transparent;
}

.site-header.header-style-4 .nav-links > a.nav-link-item:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.header-style-4 .nav-links > a.nav-link-item.active {
  background: rgba(56, 189, 248, 0.12);
  color: #38BDF8;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.2);
}

.site-header.header-style-4 .nav-links > a.nav-link-item.active .nav-icon {
  stroke: #38BDF8;
}

.site-header.header-style-4 .header-cta-btn {
  background: linear-gradient(135deg, #F05022 0%, #EA580C 100%);
  box-shadow: 0 0 20px rgba(240, 80, 34, 0.45);
  border: none;
  color: #fff;
}

.site-header.header-style-4 .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   STYLE 5: SEGMENTED CAPSULE DOCK (macOS / SaaS Dock Bar)
   -------------------------------------------------------------------------- */
.site-header.header-style-5 {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header, 74px);
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.site-header.header-style-5 .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header.header-style-5 .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #0E2C52;
  font-size: 1.02rem;
  font-weight: 900;
}

.site-header.header-style-5 .brand-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0E2C52;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-header.header-style-5 .nav-links {
  display: inline-flex;
  align-items: center;
  background: #E2E8F0;
  padding: 4px;
  border-radius: 9999px;
  gap: 2px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.site-header.header-style-5 .nav-links > a.nav-link-item {
  padding: 7px 14px;
  border-radius: 9999px;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
}

.site-header.header-style-5 .nav-links > a.nav-link-item:hover {
  color: #0E2C52;
}

.site-header.header-style-5 .nav-links > a.nav-link-item.active {
  background: #FFFFFF;
  color: #0E2C52;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.site-header.header-style-5 .nav-links > a.nav-link-item.active .nav-icon {
  stroke: #F05022;
}

.site-header.header-style-5 .header-cta-btn {
  margin-left: 6px;
  border-radius: 9999px;
  background: #0E2C52;
  box-shadow: 0 4px 12px rgba(14, 44, 82, 0.2);
}

.site-header.header-style-5 .header-cta-btn:hover {
  background: #F05022;
  box-shadow: 0 4px 14px rgba(240, 80, 34, 0.35);
}

/* --------------------------------------------------------------------------
   RESPONSIVE MOBILE OVERRIDES FOR ALL 5 HEADER STYLES
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Hide the desktop logo switcher button on mobile */
  .header-logo-cycle-btn {
    display: none !important;
  }

  /* Keep logo sized properly on mobile */
  .site-logo--header {
    width: 148px;
    max-height: 36px;
  }

  /* Header Container & Navigation Capsule */
  .site-header.header-style-2 {
    padding: 10px 14px;
  }

  .site-header.header-style-2 .nav,
  .site-header.header-style-2 .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 9px 14px;
    border-radius: 12px;
    position: relative;
  }

  /* Hamburger Menu Toggle Button */
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(14, 44, 82, 0.12);
    background: #FFFFFF;
    color: #0E2C52;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(14, 44, 82, 0.05);
    flex-shrink: 0;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background: rgba(240, 80, 34, 0.08);
    border-color: rgba(240, 80, 34, 0.4);
    color: #F05022;
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  /* Deep Blue Dimmed Full Page Backdrop */
  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 44, 82, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile Dropdown Header (Close Button) */
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid #EDF2F7;
  }

  .mobile-drawer-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #0E2C52;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #475569;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mobile-drawer-close:hover {
    background: #EEF2F6;
    color: #0E2C52;
  }

  .mobile-drawer-close svg {
    width: 18px;
    height: 18px;
  }

  /* =========================================================================
     MODE 1 (DEFAULT): ELEGANT FLOATING DROPDOWN CARD
     ========================================================================= */
  .site-header.header-style-2 .nav-links,
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(14, 44, 82, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 36px -6px rgba(14, 44, 82, 0.16), 0 0 0 1px rgba(14, 44, 82, 0.04);
    z-index: 199;
    transform-origin: top center;
    animation: btNavDropdownFade 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .site-header.header-style-2 .nav-links.open,
  .nav-links.open {
    display: flex !important;
  }

  @keyframes btNavDropdownFade {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Links inside mobile dropdown */
  .site-header.header-style-2 .nav-links > a.nav-link-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 10px;
    color: #1E293B;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: all 0.15s ease;
  }

  .site-header.header-style-2 .nav-links > a.nav-link-item .nav-icon {
    width: 18px;
    height: 18px;
    stroke: #64748B;
    flex-shrink: 0;
  }

  .site-header.header-style-2 .nav-links > a.nav-link-item:hover {
    background: rgba(240, 80, 34, 0.06);
    color: #F05022;
  }

  .site-header.header-style-2 .nav-links > a.nav-link-item:hover .nav-icon {
    stroke: #F05022;
  }

  .site-header.header-style-2 .nav-links > a.nav-link-item.active {
    background: rgba(240, 80, 34, 0.1) !important;
    color: #F05022 !important;
    font-weight: 600 !important;
  }

  .site-header.header-style-2 .nav-links > a.nav-link-item.active .nav-icon {
    stroke: #F05022 !important;
  }

  .site-header.header-style-2 .nav-links .header-cta-btn {
    width: 100% !important;
    margin: 8px 0 0 0 !important;
    padding: 12px 20px !important;
    justify-content: center !important;
    border-radius: 10px !important;
    display: inline-flex !important;
  }

  /* =========================================================================
     MODE 2 (SWITCHABLE): SLIDE-OUT OFF-CANVAS DRAWER
     Active when body or header has class `mobile-nav-drawer-mode`
     ========================================================================= */
  body.mobile-nav-drawer-mode .site-header.header-style-2 .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(82vw, 320px);
    height: 100vh;
    border-radius: 20px 0 0 20px;
    padding: 22px 18px;
    box-shadow: -10px 0 30px rgba(14, 44, 82, 0.2);
    display: flex !important;
    transform: translateX(105%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: none;
    z-index: 199;
    overflow-y: auto;
  }

  body.mobile-nav-drawer-mode .site-header.header-style-2 .nav-links.open {
    transform: translateX(0);
  }

  body.mobile-nav-drawer-mode .mobile-drawer-header {
    display: flex;
  }

  body.mobile-nav-drawer-mode .mobile-nav-backdrop {
    display: block;
    pointer-events: none;
  }

  body.mobile-nav-drawer-mode .mobile-nav-backdrop.active {
    pointer-events: auto;
  }

  /* Other Header Styles Responsive Fallbacks */
  .site-header.header-style-3 .brand {
    position: static;
    transform: none;
  }
  .site-header.header-style-3 .nav-links > .nav-link-item:nth-child(2) {
    margin-right: 0;
  }
  .site-header.header-style-3 .nav-link-item.active::after {
    display: none;
  }

  .site-header.header-style-5 .nav-links {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 14px;
  }
  .site-header.header-style-5 .nav-links.open {
    display: grid;
  }
}

/* ==========================================================================
   GLOBAL FOOTER STYLING
   ========================================================================== */
.footer-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
  font-weight: 600;
  color: #D8E2EC;
}

.footer-sla-badge .sla-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

/* =========================================================================
   GLOBAL SITE FOOTER
   ========================================================================= */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 28px;
  background: #0B243F;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1.35fr;
  gap: 44px;
}

.site-footer .brand {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: inline-block;
}

.site-footer .site-logo--footer {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-about p {
  max-width: 360px;
  margin-top: 14px;
  color: #AFC0CF;
  font-size: .95rem;
  line-height: 1.62;
}

.footer-col strong {
  display: block;
  margin-bottom: 14px;
  color: #F05022 !important;
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #AFC0CF;
  font-size: .9375rem;
  letter-spacing: -0.05px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  transition: color 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #F05022 !important;
  transform: translateX(2px);
}

.footer-col a.is-active,
.footer-col a.active {
  color: #F05022 !important;
  font-weight: 600 !important;
  transform: translateX(2px);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-col strong {
  display: block;
  margin-bottom: 4px;
  color: #F05022 !important;
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.footer-contact-col p {
  color: #AFC0CF;
  font-size: .95rem;
  line-height: 1.62;
  margin: 0;
  max-width: 340px;
}

.footer-contact-col .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #8FA4B7;
  font-size: .875rem;
}

.footer-bottom-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-dot-sep {
  opacity: 0.4;
}

.footer-tag-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
  .site-footer .footer-bottom > span {
    text-align: center !important;
  }
  .footer-tag-desktop {
    display: none !important;
  }
  .footer-tag-mobile {
    display: inline !important;
    white-space: nowrap !important;
  }
  .footer-bottom-tags {
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

.footer-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
  margin: 6px 0 14px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
  transition: all 200ms ease;
}

.footer-contact-phone svg {
  width: 16px;
  height: 16px;
  color: #F05022;
  stroke: #F05022;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.footer-contact-phone:hover {
  background: rgba(240, 80, 34, 0.15);
  border-color: rgba(240, 80, 34, 0.4);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.footer-contact-phone:hover svg {
  transform: scale(1.15);
}

/* Footer Column Accordion (Pages & Policies on Mobile) */
.footer-col-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: default;
  pointer-events: none;
  text-align: left;
}

.footer-col-toggle strong {
  margin: 0 !important;
}

.footer-col-chevron {
  display: none;
  width: 16px;
  height: 16px;
  color: #F05022;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.footer-col-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-col--accordion {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
    transition: background 200ms ease, border-color 200ms ease;
  }

  .footer-col--accordion.is-open {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 80, 34, 0.35);
  }

  .footer-col-toggle {
    pointer-events: auto;
    cursor: pointer;
    padding: 2px 0;
    user-select: none;
  }

  .footer-col-chevron {
    display: inline-block;
  }

  .footer-col--accordion.is-open .footer-col-chevron {
    transform: rotate(180deg);
  }

  .footer-col--accordion .footer-col-content {
    display: none;
    padding-top: 12px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col--accordion.is-open .footer-col-content {
    display: flex;
  }
}

/* ==========================================================================
   BIG POLICY MODAL POPUP WINDOW & BACKGROUND BLUR
   ========================================================================== */
body.policy-modal-open {
  overflow: hidden !important;
}

.policy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.policy-modal-overlay.is-open {
  display: flex;
}

/* Background Blur Backdrop */
.policy-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 44, 82, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
  animation: policyModalBackdropFadeIn 220ms ease;
}

.policy-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: center;
  animation: policyModalSlideUp 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-modal-dialog {
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 70px rgba(6, 20, 38, 0.35), 0 0 0 1px rgba(14, 44, 82, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Modal Header */
.policy-modal-header {
  position: relative;
  padding: 32px 36px 24px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-bottom: 1px solid #EDF2F7;
}

.policy-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F05022;
  background: rgba(240, 80, 34, 0.08);
  border: 1px solid rgba(240, 80, 34, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.policy-modal-badge svg {
  stroke: #F05022;
}

.policy-modal-title {
  margin: 0;
  font-family: var(--font-heading, 'Inter Tight', 'Inter', sans-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 700;
  color: #0E2C52;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.policy-modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(14, 44, 82, 0.06);
  transition: all 180ms ease;
}

.policy-modal-close svg {
  width: 20px;
  height: 20px;
}

.policy-modal-close:hover {
  background: #F05022;
  border-color: #F05022;
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(240, 80, 34, 0.35);
}

/* Modal Body */
.policy-modal-body {
  padding: 36px;
  min-height: 280px;
  max-height: calc(85vh - 160px);
  overflow-y: auto;
  font-family: var(--font-sans, 'Inter', sans-serif);
  color: #334155;
  line-height: 1.7;
}

.policy-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: #64748B;
  font-size: 0.95rem;
  font-weight: 500;
}

.policy-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(14, 44, 82, 0.1);
  border-top-color: #F05022;
  animation: policySpin 0.75s linear infinite;
}

@keyframes policySpin {
  to { transform: rotate(360deg); }
}

.policy-modal-placeholder {
  padding: 24px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: center;
}

.policy-modal-placeholder p {
  margin: 0;
}

.policy-modal-content-rendered {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
}

.policy-modal-content-rendered h2,
.policy-modal-content-rendered h3,
.policy-modal-content-rendered h4 {
  color: #0E2C52;
  font-family: var(--font-heading, 'Inter Tight', sans-serif);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.policy-modal-content-rendered p {
  margin-bottom: 1.2em;
}

.policy-modal-content-rendered ul,
.policy-modal-content-rendered ol {
  margin-bottom: 1.2em;
  padding-left: 1.4em;
}

.policy-modal-content-rendered li {
  margin-bottom: 0.4em;
}

@keyframes policyModalBackdropFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes policyModalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .policy-modal-overlay {
    padding: 12px;
  }
  .policy-modal-header {
    padding: 24px 20px 18px;
  }
  .policy-modal-close {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
  }
  .policy-modal-body {
    padding: 24px 20px;
    min-height: 200px;
  }
}

/* =========================================================================
   STANDALONE POLICY & GENERAL PAGE STYLES (Direct URL Access)
   ========================================================================= */
.hero--policy {
  padding: 24px 0 28px;
  text-align: center;
}

.hero--policy .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero--policy .policy-hero-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 14px;
  font-weight: 500;
}

.policy-hero-breadcrumbs a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-hero-breadcrumbs a:hover {
  color: var(--orange, #F05022);
}

.policy-hero-breadcrumbs .sep {
  color: #CBD5E1;
  user-select: none;
}

.policy-hero-breadcrumbs .current {
  color: var(--ink, #1E2022);
  font-weight: 600;
}

.hero--policy .eyebrow {
  margin-inline: auto;
}

.hero--policy h1 {
  text-align: center;
  margin-inline: auto;
}

.hero--policy .lead {
  text-align: center;
  margin-inline: auto;
}

.policy-switcher-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-switcher-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink, #1E2022);
  background: #FFFFFF;
  border: 1px solid rgba(14, 44, 82, 0.12);
  box-shadow: 0 1px 3px rgba(14, 44, 82, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-switcher-tab:hover {
  color: var(--orange, #F05022);
  border-color: var(--orange, #F05022);
  background: #FFF8F5;
  transform: translateY(-1px);
}

.policy-switcher-tab.is-active {
  background: #0B243F;
  color: #FFFFFF;
  border-color: #0B243F;
  box-shadow: 0 4px 14px rgba(11, 36, 63, 0.16);
  font-weight: 600;
}

.policy-content-section {
  position: relative;
  z-index: 1;
  padding: 16px 0 88px;
  flex: 1;
}

.policy-container {
  max-width: 960px;
  margin: 0 auto;
}

.policy-document-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(10, 25, 47, 0.09);
  box-shadow: 0 12px 36px rgba(10, 25, 47, 0.04);
  overflow: hidden;
}

.policy-document-body {
  padding: 52px 64px;
}

.policy-rendered-content {
  font-size: 1.02rem;
  line-height: 1.82;
  color: #334155;
}

.policy-rendered-content h2,
.policy-rendered-content h3 {
  font-family: var(--font-heading, 'Inter Tight', sans-serif);
  color: #0A192F;
  font-weight: 700;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(10, 25, 47, 0.07);
  letter-spacing: -0.015em;
}

.policy-rendered-content h2:first-child,
.policy-rendered-content h3:first-child {
  margin-top: 0;
}

.policy-rendered-content h4 {
  font-family: var(--font-heading, 'Inter Tight', sans-serif);
  color: #0A192F;
  font-weight: 700;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.policy-rendered-content p {
  margin-bottom: 1.3em;
}

.policy-rendered-content p strong {
  color: #0A192F;
}

.policy-rendered-content ul,
.policy-rendered-content ol {
  margin-bottom: 1.4em;
  padding-left: 1.5em;
}

.policy-rendered-content li {
  margin-bottom: 0.55em;
}

.policy-rendered-content li strong {
  color: #0A192F;
}

.policy-rendered-content a {
  color: #F05022;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.policy-rendered-content a:hover {
  color: #0A192F;
}

.policy-document-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 64px;
  background: #F8FAFC;
  border-top: 1px solid rgba(10, 25, 47, 0.08);
}

.policy-footer-support {
  display: flex;
  align-items: center;
  gap: 16px;
}

.policy-support-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(240, 80, 34, 0.1);
  color: #F05022;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-footer-support strong {
  display: block;
  font-size: 0.96rem;
  color: #0A192F;
  margin-bottom: 3px;
}

.policy-footer-support p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.4;
}

.policy-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.88rem;
  border-color: rgba(10, 25, 47, 0.18);
  color: #0A192F;
  border-radius: 9999px;
  text-decoration: none;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.policy-phone-btn:hover {
  border-color: #F05022;
  color: #F05022;
  background: #FFF8F5;
}

@media (max-width: 960px) {
  .hero--policy {
    padding: 20px 0 24px;
  }
  .policy-document-body {
    padding: 36px 32px;
  }
  .policy-document-footer {
    padding: 24px 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero--policy {
    padding: 16px 0 20px;
  }
  .policy-document-body {
    padding: 28px 20px;
    font-size: 0.96rem;
  }
  .policy-document-footer {
    padding: 20px;
  }
  .policy-footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .policy-footer-actions .btn {
    width: 100%;
    justify-content: center;
  }
}




