 :root{
    --navy:#0f1f3d;
    --blue:#2f5cf0;
    --blue-dark:#1e46d6;
    --green:#22c55e;
    --red:#ef4444;
    --gray-bg:#f5f7fb;
    --text-muted:#5b6b8c;
  }

  * { font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-weight: 700; }

  body{ color: var(--navy); overflow-x:hidden; }

  a { text-decoration:none; }

  /* ===== NAVBAR ===== */
  .navbar{
    background:#fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .navbar-brand{
    display:flex;
    align-items:center;
    gap:.6rem;
    font-weight:700;
    font-size:2.1rem;
    color: var(--navy) !important;
  }
  .navbar-brand img, .navbar-brand .brand-icon{
    width:135px;
    height:114px;
  }
  .nav-link-custom{
    color: var(--navy);
    font-weight:500;
    margin: 0 .9rem;
  }
  .nav-link-custom:hover{ color: var(--blue); }
  .btn-primary-custom{
    background: var(--blue);
    border:none;
    color:#fff;
    font-weight:600;
    padding:.65rem 1.6rem;
    border-radius:.6rem;
    transition: all .2s ease;
  }
  .btn-primary-custom:hover{
    background: var(--blue-dark);
    color:#fff;
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height: 92vh;
    display:flex;
    align-items:center;
    background: linear-gradient(160deg, rgba(10,20,50,.72) 0%, rgba(15,31,61,.88) 100%),
                url('/public/frontend/images/hero/heroimage.png') center/cover no-repeat;
    color:#fff;
    text-align:center;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background:rgba(47,92,240,0.25);
    border:1px solid rgba(47,92,240,0.4);
    color:#a8c0ff;
    padding:.35rem 1rem;
    border-radius:20px;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.04em;
    margin-bottom:1.4rem;
  }
  .hero h1{
    font-weight:800;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height:1.1;
    letter-spacing:-.02em;
  }
  .hero p.lead-text{
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color:#c9d8f0;
    max-width:680px;
    margin: 0 auto;
    font-weight:400;
    line-height:1.7;
  }
  .hero-actions{ display:flex; flex-wrap:wrap; justify-content:center; gap:.9rem; }
  .hero .btn-outline-light-custom{
    border:1.5px solid rgba(255,255,255,.4);
    color:#fff;
    font-weight:600;
    padding:.8rem 1.8rem;
    border-radius:.65rem;
    background: rgba(255,255,255,.07);
    backdrop-filter:blur(4px);
    transition: background .2s, border-color .2s;
  }
  .hero .btn-outline-light-custom:hover{ background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.7); }
  .hero .btn-hero-primary{
    background: var(--blue);
    border:none;
    color:#fff;
    font-weight:700;
    padding:.8rem 2rem;
    border-radius:.65rem;
    box-shadow: 0 4px 18px rgba(47,92,240,.45);
    transition: background .2s, transform .15s;
  }
  .hero .btn-hero-primary:hover{ background: var(--blue-dark); transform:translateY(-2px); }
  .hero small{ color:#8a9ec4; font-weight:400; font-size:.85rem; }

  /* ===== SECTION: MOVES WITH CREW ===== */
  .moves-section{
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f7fb 100%);
    border-top: 1px solid #e2e8f5;
    border-bottom: 1px solid #e2e8f5;
  }
  .moves-inner{
    display:flex;
    align-items:center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .moves-icon-wrap{ flex-shrink:0; }
  .moves-icon{
    width:90px;
    height:90px;
    background: var(--blue);
    color:#fff;
    border-radius: 1.4rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.2rem;
    box-shadow: 0 8px 24px rgba(47,92,240,0.3);
  }
  .moves-icon i{ animation: spin-slow 6s linear infinite; }
  @keyframes spin-slow{ to{ transform: rotate(360deg); } }
  .moves-content h2{
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--navy);
    margin-bottom: .9rem;
  }
  .moves-content p{
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 1.4rem;
  }
  .moves-pills{
    display:flex;
    flex-wrap:wrap;
    gap:.6rem;
  }
  .moves-pills span{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    background:#fff;
    border: 1.5px solid #dde3f5;
    color: var(--navy);
    padding:.4rem 1rem;
    border-radius:20px;
    font-size:.83rem;
    font-weight:700;
  }
  .moves-pills span i{ color: var(--blue); font-size:.8rem; }
  .section-subtitle{
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 780px;
    margin: 0 auto;
  }
  @media (max-width: 575.98px){
    .moves-inner{ flex-direction:column; gap:1.5rem; text-align:center; }
    .moves-pills{ justify-content:center; }
  }

  /* ===== COMPARISON ===== */
  .comparison-section{
    background: var(--gray-bg);
    padding: 5rem 0;
  }
  .compare-card{
    border-radius: 1.2rem;
    padding: 2.4rem;
    height:100%;
  }
  .compare-card.old-way{
    background:#fff;
    border: 1.5px solid #e2e6f0;
    color: var(--navy);
  }
  .compare-card.airtime-way{
    background: linear-gradient(145deg, var(--blue), #1a3cc8);
    color:#fff;
    box-shadow: 0 12px 40px rgba(47,92,240,.3);
  }
  .compare-card-header{
    display:flex;
    align-items:center;
    gap:.8rem;
    margin-bottom:1.8rem;
  }
  .compare-card-header-icon{
    width:42px;
    height:42px;
    border-radius:.7rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    flex-shrink:0;
  }
  .old-way .compare-card-header-icon{ background:#fde8e6; color:#e0342a; }
  .airtime-way .compare-card-header-icon{ background:rgba(255,255,255,.2); color:#fff; }
  .compare-card-header h3{ font-weight:800; font-size:1.3rem; margin:0; }
  .compare-list{
    list-style:none;
    padding:0;
    margin:0;
  }
  .compare-list li{
    display:flex;
    align-items:flex-start;
    gap:.9rem;
    padding: .75rem 0;
    font-weight:500;
    font-size:1rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .airtime-way .compare-list li{ border-bottom-color: rgba(255,255,255,.1); }
  .compare-list li:last-child{ border-bottom:none; }
  .compare-list li i{ font-size:1rem; margin-top:.2rem; flex-shrink:0; }
  .old-way .compare-list li i{ color: var(--red); }
  .airtime-way .compare-list li i{ color:#7CFFA0; }

  /* ===== PRICING ===== */
  .pricing-section{ padding: 5rem 0; background:#fff; }
  .price-card{
    border: 1.5px solid #e6e9f2;
    border-radius: 1.2rem;
    padding: 2.2rem;
    height:100%;
    background:#fff;
    transition: transform .2s ease, box-shadow .2s ease;
    display:flex;
    flex-direction:column;
  }
  .price-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15,31,61,.1);
    border-color: #c5cfe8;
  }
  .price-card.featured{
    background: linear-gradient(160deg, var(--blue) 0%, #1a3cc8 100%);
    color:#fff;
    border:none;
    box-shadow: 0 20px 50px rgba(47,92,240,.4);
    transform: scale(1.05);
  }
  .price-card.featured:hover{ transform: scale(1.07) translateY(-4px); }
  .badge-popular{
    background: var(--green);
    color:#fff;
    font-weight:700;
    padding: .3rem .9rem;
    border-radius: 2rem;
    font-size:.75rem;
    display:inline-block;
    margin-bottom:1rem;
    letter-spacing:.04em;
  }
  .price-plan-label{
    font-size:.75rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color: var(--text-muted);
    margin-bottom:.4rem;
  }
  .price-card.featured .price-plan-label{ color:rgba(255,255,255,.7); }
  .price-card h4{
    font-weight:800;
    font-size:1.5rem;
    margin-bottom:.8rem;
  }
  .price-divider{
    border:none;
    border-top:1px solid #eceef4;
    margin: 1.2rem 0;
  }
  .price-card.featured .price-divider{ border-color:rgba(255,255,255,.15); }
  .price-amount{
    font-weight:800;
    font-size: 3rem;
    line-height:1;
  }
  .price-amount span{
    font-size:1rem;
    font-weight:500;
    opacity:.7;
  }
  .price-card .plan-feature{
    display:flex;
    align-items:flex-start;
    gap:.75rem;
    padding:.55rem 0;
    font-size:.95rem;
    font-weight:500;
    border-bottom:1px solid #f0f2f8;
  }
  .price-card.featured .plan-feature{ border-bottom-color:rgba(255,255,255,.1); }
  .price-card .plan-feature:last-of-type{ border-bottom:none; }
  .price-card .plan-feature i{ color: var(--green); margin-top:.2rem; flex-shrink:0; }
  .price-card.featured .plan-feature i{ color:#7CFFA0; }
  .price-card .btn-plan{
    width:100%;
    border-radius:.7rem;
    font-weight:700;
    padding:.85rem;
    margin-top:auto;
    padding-top:.85rem;
    background: var(--blue);
    border:none;
    color:#fff;
    font-size:1rem;
    transition: background .2s, transform .15s;
    margin-top:1.4rem;
  }
  .price-card.featured .btn-plan{ background:#fff; color: var(--blue); }
  .price-card:not(.featured) .btn-plan:hover{ background: var(--blue-dark); transform:translateY(-1px); }
  .price-card.featured .btn-plan:hover{ background:#f0f4ff; }

  /* ===== FAQ ===== */
  .faq-section{
    background: var(--gray-bg);
    padding: 5rem 0;
  }
  .accordion-item{
    border: 1.5px solid #e6e9f2 !important;
    border-radius: 1rem !important;
    margin-bottom: .8rem;
    overflow:hidden;
    background:#fff;
    box-shadow: 0 2px 8px rgba(15,31,61,.04);
    transition: box-shadow .2s;
  }
  .accordion-item:hover{ box-shadow: 0 4px 16px rgba(15,31,61,.08); }
  .accordion-button{
    font-weight:700;
    font-size:1.05rem;
    color: var(--navy);
    padding: 1.3rem 1.6rem;
    background:#fff;
  }
  .accordion-button:not(.collapsed){
    background:#fff;
    color: var(--blue);
    box-shadow:none;
  }
  .accordion-button::after{ filter: opacity(.5); }
  .accordion-button:not(.collapsed)::after{ filter: none; }
  .accordion-button:focus{ box-shadow:none; }
  .accordion-body{
    color: var(--text-muted);
    padding: 0 1.6rem 1.4rem;
    font-size:.98rem;
    font-weight:400;
    line-height:1.7;
  }

  /* ===== FOOTER ===== */
  footer{
    background: var(--navy);
    padding: 4rem 0 0;
    color: #a8b8d8;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:.6rem;
    font-size:1.3rem;
    font-weight:800;
    color:#fff;
    margin-bottom:.8rem;
  }
  .footer-brand-icon{
    color: var(--blue);
    font-size:1.5rem;
  }
  .footer-tagline{
    color:#a8b8d8;
    font-size:.92rem;
    font-weight:400;
    line-height:1.6;
  }
  .footer-heading{
    color:#fff;
    font-weight:700;
    font-size:1rem;
    margin-bottom:1.2rem;
    text-transform:uppercase;
    letter-spacing:.05em;
  }
  .footer-name{
    color:#fff;
    font-weight:600;
    margin-bottom:.8rem;
  }
  .footer-contact-item{
    display:flex;
    align-items:center;
    gap:.6rem;
    margin-bottom:.6rem;
    font-size:.93rem;
  }
  .footer-contact-item i{ color: var(--blue); font-size:.85rem; }
  .footer-contact-item a{ color:#a8b8d8; font-weight:400; }
  .footer-contact-item a:hover{ color:#fff; }
  .footer-links{
    list-style:none;
    padding:0;
    margin:0;
  }
  .footer-links li{ margin-bottom:.6rem; }
  .footer-links a{
    color:#a8b8d8;
    font-weight:400;
    font-size:.93rem;
    display:flex;
    align-items:center;
    gap:.5rem;
    transition: color .2s;
  }
  .footer-links a i{ font-size:.7rem; color: var(--blue); }
  .footer-links a:hover{ color:#fff; }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding: 1.2rem 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:.8rem;
    color:#6b7fa3;
    font-size:.88rem;
    font-weight:400;
  }
  .footer-badge{
    display:flex;
    align-items:center;
    gap:.4rem;
    background:rgba(47,92,240,0.15);
    color: var(--blue);
    padding:.3rem .8rem;
    border-radius:20px;
    font-size:.82rem;
    font-weight:600;
  }

  /* ===== RESPONSIVE ===== */

  /* Tablet (max 991px) */
  @media (max-width: 991.98px){
    .navbar-brand img, .navbar-brand .brand-icon{ width:90px; height:82px; }
    .navbar-brand{ font-size:1.2rem; }
    .navbar-collapse{ padding: 1rem 0; }
    .nav-link-custom{ margin: .3rem 0; }
    .btn-primary-custom{ width:100%; text-align:center; margin-top:.5rem; }
    .lang-dropdown{ position:static; }
    .lang-menu{
      position:static;
      box-shadow:none;
      border:1px solid #dfe4ee;
      margin-top:.3rem;
    }
    .hero{ min-height:75vh; padding: 3rem 0; }
    .price-card.featured{ transform:none; margin: 1rem 0; }
    .price-card.featured:hover{ transform: translateY(-4px); }
    .compare-card{ margin-bottom:1.5rem; }
    .comparison-section{ padding: 3rem 0; }
    .pricing-section{ padding: 3rem 0; }
    .faq-section{ padding: 3rem 0; }
  }

  /* Mobile (max 575px) */
  @media (max-width: 575.98px){
    .navbar-brand img, .navbar-brand .brand-icon{ width:64px; height:58px; }
    .navbar-brand{ font-size:1rem; }
    .hero{ min-height:60vh; padding: 2rem 0; }
    .hero h1{ font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .hero p.lead-text{ font-size:.97rem; }
    .hero .btn-hero-primary,
    .hero .btn-outline-light-custom{ width:100%; text-align:center; }
    .section-title{ font-size: clamp(1.4rem, 5vw, 2rem); }
    .section-subtitle{ font-size:.95rem; }
    .compare-card{ padding: 1.4rem; }
    .price-card{ padding: 1.4rem 1.2rem; }
    .price-amount{ font-size:2rem; }
    .comparison-section{ padding: 2rem 0; }
    .pricing-section{ padding: 2rem 0; }
    .faq-section{ padding: 2rem 0; }
    footer{ padding: 2.5rem 0 0; }
    .footer-bottom{ font-size:.8rem; justify-content:center; text-align:center; }
    .signup-card{ padding: 1.4rem; border-radius: 1rem; }
    .page-title{ font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .search-card{ padding: 1.2rem; }
    .cta-banner{ padding: 2rem 1rem; }
    .peace-section{ padding: 2.5rem 1rem; }
    .empty-state{ padding: 2.5rem 1rem; }
  }

  /* ===== LANGUAGE DROPDOWN ===== */
  .lang-dropdown{ position:relative; }
  .lang-menu{
    display:none;
    position:absolute;
    top: calc(100% + 6px);
    right:0;
    background:#fff;
    border: 1px solid #dfe4ee;
    border-radius: .7rem;
    box-shadow: 0 8px 24px rgba(15,31,61,.1);
    min-width: 140px;
    z-index: 999;
    overflow:hidden;
  }
  .lang-dropdown.open .lang-menu{ display:block; }
  .lang-option{
    display:block;
    padding: .65rem 1.1rem;
    color: var(--navy);
    cursor:pointer;
    transition: background .15s;
  }
  .lang-option:hover{ background: var(--gray-bg); color: var(--blue); }

  /* ===== SIGNUP PAGE ===== */
  .back-link{
    color: var(--text-muted);
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
  }
  .back-link:hover{ color: var(--blue); }

  .page-title{
    font-weight:600;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    text-align:center;
  }
  .page-subtitle{
    color: var(--text-muted);
    text-align:center;
    font-size: clamp(.95rem, 2vw, 1.15rem);
  }

  .signup-card{
    background:#fff;
    border-radius: 1.2rem;
    padding: 2.6rem;
    box-shadow: 0 8px 30px rgba(15,31,61,.06);
    max-width: 760px;
    margin: 0 auto;
  }

  .form-section-title{
    font-weight:600;
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
  }

  .form-label-custom{
    display:flex;
    align-items:center;
    gap:.6rem;
    font-weight:500;
    color: var(--navy);
    margin-bottom:.6rem;
  }
  .form-label-custom i{
    color: var(--navy);
    width:18px;
    text-align:center;
  }

  .form-control-custom, .form-select-custom{
    width:100%;
    border: 1.5px solid #dfe4ee;
    border-radius: .7rem;
    padding: .85rem 1.1rem;
    font-size: 1rem;
    color: var(--navy);
    background:#fff;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .form-control-custom::placeholder{ color:#9aa5bd; }
  .form-control-custom:focus, .form-select-custom:focus{
    outline:none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(47,92,240,.15);
  }

  .field-group{ margin-bottom: 1.6rem; }

  hr.section-divider{
    border:none;
    border-top: 1px solid #dfe4ee;
    margin: 2.2rem 0;
  }

  .btn-create-account{
    width:100%;
    background: var(--blue);
    border:none;
    color:#fff;
    font-weight:600;
    font-size: 1.05rem;
    padding: 1rem;
    border-radius: .8rem;
    transition: background .2s ease;
  }
  .btn-create-account:hover{ background: var(--blue-dark); color:#fff; }

  .terms-note{
    text-align:center;
    color: var(--text-muted);
    font-size:.88rem;
    margin-top: 1.2rem;
  }

  select.form-select-custom{
    appearance:none;
    -webkit-appearance:none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235b6b8c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position: right 1rem center;
    padding-right: 2.6rem;
  }

  @media (max-width: 575.98px){
    .signup-card{ padding: 1.6rem; border-radius: 1rem; }
  }

  /* ===== BOUNCE HOUSE RENTALS PAGE ===== */
  .page-header{
    text-align:center;
    padding: 3rem 0 2.5rem;
  }
  .page-header h1{
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .search-card{
    background:#fff;
    border: 1px solid #dfe4ee;
    border-radius: 1.2rem;
    padding: 2.4rem;
    box-shadow: 0 8px 30px rgba(15,31,61,.06);
  }

  .input-icon-wrap{ position:relative; }
  .input-icon-wrap i{
    position:absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b9ab3;
  }
  .form-control-custom.with-icon{ padding-left: 2.8rem; }

  .btn-search-companies{
    width:100%;
    background: #8b9ab3;
    border:none;
    color:#fff;
    font-size:1.1rem;
    padding: 1rem;
    border-radius:.8rem;
    transition: background .2s ease;
  }
  .btn-search-companies:hover{ background:#76839c; color:#fff; }

  .form-check-custom{
    display:flex;
    align-items:center;
    gap:.7rem;
  }
  .form-check-custom input{
    width:20px;
    height:20px;
    border-radius:.3rem;
    border: 1.5px solid #dfe4ee;
  }

  .info-box{
    background: #eaf0ff;
    border: 1.5px solid #c7d6ff;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
  }
  .info-box i.shield-icon{
    color: var(--blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display:block;
  }
  .info-box h3{
    color: var(--blue-dark);
    font-size:1.4rem;
    margin-bottom:1rem;
  }
  .info-box p{
    color: var(--blue-dark);
    margin-bottom: .8rem;
  }
  .info-box p:last-child{ margin-bottom:0; }

  .empty-state{
    text-align:center;
    padding: 4rem 1rem;
  }
  .empty-state i{
    font-size: 3.5rem;
    color: #cbd3e3;
    margin-bottom: 1.5rem;
  }
  .empty-state h3{
    font-size:1.5rem;
    margin-bottom:.8rem;
  }
  .empty-state p{
    color: var(--text-muted);
    font-size:1.05rem;
  }

  .cta-banner{
    background: linear-gradient(135deg, #1e9e52, #177f42);
    border-radius: 1.2rem;
    padding: 3.5rem 2rem;
    text-align:center;
    color:#fff;
  }
  .cta-banner i.shield-lg{
    font-size: 3rem;
    margin-bottom: 1.2rem;
    opacity:.9;
  }
  .cta-banner h2{
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1.2rem;
  }
  .cta-banner p{
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity:.95;
  }
  .btn-cta-white{
    background:#fff;
    color: #177f42;
    padding: .9rem 2rem;
    border-radius: .7rem;
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    transition: transform .2s ease;
  }
  .btn-cta-white:hover{ color: #177f42; transform: translateY(-2px); }

  .peace-section{
    text-align:center;
    padding: 4rem 1rem;
  }
  .peace-section h2{
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
  }
  .peace-section p{
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }

  @media (max-width: 575.98px){
    .search-card{ padding: 1.2rem; }
    .cta-banner{ padding: 2rem 1rem; }
    .peace-section{ padding: 2.5rem 1rem; }
    .empty-state{ padding: 2.5rem 1rem; }
  }

  /* ===== SAFETY INFO PAGE ===== */
  /* ===== SAFETY PAGE ===== */
  .safety-hero-wrap{
    background: linear-gradient(135deg, #0f1f3d 0%, #1a3260 100%);
    padding: 5rem 0 4rem;
    margin-bottom: 3rem;
  }
  .safety-hero{
    text-align:center;
    color:#fff;
  }
  .warning-icon-circle{
    width:80px;
    height:80px;
    background:rgba(224,52,42,0.18);
    border: 2px solid rgba(224,52,42,0.4);
    color:#ff6b63;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin: 0 auto 1.6rem;
  }
  .safety-hero h1{
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color:#fff;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height:1.25;
  }
  .safety-hero p{
    color:#a8b8d8;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    font-weight:400;
    margin-bottom:2rem;
  }
  .safety-hero-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.7rem;
  }
  .safety-hero-badges span{
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.15);
    color:#c9d8f0;
    padding:.4rem 1rem;
    border-radius:20px;
    font-size:.82rem;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.4rem;
  }
  .safety-page-body{ padding-bottom: 3rem; }
  .section-label{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    padding:.35rem .9rem;
    border-radius:20px;
    margin-bottom:1rem;
  }
  .section-label.danger{ background:#fde8e6; color:#c0251c; }
  .section-label.success{ background:#dcfce7; color:#15803d; }
  .content-card{
    background:#fff;
    border-radius: 1.4rem;
    padding: 2.5rem;
    border: 1px solid #eceef4;
    box-shadow: 0 2px 16px rgba(15,31,61,0.06);
  }
  .content-card h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--navy);
  }
  .content-card > p{
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height:1.75;
    font-weight:400;
    max-width:820px;
  }
  .danger-card{
    background:#fff9f9;
    border: 1.5px solid #fbd0cc;
    border-radius: 1rem;
    padding: 1.6rem;
    height:100%;
    transition: box-shadow .2s;
  }
  .danger-card:hover{ box-shadow: 0 4px 18px rgba(224,52,42,0.1); }
  .danger-card-icon{
    width:48px;
    height:48px;
    background:#fde8e6;
    border-radius:.8rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    color:#e0342a;
    margin-bottom:1rem;
  }
  .danger-card h4{ color: var(--navy); font-size:1.05rem; margin-bottom:.6rem; }
  .danger-card p{ color: var(--text-muted); font-size:.93rem; margin:0; line-height:1.6; font-weight:400; }
  .reality-box{
    background: linear-gradient(135deg, #fff8f0, #fff3f3);
    border: 1.5px solid #f5c6c0;
    border-radius: 1rem;
    padding: 1.5rem 1.8rem;
    font-size: 1rem;
    color: var(--navy);
    line-height:1.7;
    display:flex;
    gap:1rem;
    align-items:flex-start;
    font-weight:400;
  }
  .reality-icon{ color:#e0342a; font-size:1.2rem; margin-top:.15rem; flex-shrink:0; }
  .solution-section{
    background:#fff;
    border-radius: 1.4rem;
    padding: 2.5rem;
    border: 1px solid #eceef4;
    box-shadow: 0 2px 16px rgba(15,31,61,0.06);
  }
  .solution-section h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--navy);
  }
  .solution-section > p{
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height:1.75;
    font-weight:400;
    max-width:820px;
    margin-bottom:.8rem;
  }
  .features-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .feature-check{
    display:flex;
    gap: 1rem;
    background: var(--gray-bg);
    border-radius: 1rem;
    padding: 1.4rem;
    align-items:flex-start;
    border: 1px solid #eceef4;
    transition: box-shadow .2s;
  }
  .feature-check:hover{ box-shadow: 0 3px 14px rgba(15,31,61,0.07); }
  .feature-check-icon{
    width:40px;
    height:40px;
    background:#dcfce7;
    border-radius:.7rem;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--green);
    font-size:1.1rem;
    flex-shrink:0;
  }
  .feature-check h4{ font-size:1rem; margin-bottom:.4rem; color: var(--navy); }
  .feature-check p{ color: var(--text-muted); font-size:.92rem; line-height:1.6; margin:0; font-weight:400; }
  .verify-banner{
    border-radius: 1.4rem;
    overflow:hidden;
    background: linear-gradient(135deg, var(--blue) 0%, #1a3cc8 100%);
    box-shadow: 0 8px 32px rgba(47,92,240,0.25);
  }
  .verify-banner-inner{
    padding: 3.5rem 2rem;
    text-align:center;
    color:#fff;
  }
  .verify-banner h2{ font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
  .verify-banner p{ font-size:1.05rem; max-width:680px; margin:0 auto 2rem; opacity:.9; font-weight:400; }
  .btn-verify-white{
    background:#fff;
    color: var(--blue);
    padding: .85rem 2rem;
    border-radius: .7rem;
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    font-weight:700;
    font-size:1rem;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }
  .btn-verify-white:hover{ transform:translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: var(--blue-dark); }
  .family-box{
    background: linear-gradient(135deg, #f0f4ff, #f5f7fb);
    border-radius: 1.4rem;
    padding: 3rem 2rem;
    text-align:center;
    border: 1px solid #dde3f5;
    margin-bottom: 1rem;
  }
  .family-icon{ font-size:2rem; color: var(--blue); display:block; margin-bottom:1rem; }
  .family-box h2{ font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; color: var(--navy); }
  .family-box p{ color: var(--text-muted); font-size:1.05rem; max-width:750px; margin:0 auto 1.8rem; line-height:1.75; font-weight:400; }
  .btn-family-cta{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background: var(--blue);
    color:#fff;
    padding:.8rem 1.8rem;
    border-radius:.7rem;
    font-weight:700;
    font-size:.95rem;
    transition: background .2s, transform .15s;
  }
  .btn-family-cta:hover{ background: var(--blue-dark); color:#fff; transform:translateY(-1px); }

  @media (max-width: 767.98px){
    .features-grid{ grid-template-columns: 1fr; }
    .safety-hero-wrap{ padding: 3rem 0 2.5rem; }
  }
  @media (max-width: 575.98px){
    .content-card{ padding: 1.4rem; }
    .solution-section{ padding: 1.4rem; }
    .verify-banner-inner{ padding: 2rem 1rem; }
    .family-box{ padding: 2rem 1rem; }
    .danger-card{ padding: 1.2rem; }
  }

/* ===== Billing Toggle ===== */
.billing-toggle-wrap { display:flex; align-items:center; justify-content:center; }
.billing-label { font-size:.95rem; font-weight:400; color: var(--text); transition: font-weight .2s; }
#label-monthly { font-weight:700; }
.discount-badge {
  display:inline-block; background:#e8f5e9; color:#2e7d32;
  font-size:.72rem; font-weight:700; padding:2px 8px;
  border-radius:20px; margin-left:5px; vertical-align:middle;
}
.billing-switch { position:relative; display:inline-block; width:48px; height:26px; }
.billing-switch input { opacity:0; width:0; height:0; }
.billing-slider {
  position:absolute; cursor:pointer; inset:0;
  background:#cdd5e0; border-radius:26px; transition:.3s;
}
.billing-slider:before {
  content:''; position:absolute; height:20px; width:20px;
  left:3px; bottom:3px; background:#fff; border-radius:50%; transition:.3s;
}
.billing-switch input:checked + .billing-slider { background: var(--blue); }
.billing-switch input:checked + .billing-slider:before { transform:translateX(22px); }
.price-period { font-size:1rem; font-weight:400; }

/* ===== Signup Plan Cards ===== */
.signup-plan-card {
  position: relative;
  border: 2px solid #dfe4ee;
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  background: #fff;
}
.signup-plan-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(47,92,240,.1);
  transform: translateY(-2px);
}
.signup-plan-card.selected {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(47,92,240,.15);
  background: #f5f8ff;
}
.signup-plan-card.signup-plan-popular {
  border-color: var(--blue);
}
.signup-plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .8rem;
  border-radius: 2rem;
  white-space: nowrap;
  letter-spacing: .04em;
}
.signup-plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.signup-plan-users {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.signup-plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .9rem;
}
.signup-plan-features span {
  font-size: .8rem;
  color: var(--text-muted);
}
.signup-plan-features i {
  color: var(--green);
  margin-right: .2rem;
}
.signup-plan-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.signup-plan-period {
  font-size: .8rem;
  color: var(--text-muted);
}
.signup-plan-yearly-note {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  margin-top: .2rem;
}
