/* SafetyWallet Solutions CSS - Consolidated Styles */

/* ========================
   CSS Variables
   ======================== */
   :root {
    --sw-yellow: #e9a43c;
    --sw-yellow-light: rgba(244, 197, 66, 0.1);
    --sw-yellow-border: rgba(244, 197, 66, 0.3);
    --sw-cyan: #22d3ee;
    --sw-cyan-light: rgba(34, 211, 238, 0.1);
    --sw-emerald: #34d399;
    --sw-emerald-light: rgba(52, 211, 153, 0.1);
    --sw-card-bg: rgb(255 255 255 / 0.04);
    --sw-border: rgba(255, 255, 255, 0.1);
    --sw-text-light: rgba(255, 255, 255, 0.7);
    --sw-text-muted: rgba(255, 255, 255, 0.5);
  }
  
   /* ========================
     Card Styles
     ======================== */
  .sw-card {
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  }
  
  .sw-card-sm {
    border-radius: 24px;
  }
  
  .sw-card-xs {
    border-radius: 16px;
  }
  
  .sw-border {
    border-color: var(--sw-border) !important;
  }
  
  /* ========================
     Pill Styles
     ======================== */
  .sw-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid var(--sw-yellow-border);
    background: var(--sw-yellow-light);
    color: var(--sw-yellow);
  }
  
  /* ========================
     Icon Box Styles
     ======================== */
  .sw-icon-box, .sw-icon-box-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .sw-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  
  .sw-icon-box-sm {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    /* margin-bottom: 12px; */
  }
  
  .sw-icon-box-yellow { background: var(--sw-yellow-light); color: var(--sw-yellow); }
  .sw-icon-box-cyan { background: var(--sw-cyan-light); color: var(--sw-cyan); }
  .sw-icon-box-emerald { background: var(--sw-emerald-light); color: var(--sw-emerald); }
  
  /* ========================
     Text Color Styles
     ======================== */
.sw-text-yellow { color: var(--sw-yellow); }
.sw-text-cyan { color: var(--sw-cyan); }
.sw-text-emerald { color: var(--sw-emerald); }
.sw-text-light, .sw-text-muted { font-size: 14px; }
.sw-text-light { color: var(--sw-text-light); }
.sw-text-muted { color: var(--sw-text-muted); }
  
  /* ========================
     Typography Styles
     ======================== */
  .sw-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--sw-yellow);
    margin-bottom: 8px;
  }
  
  .sw-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  @media (min-width: 768px) {
    .sw-title { font-size: 36px; }
  }
  
  .sw-title-xl {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  @media (min-width: 768px) {
    .sw-title-xl { font-size: 48px; }
  }
  .sw-title-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  @media (min-width: 768px) {
    .sw-title-h3 { font-size: 2.25rem; }
  }
  
  /* ========================
     Header & Section Styles
     ======================== */
  .sw-header {
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .sw-header {
      margin-bottom: 4rem;
    }
  }
  
  .sw-section {
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    /* .sw-section {
      margin-bottom: 5rem;
    } */
  }
  
  /* ========================
     Step Box Styles
     ======================== */
  .sw-step-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--sw-border);
    border-radius: 10px;
    padding: 1px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .sw-steps-row {
    display: flex;
    flex-wrap: wrap;
  }
    .sw-steps-row > [class*="col-"] {
    flex: 1;
    min-width: 0;
  }
  .sw-step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sw-yellow);
    margin-bottom: 12px;
  }
  
  /* ========================
     Highlight Box Styles
     ======================== */
  .sw-highlight-box {
    background: rgba(244, 197, 66, 0.08);
    border: 1px solid rgba(244, 197, 66, 0.2);
    border-radius: 24px;
    padding: 16px;
    color: var(--sw-text-light);
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* ========================
     Button Styles
     ======================== */
  .sw-btn-primary {
    background: var(--sw-yellow);
    color: #0f172a;
    border: none;
    border-radius: 16px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.2s;
  }
  
  .sw-btn-primary:hover {
    filter: brightness(1.05);
    color: #0f172a;
  }
  
  .sw-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 0.375rem;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
  }
  
  .sw-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  /* Button Consistent Width */
  .sw-btn-consistent {
    min-width: 180px;
    width: auto;
  }

  @media (max-width: 576px) {
    .sw-btn-consistent {
      min-width: 100%;
      width: 100%;
    }
  }
  
  /* ========================
     Chip Styles
     ======================== */
  .sw-chip {
    border-radius: 50px;
    border: 1px solid var(--sw-border);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--sw-text-light);
  }
  
  /* ========================
     Info Box Styles
     ======================== */
  .sw-info-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 12px 16px;
  }
  
  .sw-info-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sw-text-muted);
  }
  
  .sw-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  
  /* ========================
     List Item Styles
     ======================== */
  .sw-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sw-text-light);
  }
  
  .list-unstyled {
    font-size: 14px;
  }

  /* ========================
     Accordion Styles
     ======================== */
  details.sw-accordion {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sw-border);
    border-radius: 24px;
    padding: 20px;
  }
  
  details.sw-accordion[open] {
    background: rgba(255, 255, 255, 0.05);
  }
  
  details.sw-accordion summary {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
  }
  
  details.sw-accordion summary::-webkit-details-marker {
    display: none;
  }
  
  /* ========================
     Check Icon Styles
     ======================== */
  .sw-check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  /* ========================
     Background Blur Styles
     ======================== */
  .sw-bg-blur {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .sw-blur-1 {
    position: absolute;
    left: -10%;
    top: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(244, 197, 66, 0.1);
    filter: blur(80px);
  }
  
  .sw-blur-2 {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
    filter: blur(80px);
  }
  
  .sw-blur-3 {
    position: absolute;
    bottom: 0;
    left: 33%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
  }
  
  /* ========================
     Placeholder Styles
     ======================== */
  .sw-video-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--sw-border);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.25);
  }

  .sw-video-placeholder.ratio {
    min-height: auto;
  }
  
 /* SafetyWallet Solutions CSS - Consolidated Styles */

/* ========================
   CSS Variables
   ======================== */
   :root {
    --sw-yellow: #e9a43c;
    --sw-yellow-light: rgba(244, 197, 66, 0.1);
    --sw-yellow-border: rgba(244, 197, 66, 0.3);
    --sw-cyan: #22d3ee;
    --sw-cyan-light: rgba(34, 211, 238, 0.1);
    --sw-emerald: #34d399;
    --sw-emerald-light: rgba(52, 211, 153, 0.1);
    --sw-card-bg: rgb(255 255 255 / 0.04);
    --sw-border: rgba(255, 255, 255, 0.1);
    --sw-text-light: rgba(255, 255, 255, 0.7);
    --sw-text-muted: rgba(255, 255, 255, 0.5);
  }
  
   /* ========================
     Card Styles
     ======================== */
  .sw-card {
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  }
  
  .sw-card-sm {
    border-radius: 24px;
  }

  .sw-card-tm {
    border-radius: 20px;
  }
  
  .sw-card-xs {
    border-radius: 16px;
  }
  .sw-card a {
    color: #fff;
  }
  .sw-border {
    border-color: var(--sw-border) !important;
  }
  
  /* ========================
     Pill Styles
     ======================== */
  .sw-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid var(--sw-yellow-border);
    background: var(--sw-yellow-light);
    color: var(--sw-yellow);
  }
  
  /* ========================
     Icon Box Styles
     ======================== */
  .sw-icon-box, .sw-icon-box-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .sw-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  
  .sw-icon-box-sm {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  
  .sw-icon-box-yellow { background: var(--sw-yellow-light); color: var(--sw-yellow); }
  .sw-icon-box-cyan { background: var(--sw-cyan-light); color: var(--sw-cyan); }
  .sw-icon-box-emerald { background: var(--sw-emerald-light); color: var(--sw-emerald); }
  
  /* ========================
     Text Color Styles
     ======================== */
  .sw-text-yellow { color: var(--sw-yellow); }
  .sw-text-cyan { color: var(--sw-cyan); }
  .sw-text-emerald { color: var(--sw-emerald); }
  .sw-text-light, .sw-text-muted { font-size: 1rem; }
  .sw-text-light { color: var(--sw-text-light); }
  .sw-text-muted { color: var(--sw-text-muted); }
    
  /* ========================
     Typography Styles
     ======================== */
  .sw-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--sw-yellow);
    margin-bottom: 8px;
  }
  
  .sw-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .sw-title { font-size: 2.25rem; }
  }

  .sw-title-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .sw-title-h3 { font-size: 2.25rem; }
  }

  .sw-title-xl {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  @media (min-width: 768px) {
    .sw-title-xl { font-size: 48px; }
  }
  
  /* ========================
     Header & Section Styles
     ======================== */
  .sw-header {
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .sw-header {
      margin-bottom: 4rem;
    }
  }
  
  .sw-section {
    margin-bottom: 3rem;
  }
  
 @media (min-width: 768px) {
    /* .sw-section {
      margin-bottom: 5rem;
    } */
 }
  
  /* ========================
     Step Box Styles
     ======================== */
  .sw-step-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--sw-border);
    border-radius: 10px;
    padding: 1px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .sw-step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sw-yellow);
    margin-bottom: 12px;
  }
  
  /* ========================
     Highlight Box Styles
     ======================== */
  .sw-highlight-box {
    background: rgba(244, 197, 66, 0.08);
    border: 1px solid rgba(244, 197, 66, 0.2);
    border-radius: 24px;
    padding: 16px;
    color: var(--sw-text-light);
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* ========================
     Button Styles
     ======================== */
  .sw-btn-primary {
    background: var(--sw-yellow);
    color: #0f172a;
    border: none;
    border-radius: 16px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.2s;
  }

  .sw-btn-primary:hover {
    filter: brightness(1.05);
    color: #0f172a;
  }

  .sw-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 0.375rem;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: background 0.2s;
  }

  .sw-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  /* ========================
     Chip Styles
     ======================== */
  .sw-chip {
    border-radius: 50px;
    border: 1px solid var(--sw-border);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--sw-text-light);
  }
  
  /* ========================
     Info Box Styles
     ======================== */
  .sw-info-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 12px 16px;
  }
  
  .sw-info-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sw-text-muted);
  }
  
  .sw-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  
  /* ========================
     List Item Styles
     ======================== */
  .sw-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sw-text-light);
  }

  .list-unstyled {
    font-size: 14px;
  }
  
  /* ========================
     Accordion Styles
     ======================== */
  details.sw-accordion {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sw-border);
    border-radius: 24px;
    padding: 20px;
  }
  
  details.sw-accordion[open] {
    background: rgba(255, 255, 255, 0.05);
  }
  
  details.sw-accordion summary {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
  }
  
  details.sw-accordion summary::-webkit-details-marker {
    display: none;
  }
  
  /* ========================
     Check Icon Styles
     ======================== */
  .sw-check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  /* ========================
     Background Blur Styles
     ======================== */
  .sw-bg-blur {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .sw-blur-1 {
    position: absolute;
    left: -10%;
    top: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(244, 197, 66, 0.1);
    filter: blur(80px);
  }
  
  .sw-blur-2 {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
    filter: blur(80px);
  }
  
  .sw-blur-3 {
    position: absolute;
    bottom: 0;
    left: 33%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
  }
  
  /* ========================
     Placeholder Styles
     ======================== */
  .sw-video-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--sw-border);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.25);
  }

  .sw-video-placeholder.ratio {
    min-height: auto;
  }
  
  .sw-image-placeholder {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--sw-border);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.25);
  }

  .sw-image-placeholder-hero {
    min-height: 300px;
    height: 100%;
  }
  
  .sw-image-placeholder-tall {
    min-height: 320px;
  }

  /* Video Rounded Corners */
  .sw-video-placeholder {
    border-radius: 16px;
    overflow: hidden;
  }
  .sw-card-arrow {
    position: relative;
  }
  
  .sw-card-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px; /* pushes arrow toward the video */
    transform: translateY(-50%);
    
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff; /* arrow color */
    
    /* optional shadow for depth */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  }
  @media (max-width: 991px) {
    .sw-card-arrow::after {
      display: none;
    }
  }