/*
New Style For New Home Page
*/


/* =Reset default browser CSS. Based on work by Eric Meyer.
-------------------------------------------------------------- */
:root {
 /* COLORS */
  --red:        #E20001;
  --red-d:      #C00001;
  --red-lt:     #FFF1F1;
  --red-mid:    rgba(226,0,1,0.12);
  --navy:       #0A1F44;
  --navy-lt:    #0E2A5A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-100:   #F3F4F8;
  --gray-200:   #E8EBF0;
  --gray-300:   #D1D5DB;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --text:       #1A1F2E;
  --border:     #E5E7EB;
  --green:      #16A34A;
  --amber:      #F59E0B;

  /* TYPOGRAPHY */
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* BORDER RADIUS */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 50px;

  /* SHADOWS */
  --shadow-sm:  0 2px 8px rgba(10,31,68,.07);
  --shadow:     0 4px 20px rgba(10,31,68,.10);
  --shadow-md:  0 8px 32px rgba(10,31,68,.12);
  --shadow-lg:  0 16px 48px rgba(10,31,68,.14);

  /* TRANSITIONS */
  --t:        .25s cubic-bezier(.4,0,.2,1);
  --t-slow:   .5s cubic-bezier(.16,1,.3,1);
    }

    @keyframes pulseDot {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:.45; transform:scale(.7); }
    }

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

.wpcf7-spinner{
	display:none;
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.container { width:100%; max-width:1160px; margin:0 auto; padding:0 24px; }
.text-red   { color:var(--red); }
.text-navy  { color:var(--navy); }
.text-white { color:#fff; }

.section-label {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--red-lt); color:var(--red);
  font-family:var(--font-head); font-weight:600; font-size:1.152rem;
  letter-spacing:.12em; text-transform:uppercase;
  padding:5px 14px; border-radius:var(--radius-pill);
  margin-bottom:16px;
}
.section-label i{
	font-size:1.2rem !important;
	color:var(--red) !important;
}
.section-title {
  font-family:var(--font-head);
  font-size:clamp(1.9rem,3.8vw,4.4rem)!important;
  font-weight:800 !important; color:var(--navy);
  line-height:1.15; margin-bottom:14px;
  letter-spacing:-.025em;
}
.section-sub {
  font-size:1.568rem; color:var(--gray-500);
  max-width:560px; line-height:1.75; font-weight:400; font-family: var(--font-body);
}
.text-center { text-align:center; }
.text-center .section-sub { margin:0 auto; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:1.44rem;
  padding:14px 28px; border-radius:var(--radius-pill);
  transition:var(--t); border:none; cursor:pointer;
  box-shadow:0 4px 18px rgba(226,0,1,.28);
}
.btn-primary:hover { background:var(--red-d);color:#fff; transform:translateY(-2px); box-shadow:0 8px 28px rgba(226,0,1,.38); }
.btn-navy {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--navy); color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:1.44rem!important;
  padding:14px 28px; border-radius:var(--radius-pill);
  transition:var(--t); border:none;
}
.btn-navy:hover { background:var(--navy-lt); transform:translateY(-2px); box-shadow:0 8px 28px rgba(10,31,68,.3); color:white;}
.btn-outline-red {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--red);
  font-family:var(--font-head); font-weight:700; font-size:1.44rem;
  padding:13px 28px; border-radius:var(--radius-pill);
  border:2px solid var(--red); transition:var(--t);
}
.btn-outline-red:hover { background:var(--red); color:#fff; }
.btn-outline-white {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:1.44rem;
  padding:13px 28px; border-radius:var(--radius-pill);
  border:2px solid rgba(255,255,255,.4); transition:var(--t);
}
.btn-outline-white i{
	font-size:1.6rem !important;
}
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:#fff; color:#fff;}


    .btn-primary-hero {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--red);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.44rem;
      padding: 14px 28px;
      border-radius: var(--radius-pill);
      transition: var(--t);
      box-shadow: 0 4px 18px rgba(226,0,1,.28);
    }
	.btn-primary-hero i{
		font-size: 1.44rem !important;
	}

    .btn-primary-hero:hover {
      background: var(--red-d);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(226,0,1,.38);
	  color: #fff;
    }

    .btn-outline-red-hero {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      color: var(--red);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.44rem;
      padding: 13px 28px;
      border-radius: var(--radius-pill);
      border: 2px solid var(--red);
      transition: var(--t);
    }
	.btn-outline-red-hero i{
      font-size: 1.44rem !important;
	  color: inherit !important;
	}

    .btn-outline-red-hero:hover {
      background: var(--red);
      color: #fff;
    }

    .bwc-hero {
      background: linear-gradient(150deg, #F8F9FC 0%, #FFFFFF 50%, #FFF5F5 100%);
      position: relative;
      overflow: hidden;
      padding: 72px 0 80px;
    }

    .bwc-hero::before {
      content: '';
      position: absolute;
      right: -200px;
      top: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle at center, rgba(226,0,1,.055) 0%, transparent 65%);
      pointer-events: none;
    }

    .bwc-hero::after {
      content: '';
      position: absolute;
      left: -100px;
      bottom: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle at center, rgba(10,31,68,.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .bwc-hero-grid {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
	.bwc-hero-badge-section{
	display:flex;
	gap:10px;
	}

    .bwc-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(22,163,74,.1);
      border: 1px solid rgba(22,163,74,.25);
      color: #15803D;
      font-family: var(--font-head);
      font-size: 1.16rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 20px;
    }
	.bwc-hero-badge i{
		font-size:12px!important;
	}
	.bwc-hero-badge-google {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      background: rgba(66, 133, 244, .1);
      border: 1px solid rgba(66, 133, 244,.25);
      color: #4285F4;
      font-family: var(--font-head);
      font-size: 1.168rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 20px;
    }
	.bwc-hero-badge-google img{
	width:11px;
	height:auto;
	}
	.bwc-hero-badge-google i{
		color:inherit !important;
		font-size:12px !important;
	}

    .bwc-hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #22C55E;
      border-radius: 50%;
      animation: pulseDot 1.8s infinite;
    }

    .bwc-hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 4.5vw, 5.76rem);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.1;
      margin: 0px 0px 18px !important;
      letter-spacing: -.035em;
    }

    .bwc-hero h1 .accent {
      color: var(--red);
    }

    .bwc-hero-sub {
      font-size: 1.6rem;
      color: var(--gray-500);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 500px;
      font-weight: 400;
	  font-family: var(--font-body);
    }

    .bwc-hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .bwc-hero-trust {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 1.26rem;
      font-weight: 600;
      color: var(--gray-700);
      font-family: var(--font-head);
    }

    .trust-item i {
      color: var(--red) !important;
      font-size: 1.28rem !important;
    }

    .bwc-hero-form-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      padding: 32px;
      position: relative;
    }

    .form-headline {
      font-family: var(--font-head);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .form-sub {
      font-size: 1.28rem;
      color: var(--gray-500);
      font-weight: 400;
    }
	.form-sub i{
		color:inherit !important;
		font-size: 1.28rem !important;
	}

    .form-group p{
      margin-bottom: 0px;
    }

    .form-label {
      display: block;
      font-size: 1.248rem;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 5px;
      font-family: var(--font-head);
    }

    .form-control {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-size: 1.408rem;
      color: var(--text);
      background: var(--off-white);
      transition: var(--t);
      outline: none;
	  font-family: var(--font-body);
    }

    .form-control:focus {
      border-color: var(--red);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(226,0,1,.08);
    }

    .form-control::placeholder {
      color: var(--gray-300);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-address-fields {
      /*margin-top: 14px;*/
      animation: fadeSlideIn .3s ease;
    }

    .bwc-hidden {
  display: none !important;
}

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--red);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.52rem;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      transition: var(--t);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 16px;
      box-shadow: 0 4px 18px rgba(226,0,1,.28);
    }

    .form-submit:hover {
      background: var(--red-d);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(226,0,1,.38);
    }

    .form-privacy {
      text-align: center;
      font-size: 1.15rem;
      color: var(--gray-500);
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
	  font-family: var(--font-body);
    }

    .form-privacy i {
      color: var(--gray-300) !important;
	  font-size:1.2rem !important;
    }
	

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  background:var(--navy);
  padding:36px 0;
}
.stats-grid {
  max-width:1160px; margin:0 auto; padding:0 24px;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; text-align:center;
}
.stat-item {
  padding:8px 20px;
  border-right:1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:var(--font-head); font-size:3.52rem;
  font-weight:900; color:var(--white); line-height:1;
  margin-bottom:5px;
}
.stat-num span { color:var(--red); }
.stat-label {
  font-size:1.248rem; color:rgba(255,255,255,.6);
  font-weight:400; letter-spacing:.02em;
}
	
/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { padding:90px 0; background:var(--off-white); }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:48px;
}
.service-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1.5px solid var(--border); padding:28px 24px;
  transition:var(--t); cursor:default;
  position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--red);
  transform:scaleX(0); transition:transform .3s; transform-origin:left;
}
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(226,0,1,.2); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:56px; height:56px; border-radius:var(--radius-lg);
  background:var(--red-lt); display:flex; align-items:center;
  justify-content:center; margin-bottom:18px;
}
.service-icon i { color:var(--red)!important; font-size:2.5rem!important; }
.service-name {
  font-family:var(--font-head); font-size:1.712rem;
  font-weight:800; color:var(--navy); margin-bottom:8px;
}
.service-desc { font-size:1.344rem; color:var(--gray-500); line-height:1.65; margin-bottom:16px; }
.service-bullets { margin-bottom:20px; }
.service-bullets li {
  display:flex; align-items:center; gap:8px;
  font-size:1.228rem; color:var(--gray-700); padding:3px 0;
  font-weight:500;
}
.service-bullets li i { color:var(--green); font-size:1.2rem; flex-shrink:0; }
.service-cta {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--red); font-family:var(--font-head); font-weight:700;
  font-size:1.328rem; transition:var(--t);
}
.service-cta i{
	color:var(--red) !important; font-size:1.4rem !important;
}
.service-cta:hover { gap:10px; }


/* ══════════════════════════════════════
   bwc-industries
══════════════════════════════════════ */
.bwc-industries-section { padding:90px 0; background:var(--white); }
.bwc-industries-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px; margin-top:48px;
}
.bwc-industry-card {
  border:1.5px solid var(--border); border-radius:var(--radius-lg);
  padding:24px 20px; text-align:center; transition:var(--t);
  background:var(--white);
}
.bwc-industry-card:hover { border-color:var(--red); background:var(--red-lt); transform:translateY(-3px); }
.bwc-industry-icon {
  width:52px; height:52px; border-radius:var(--radius);
  background:var(--gray-100); display:flex; align-items:center;
  justify-content:center; margin:0 auto 14px;
  transition:var(--t);
}
.bwc-industry-card:hover .bwc-industry-icon { background:rgba(226,0,1,.15); }
.bwc-industry-icon i { color:var(--navy)!important; font-size:2rem!important; transition:var(--t); }
.bwc-industry-card:hover .bwc-industry-icon i { color:var(--red)!important; }
.bwc-industry-name {
  font-family:var(--font-head); font-size:1.408rem;
  font-weight:700; color:var(--navy); margin-bottom:5px;
}
.bwc-industry-desc { font-size:1.232rem; color:var(--gray-500); line-height:1.5; }

/* ══════════════════════════════════════
   MID-PAGE CTA BAND
══════════════════════════════════════ */
.cta-band {
  background:var(--red);
  padding:40px 0; position:relative; overflow:hidden;
}
.cta-band::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='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;
}
.cta-band-inner {
  max-width:1280px; margin:0 auto; padding:0 14px;
  display:flex; align-items:center; justify-content:space-between;
  gap:32px; flex-wrap:wrap; position:relative; z-index:2;
}
.cta-band-text {}
.cta-band-label {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.19); color:#fff;
  font-family:var(--font-head); font-size:1.152rem;
  font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--radius-pill); margin-bottom:12px;
}
.cta-band-label i{
	font-size:1.2rem !important;
}
.cta-band h2 {
  font-family:var(--font-head); font-size:clamp(1.7rem,3vw,3.84rem);
  font-weight:900; color:#fff; margin-bottom:8px;
  letter-spacing:-.03em; line-height:inherit;
}
.cta-band p { font-size:1.472rem; color:rgba(255,255,255,.8); }
.cta-band-actions { display:flex; gap:12px; flex-wrap:wrap; align-items:center; flex-shrink:0; }
.btn-white {
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; color:var(--red);
  font-family:var(--font-head); font-weight:700; font-size:1.44rem;
  padding:14px 28px; border-radius:var(--radius-pill); border:none;
  transition:var(--t); cursor:pointer;
  box-shadow:0 4px 18px rgba(0,0,0,.15);
}
.btn-white i{
	font-size: 1.6rem !important;
	color: var(--red) !important;
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.22); color:var(--red);}


/* ══════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════ */
.areas-section { padding:90px 0; background:var(--off-white); }
.areas-content { max-width:1160px; margin:0 auto; padding:0 24px; }
.areas-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:48px;
}
.area-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--t);
}
.area-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(226,0,1,.25); }
.area-header {
  background:var(--navy); padding:18px 22px;
  display:flex; align-items:center; gap:12px;
}
.area-header i { color:var(--red)!important; font-size:1.6rem!important; }
.area-name {
  font-family:var(--font-head); font-size:1.68rem;
  font-weight:800; color:#fff;
}
.area-body { padding:22px; }
.area-cities {
  display:flex; flex-wrap:wrap; gap:7px;
}
.city-tag {
  background:var(--gray-100); color:var(--gray-700);
  font-size:1.2rem; font-weight:600; padding:4px 10px;
  border-radius:var(--radius-pill); transition:var(--t);
  font-family:var(--font-head);
}
.city-tag:hover { background:var(--red-lt); color:var(--red); }
.areas-cta { text-align:center; margin-top:32px; }
.btn-navy i { font-size:1.6rem!important; }


/* ===== WHY US (USP) ===== */
.usp-section{background:var(--white);padding:20px 0}
.usp-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.usp-features{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:36px}
.usp-feature{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:22px 20px;transition:var(--transition)}
.usp-feature:hover{border-color:rgba(226,0,1,.2);background:rgba(226,0,1,.03)}
.usp-feature-icon{width:44px;height:44px;background:var(--red-lt);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.usp-feature-icon i{color:var(--red)!important;font-size:2rem!important}
.usp-feature h4{font-family:var(--font-head);font-size:1.6rem;font-weight:800;color:var(--navy);margin-bottom:6px;letter-spacing:-.01em}
.usp-feature p{font-size:1.312rem;color:var(--gray-dk);line-height:1.55;font-weight:300}

/* USP VISUAL CARD */
.usp-visual{position:relative}
.usp-card-main{background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-100) 100%);border-radius:var(--radius-xl);padding:44px;color:#fff;position:relative;overflow:hidden}
.usp-card-main::before{content:'';position:absolute;top:-40px;right:-40px;width:200px;height:200px;background:radial-gradient(circle,rgba(226,0,1,.2) 0%,transparent 70%)}
.usp-card-main h3{font-family:var(--font-head);font-size:3.2rem;font-weight:800;color:var(--navy);line-height:1.1;margin-bottom:12px;position:relative;z-index:1}
.usp-card-main h3 span{color:var(--red)}
.usp-card-main p{font-size:1.472rem;color:var(--gray-500);line-height:1.65;margin-bottom:28px;font-weight:300;position:relative;z-index:1}
.usp-card-stats{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:28px;position:relative;z-index:1}
.usp-card-main i{font-size:1.6rem!important;}
.usp-card-stat{background:var(--white);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-sm);padding:16px 14px;text-align:center;backdrop-filter:blur(8px)}
.usp-card-stat strong{display:block;font-family:var(--font-head);font-size:2.56rem;font-weight:800;color:var(--navy);margin-bottom:2px}
.usp-card-stat span{font-size:1.152rem;color:var(--navy)}
.usp-floating-badge{position:absolute;bottom:-20px;right:32px;background:var(--white);border-radius:var(--radius);padding:14px 18px;box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:12px;min-width:220px}
.usp-floating-badge .badge-icon{width:40px;height:40px;background:rgba(22,163,74,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.usp-floating-badge .badge-icon i{color:var(--green);font-size:2rem!important}
.usp-floating-badge strong{display:block;font-size:1.48rem;font-weight:700;color:var(--navy)}
.usp-floating-badge span{font-size:1.152rem;color:var(--gray)}


/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.process-section { padding:90px 0; background:var(--white); }
.process-steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:28px; margin-top:20px; position:relative;
}
.process-steps::before {
  content:''; position:absolute; top:36px; left:calc(12.5% + 14px); right:calc(12.5% + 14px);
  height:2px; background:linear-gradient(90deg, var(--red), var(--red), var(--red));
  background-size:200% 100%;
  animation:flowLine 4s linear infinite;
  z-index:0; opacity:.5;
}
@keyframes flowLine {
  0% { background-position:200% 0; }
  100% { background-position:-200% 0; }
}
.step-card { text-align:center; position:relative; z-index:1; }
.step-num {
  width:72px; height:72px; border-radius:50%;
  background:var(--white); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px; position:relative; z-index:1;
  font-family:var(--font-head); font-size:2.24rem; font-weight:900; color:var(--red);
  transition:var(--t-slow);
  box-shadow:0 4px 14px rgba(10,31,68,.05);
}
.step-card:hover .step-num {
  background:var(--red); border-color:var(--red);
  color:#fff; transform:translateY(-4px) scale(1.05);
  box-shadow:0 8px 20px rgba(226,0,1,.35);
}
.step-num i {
  position:absolute; bottom:-6px; right:-6px;
  width:26px; height:26px; background:var(--navy);
  color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem!important;
  transition:var(--t);
}
.step-title {
  font-family:var(--font-head); font-size:1.632rem;
  font-weight:800; color:var(--navy); margin-bottom:8px;
}
.step-desc { font-size:1.316rem; color:var(--gray-500); line-height:1.65; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding:90px 0; background:var(--off-white); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:48px;
}
.testimonial-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:28px 24px;
  transition:var(--t);
}
.testimonial-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.stars {
  display:flex; gap:3px; margin-bottom:14px;
}
.stars i { color:#F59E0B!important; font-size:1.4rem !important; }
.review-text {
  font-size:1.4rem!important; color:var(--gray-700); line-height:1.7;font-family:var(--font-body)!important;
  margin-bottom:18px; font-style:italic;
}
.reviewer {
  display:flex; align-items:center; gap:12px;
  padding-top:16px; border-top:1px solid var(--border);
}
.reviewer-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--red); display:flex; align-items:center;
  justify-content:center; font-family:var(--font-head);
  font-weight:800; font-size:1.44rem; color:#fff; flex-shrink:0;
}
.reviewer-name {
  font-family:var(--font-head); font-size:1.408rem;
  font-weight:700; color:var(--navy);
}
.reviewer-role { font-size:1.2rem; color:var(--gray-500); }


/* ═══════════════════════════════════════════════════════
   FAQ  —  FULLY FIXED (desktop + mobile, WP-theme-safe)
═══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--white);
  padding: 88px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  max-width: 100%;
}

/* ── list wrapper ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;           /* tight gap between items */
  max-width: 100%;
}

/* ── each accordion item ── */
.faq-item {
  background: var(--off-wht);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);

  /* nuclear reset — kill any WP-theme margin/padding bleed */
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.faq-item.open {
  border-color: rgba(226,0,1,.2);
  background: #fff;
}

/* ── question row ── */
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1.472rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);

  /* stop WP themes adding margin to the row */
  margin: 0 !important;
  box-sizing: border-box;
}
.faq-q:hover { color: var(--red); }
.faq-item.open .faq-q { color: var(--red); }

/* text side of the question row */
.faq-q > *:first-child {
  flex: 1;
  min-width: 0;
}

/* ── +/× icon wrapper ── */
.faq-icon-wrap {
  width:  30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  max-height: 30px !important;
  flex: 0 0 30px !important;
  flex-shrink: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  overflow: hidden !important;
  transition: var(--transition);
}
.faq-icon-wrap i {
  font-size: 1rem !important;
  line-height: 1 !important;
  color: var(--gray-dk) !important;
  transition: transform .3s;
}
.faq-item.open .faq-icon-wrap {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.faq-item.open .faq-icon-wrap i {
  color: #fff !important;
  transform: rotate(45deg);
}

/* ── answer panel ── */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;

  /* neutralise any WP-theme <p> margins inside the answer */
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 1.408rem;
  color: var(--gray-dk);
  line-height: 1.7;
  font-weight: 300;
  box-sizing: border-box;
}

/* kill inherited WP <p> margins inside the answer */
.faq-a-inner p,
.faq-a-inner ul,
.faq-a-inner ol {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.faq-item.open .faq-a {
  max-height: 400px;   /* generous enough for any answer */
}

/* ── right-column CTA sticky card ── */
.faq-cta-block {
  background: var(--off-wht);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 96px;
}
.faq-cta-block i { font-size: 1.6rem !important; }
.faq-cta-block h3 {
  font-family: var(--font-head);
  font-size: 2.72rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.faq-cta-block p {
  font-size: 1.48rem;
  color: var(--gray-dk);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.65;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: var(--transition);
}
.contact-method:hover { border-color: rgba(226,0,1,.2); transform: translateX(4px); }
.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--red-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon i { color: var(--red) !important; font-size: 1.6rem !important; }
.contact-method-text strong { display: block; font-size: 1.48rem; font-weight: 700; color: var(--navy); }
.contact-method-text span { font-size: 1.2rem; color: var(--gray); }


/* HOME BLOG */
.home-blog { padding:20px 0; background:var(--white); }
.blog-head { display:flex; justify-content:space-between; align-items:end; margin-bottom:40px; gap:20px; flex-wrap:wrap; }
.blog-head a i{color:var(--red)!important;}
.home-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:968px){ .home-blog-grid { grid-template-columns:1fr; } }
.home-blog-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; text-decoration:none; color:inherit; transition:var(--trans); display:flex; flex-direction:column; }
.home-blog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(226,0,1,.2); }
.hbc-img { height:160px; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:48px; position:relative; overflow:hidden; }
.hbc-img::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%); }
.hbc-body { padding:24px; display:flex; flex-direction:column; gap:10px; flex:1;background:var(--off-white) }
.hbc-meta { display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--navy-2); }
.hbc-cat { background:var(--red-lt); color:var(--red); padding:3px 10px; border-radius:6px; font-weight:700; font-size:11px; letter-spacing:.3px; text-transform:uppercase; }
.home-blog-card h3 { font-family:var(--font-display); font-size:17px; color:var(--navy); font-weight:700; line-height:1.35; margin:0; }
.home-blog-card p { color:var(--navy-2); font-size:13px; line-height:1.6; margin:0; flex:1; }
.hbc-arrow { color:var(--red); font-weight:600; font-size:13px; display:inline-flex; align-items:center; gap:6px; transition:var(--trans); }
.hbc-arrow i{color:var(--red)!important;font-size:1.6rem!important;}
.home-blog-card:hover .hbc-arrow { gap:10px; }

/* ══════════════════════════════════════
   CTR 10 — GRAND FINAL CTA
══════════════════════════════════════ */
.final-cta-section {
  padding:30px 0;
  background:linear-gradient(160deg, var(--navy) 0%, #0d1f44 60%, #1a0808 100%);
  position:relative; overflow:hidden;
}
.final-cta-section::before {
  content:'';
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:800px; height:800px;
  background:radial-gradient(circle, rgba(226,0,1,.12) 0%, transparent 60%);
  pointer-events:none;
}
.final-cta-section::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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/g%3E%3C/svg%3E");
  pointer-events:none;
}
.final-cta-inner {
  max-width:1280px; margin:0 auto; padding:0 24px;
  position:relative; z-index:2;
}
.final-cta-top {
  text-align:center; margin-bottom:56px;
}
.final-cta-top .section-label { background:rgba(226,0,1,.2); color:rgba(255,255,255,.9); }
.final-cta-top .section-label i{ color:#fff!important; }
.final-cta-headline {
  font-family:var(--font-head);
  font-size:clamp(2.2rem,5vw,6.08rem);
  font-weight:900; color:#fff; line-height:1.1;
  margin-bottom:16px; letter-spacing:-.035em;
}
.final-cta-headline .accent { color:var(--red); }
.final-cta-sub { font-size:1.6rem; color:rgba(255,255,255,.6); max-width:540px; margin:0 auto; line-height:1.7; }
.final-cta-paths {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.cta-path-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-xl); padding:32px 26px;
  text-align:center; transition:var(--t); position:relative;
  overflow:hidden;
}
.cta-path-card:hover {
  background:rgba(255,255,255,.09); border-color:rgba(226,0,1,.4);
  transform:translateY(-4px); box-shadow:0 12px 40px rgba(226,0,1,.2);
}
.cta-path-card.primary-path {
  background:var(--red); border-color:var(--red);
}
.cta-path-card.primary-path:hover { background:var(--red-d); box-shadow:0 12px 40px rgba(226,0,1,.5); }
.cta-path-icon {
  width:60px; height:60px; border-radius:var(--radius-lg);
  background:rgba(255,255,255,.12); display:flex; align-items:center;
  justify-content:center; margin:0 auto 18px; font-size:1.4rem;
}
.cta-path-card.primary-path .cta-path-icon { background:rgba(255,255,255,.2); }
.cta-path-icon i { color:#fff;font-size:2.3rem!important; }
.cta-path-title {
  font-family:var(--font-head); font-size:1.76rem;
  font-weight:800; color:#fff; margin-bottom:8px;
}
.cta-path-desc { font-size:1.312rem; color:rgba(255,255,255,.6); line-height:1.6; margin-bottom:22px; }
.cta-path-card.primary-path .cta-path-desc { color:rgba(255,255,255,.8); }
.cta-path-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:13px 20px; border-radius:var(--radius-pill);
  font-family:var(--font-head); font-weight:700; font-size:1.48rem;
  border:1.5px solid rgba(255,255,255,.3); color:#fff; background:transparent;
  cursor:pointer; transition:var(--t);
}
.cta-path-btn i{font-size:1.6rem!important;}
.cta-path-btn:hover { background:#fff; border-color:#fff;color:var(--navy) }
.cta-path-btn i{
  font-size:1.6rem !important;
  color: inherit !important;
  transition: color 0.3s ease;
}
.cta-path-card.primary-path .cta-path-btn {
  background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.4);
}
.cta-path-card.primary-path .cta-path-btn:hover { background:rgba(255,255,255,.28); border-color:var(--navy)}
.final-cta-bottom {
  text-align:center; margin-top:48px;
  padding-top:40px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  gap:32px; flex-wrap:wrap;
}
.final-trust-item {
  display:flex; align-items:center; gap:8px;
  font-size:1.4rem; color:rgba(255,255,255,.55);
  font-family:var(--font-head); font-weight:500;
}
.final-trust-item i { color:var(--red)!important;font-size:1.4rem!important; }
@media (max-width:768px) {
  .final-cta-paths { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .final-cta-bottom { gap:18px; }
}

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.page-hero {
  background:linear-gradient(150deg, #F8F9FC 0%, #FFFFFF 50%, #FFF5F5 100%);
  position:relative; overflow:hidden;
  padding:56px 0 64px;
}
.page-hero::before {
  content:'';
  position:absolute; right:-220px; top:-100px;
  width:640px; height:640px;
  background:radial-gradient(circle at center, rgba(226,0,1,.06) 0%, transparent 65%);
  pointer-events:none;
  animation:floatOrb 16s ease-in-out infinite;
}
.page-hero::after {
  content:'';
  position:absolute; left:-140px; bottom:-120px;
  width:500px; height:500px;
  background:radial-gradient(circle at center, rgba(10,31,68,.05) 0%, transparent 70%);
  pointer-events:none;
  animation:floatOrb 20s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%,100% { transform:translate(0,0); }
  50% { transform:translate(30px,-20px); }
}

.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; color:var(--gray-500);
  margin-bottom:18px; font-family:var(--font-head);
  font-weight:500;
  position:relative; z-index:2;
}
.breadcrumb a {font-size:1.28rem; color:var(--gray-500)!important; transition:var(--t); }
.breadcrumb a:hover { color:var(--red); }
.breadcrumb .current { font-size:1.28rem;color:var(--navy); font-weight:700; }
.breadcrumb i { font-size:1.2rem!important; color:var(--gray-300)!important; }

.page-hero-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.4fr 1fr;
  gap:60px; align-items:center;
}
.page-hero h1 {
  font-family:var(--font-head);
  font-size:clamp(3.52rem,4.4vw,5.44rem);
  font-weight:900; color:var(--navy);
  line-height:1.1; margin-bottom:10px;
  margin-top:0;
  letter-spacing:-.035em;
}
.page-hero h1 span{
	font-size:.58em;font-weight:600;color:var(--gray-500);
}
.page-hero h1 .accent { font-size:clamp(3.52rem,4.4vw,5.44rem);font-weight:900;color:var(--red); }
.page-hero-sub {
  font-size:1.632rem; color:var(--gray-500);
  line-height:1.75; margin-bottom:28px;
  max-width:560px; font-weight:400;
}
.hero-quickstats {
  display:flex; gap:28px; margin-top:32px; flex-wrap:wrap;
}
.hero-quickstat {}
.hero-quickstat .num {
  font-family:var(--font-head);
  font-size:2.72rem; font-weight:900; color:var(--red);
  line-height:1;
}
.hero-quickstat .lbl {
  font-size:1.216rem; color:var(--gray-500);
  font-weight:600; margin-top:4px;
  font-family:var(--font-head);
  text-transform:uppercase; letter-spacing:.05em;
}

/* Service finder card */
.finder-card {
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
  padding:30px; position:relative;
  overflow:hidden;
}
.finder-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--red), var(--amber));
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
}
.finder-label {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--red-lt); color:var(--red);
  font-family:var(--font-head); font-size:1.2rem; font-weight:700;
  padding:4px 10px; border-radius:var(--radius-pill);
  letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:10px;
}
.finder-label i{
	font-size:1.2rem!important;
	color: var(--red)!important;
}
.finder-title {
  font-family:var(--font-head); font-size:1.85rem;
  font-weight:800; color:var(--navy);
  margin-bottom:5px; line-height:1.3;
}
.finder-sub {
  font-size:1.312rem; color:var(--gray-500);
  margin-bottom:20px;
}
.finder-options {
  display:grid; grid-template-columns:1fr 1fr; gap:9px;
  margin-bottom:16px;
}
.finder-opt {
  padding:11px 10px; border:1.5px solid var(--border);
  border-radius:var(--radius); text-align:center;
  cursor:pointer; transition:var(--t);
  background:var(--off-white);
  font-family:var(--font-head); font-weight:600;
  font-size:1.218rem; color:var(--gray-700);
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.finder-opt i { font-size:1.7rem!important; color:var(--red)!important; transition:var(--t); }
.finder-opt:hover { border-color:var(--red); background:var(--red-lt); color:var(--red); transform:translateY(-2px); }
.finder-opt.selected { border-color:var(--red); background:var(--red); color:#fff; }
.finder-opt.selected i { color:#fff!important; }
.finder-result {
  padding:14px 16px;
  background:linear-gradient(135deg, var(--red-lt), #FFF8F8);
  border:1.5px solid rgba(226,0,1,.2);
  border-radius:var(--radius);
  margin-top:6px; display:none;
  animation:fadeSlideIn .35s ease;
}
.finder-result.visible { display:block; }
.finder-result .match {
  font-family:var(--font-head); font-size:1.52rem;
  font-weight:800; color:var(--navy); margin-bottom:4px;
  display:flex; align-items:center; gap:7px;
}
.finder-result .match i { color:var(--green); }
.finder-result .desc { font-size:1.28rem; color:var(--gray-700); line-height:1.55; margin-bottom:12px; }
.finder-result .go {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-size:1.28rem; font-weight:700;
  padding:8px 16px; border-radius:var(--radius-pill);
  transition:var(--t);
}
.finder-result .go:hover { background:var(--red-d); transform:translateX(3px); }
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════
   SECTION 2: QUICK NAV / SERVICE ANCHORS
══════════════════════════════════════ */
.quick-nav-section {
  background:var(--navy); padding:0;
  position:sticky; top:68px; z-index:800;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.quick-nav-inner {
  max-width:80%; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; gap:0;
  overflow-x:auto; scrollbar-width:none;
}
.quick-nav-inner::-webkit-scrollbar { display:none; }
.qnav-link {
  display:flex; align-items:center; gap:7px;
  color:rgba(255,255,255,.65); font-family:var(--font-head);
  font-weight:600; font-size:1.248rem; white-space:nowrap;
  padding:14px 16px; border-bottom:2px solid transparent;
  transition:var(--t); cursor:pointer;
  text-transform:uppercase; letter-spacing:.06em;
}
.qnav-link:hover, .qnav-link.active {
  color:#fff; border-bottom-color:var(--red);
}
.qnav-link i { font-size:1.248rem!important; color:var(--red)!important; }


/* ══════════════════════════════════════
   SECTION 3: STATS BAND
══════════════════════════════════════ */
.stats-grid {
  max-width:1160px; margin:0 auto; padding:0 24px;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; text-align:center;
}
.stat-item { padding:8px 20px; border-right:1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:var(--font-head); font-size:2.4rem;
  font-weight:900; color:#fff; line-height:1; margin-bottom:5px;
}
.stat-num span { color:rgba(255,255,255,.7); font-size:1.6rem; }
.stat-label { font-size:.78rem; color:rgba(255,255,255,.75); font-weight:500; }

/* ══════════════════════════════════════
   SECTION 4–11: INDIVIDUAL SERVICE SECTIONS
══════════════════════════════════════ */
.svc-section { padding:96px 0; }
.svc-section.alt { background:var(--off-white); }
.svc-section.dark { background:var(--navy); }

.svc-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:center;
}
.svc-grid.reverse { direction:rtl; }
.svc-grid.reverse > * { direction:ltr; }

/* Visual box */
.svc-visual {
  border-radius:var(--radius-xl); overflow:hidden;
  position:relative;
}
.svc-visual-inner {
  background:linear-gradient(135deg, var(--off-white), var(--gray-100));
  padding:40px; min-height:380px;
  display:flex; flex-direction:column; justify-content:space-between;
  border:1.5px solid var(--border);
  border-radius:var(--radius-xl);
}
.svc-visual-inner.navy {
  background:linear-gradient(135deg, #0A1F44, #0E2A5A);
  border-color:rgba(255,255,255,.08);
}
.svc-badge-large {
  width:72px; height:72px; border-radius:var(--radius-lg);
  background:var(--red); display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(226,0,1,.35); margin-bottom:24px;
}
.svc-badge-large i { color:#fff!important; font-size:3rem!important; }
.svc-visual-title {
  font-family:var(--font-head); font-size:2.24rem;
  font-weight:800; color:var(--navy); margin-bottom:8px;
}
.svc-visual-inner.navy .svc-visual-title { color:#fff; }
.svc-visual-sub { font-size:1.48rem; color:var(--gray-500); line-height:1.6; margin-bottom:28px; }
.svc-visual-inner.navy .svc-visual-sub { color:rgba(255,255,255,.6); }

.svc-mini-stats {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.mini-stat {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:16px;
  text-align:center;
}
.svc-visual-inner.navy .mini-stat {
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.1);
}
.mini-stat-val {
  font-family:var(--font-head); font-size:2.4rem;
  font-weight:900; color:var(--red); line-height:1;
}
.mini-stat-lab { font-size:1.152rem; color:var(--gray-500); margin-top:3px; font-weight:500; }
.svc-visual-inner.navy .mini-stat-lab { color:rgba(255,255,255,.5); }

/* Text side */
.svc-text {}
.svc-tag {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--red-lt); color:var(--red);
  font-family:var(--font-head); font-weight:700; font-size:1.12rem;
  letter-spacing:.1em; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--radius-pill); margin-bottom:14px;
}
.svg-tag i{font-size:1.2rem!important;color:var(--red)!important;}
.svc-title {
  font-family:var(--font-head); font-size:clamp(1.7rem,3.2vw,3.68rem);
  font-weight:900; color:var(--navy); line-height:1.1;
  margin-bottom:14px; letter-spacing:-.03em;
}
.svc-desc {
  font-size:1.552rem; color:var(--gray-500); line-height:1.75;
  margin-bottom:28px;
}
.svc-features {
  display:flex; flex-direction:column; gap:14px;
  margin-bottom:32px;
}
.svc-feature {
  display:flex; align-items:flex-start; gap:13px;
}
.feat-icon {
  width:36px; height:36px; border-radius:var(--radius-sm);
  background:var(--red-lt); display:flex; align-items:center;
  justify-content:center; flex-shrink:0;
}
.feat-icon i { color:var(--red); font-size:1.4rem; }
.feat-text {}
.feat-title { font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--navy); margin-bottom:1px; }
.feat-desc { font-size:1.3rem; color:var(--gray-500); line-height:1.55; }
.svc-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.svc-ctas{font-size:1.6rem;}

/* Dark section overrides */
.svc-section.dark .svc-title { color:#fff; }
.svc-section.dark .svc-desc { color:rgba(255,255,255,.65); }
.svc-section.dark .feat-title { color:#fff; }
.svc-section.dark .feat-desc { color:rgba(255,255,255,.5); }
.svc-section.dark .feat-icon { background:rgba(255,255,255,.08); }
.svc-section.dark .svc-tag { background:rgba(226,0,1,.2); color:#ff6b6b; }
.svc-section.dark .svc-visual-inner { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.08); }

/* ══════════════════════════════════════
   SECTION 12: ALL SERVICES GRID
══════════════════════════════════════ */
.all-services-section { padding:90px 0; background:var(--off-white); }
.all-services-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:18px; margin-top:48px;
}
.all-svc-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:26px 20px;
  text-align:center; transition:var(--t); cursor:default;
  position:relative; overflow:hidden;
}
.all-svc-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--red);
  transform:scaleX(0); transition:transform .3s; transform-origin:left;
}
.all-svc-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(226,0,1,.25); }
.all-svc-card:hover::after { transform:scaleX(1); }
.all-svc-icon {
  width:56px; height:56px; border-radius:var(--radius);
  background:var(--red-lt); display:flex; align-items:center;
  justify-content:center; margin:0 auto 16px;
  transition:var(--t);
}
.all-svc-card:hover .all-svc-icon { background:var(--red); }
.all-svc-icon i { color:var(--red); font-size:2rem; transition:var(--t); }
.all-svc-card:hover .all-svc-icon i { color:#fff; }
.all-svc-name {
  font-family:var(--font-head); font-size:1.52rem; font-weight:800;
  color:var(--navy); margin-bottom:7px;
}
.all-svc-desc { font-size:1.248rem; color:var(--gray-500); line-height:1.55; margin-bottom:14px; }
.all-svc-link {
  display:inline-flex; align-items:center; gap:5px;
  color:var(--red); font-family:var(--font-head); font-weight:700;
  font-size:1.248rem; transition:var(--t);
}
.all-svc-link:hover { gap:9px; }

/* ══════════════════════════════════════
   SECTION 13: INDUSTRIES
══════════════════════════════════════ */
.industries-section { padding:90px 0; background:var(--white); }
.industries-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:18px; margin-top:48px;
}
.industry-card {
  border:1.5px solid var(--border); border-radius:var(--radius-lg);
  padding:26px 20px; text-align:center; transition:var(--t);
  background:var(--white); cursor:default;
}
.industry-card:hover { border-color:var(--red); background:var(--red-lt); transform:translateY(-3px); box-shadow:var(--shadow); }
.ind-icon {
  width:54px; height:54px; border-radius:var(--radius);
  background:var(--gray-100); display:flex; align-items:center;
  justify-content:center; margin:0 auto 14px; transition:var(--t);
}
.industry-card:hover .ind-icon { background:rgba(226,0,1,.15); }
.ind-icon i { color:var(--navy); font-size:2rem; transition:var(--t); }
.industry-card:hover .ind-icon i { color:var(--red); }
.ind-name { font-family:var(--font-head); font-size:1.44rem; font-weight:700; color:var(--navy); margin-bottom:5px; }
.ind-desc { font-size:1.232rem; color:var(--gray-500); line-height:1.5; }

/* ══════════════════════════════════════
   SECTION 14: WHY CHOOSE US
══════════════════════════════════════ */
.why-section-service { padding:90px 0; background:var(--navy); }
.why-grid-full {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:52px;
}
.why-card-full {
  background:rgba(255,255,255,.06); border:1.5px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:30px 26px; transition:var(--t);
}
.why-card-full:hover { background:rgba(255,255,255,.1); border-color:rgba(226,0,1,.4); transform:translateY(-3px); }
.why-num {
  font-family:var(--font-head); font-size:2.5rem; font-weight:900;
  color:rgba(226,0,1,.25); line-height:1; margin-bottom:16px;
}
.why-icon-box {
  width:52px; height:52px; border-radius:var(--radius);
  background:rgba(226,0,1,.15); display:flex; align-items:center;
  justify-content:center; margin-bottom:18px;
}
.why-icon-box i { color:var(--white); font-size:2rem; }
.why-card-title { font-family:var(--font-head); font-size:1.68rem; font-weight:800; color:#fff; margin-bottom:8px; }
.why-card-text { font-size:1.36rem; color:rgba(255,255,255,.6); line-height:1.65; }

/* ══════════════════════════════════════
   SECTION 15: HOW IT WORKS
══════════════════════════════════════ */
.process-section { padding:90px 0; background:var(--white); }
.process-timeline {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:28px; margin-top:52px; position:relative;
}
.process-timeline::before {
  content:'';
  position:absolute; top:32px; left:calc(12.5% + 20px); right:calc(12.5% + 20px);
  height:2px; background:linear-gradient(90deg, var(--red), var(--navy));
  z-index:0; opacity:.2;
}
.step-box { text-align:center; position:relative; z-index:1; }
.step-circle {
  width:64px; height:64px; border-radius:50%;
  background:var(--off-white); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; position:relative; z-index:1;
  transition:var(--t);
}
.step-box.active .step-circle {
  background:var(--red); border-color:var(--red);
  box-shadow:0 4px 20px rgba(226,0,1,.35);
}
.step-circle i { font-size:1.2rem; color:var(--gray-300); transition:var(--t); }
.step-box.active .step-circle i { color:#fff; font-size:2rem; }
.step-label {
  font-family:var(--font-head); font-size:1.152rem; font-weight:700;
  color:var(--red); text-transform:uppercase; letter-spacing:.1em;
  margin-bottom:6px;
}
.step-title { font-family:var(--font-head); font-size:1.6rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.step-desc { font-size:1.312rem; color:var(--gray-500); line-height:1.6; }


/* ══════════════════════════════════════
   SECTION 17: COMPLIANCE & CERTIFICATIONS
══════════════════════════════════════ */
.compliance-section { padding:90px 0; background:var(--white); }
.compliance-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:22px; margin-top:48px;
}
.compliance-card {
  text-align:center; padding:32px 22px;
  border:1.5px solid var(--border); border-radius:var(--radius-lg);
  transition:var(--t);
}
.compliance-card:hover { border-color:rgba(226,0,1,.25); box-shadow:var(--shadow); transform:translateY(-2px); }
.comp-icon {
  width:64px; height:64px; border-radius:50%;
  background:var(--red); display:flex; align-items:center;
  justify-content:center; margin:0 auto 18px;
  box-shadow:0 4px 16px rgba(226,0,1,.28);
}
.comp-icon i { color:#fff; font-size:2.3rem; }
.comp-title { font-family:var(--font-head); font-size:1.552rem; font-weight:800; color:var(--navy); margin-bottom:7px; }
.comp-desc { font-size:1.296rem; color:var(--gray-500); line-height:1.6; }

/* ══════════════════════════════════════
   SECTION 18: PRICING TIERS
══════════════════════════════════════ */
.pricing-section { padding:90px 0; background:var(--off-white); }
.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:48px;
}
.price-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-xl); padding:36px 28px;
  position:relative; overflow:hidden; transition:var(--t);
}
.price-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.price-card.featured {
  border-color:var(--red); border-width:2px;
  box-shadow:0 12px 40px rgba(226,0,1,.15);
}
.price-card.featured::before {
  content:'Most Popular';
  position:absolute; top:16px; right:16px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-size:1.2rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--radius-pill);
}
.price-name {
  font-family:var(--font-head); font-size:1.76rem;
  font-weight:800; color:var(--navy); margin-bottom:6px;
}
.price-tagline { font-size:1.328rem; color:var(--gray-500); margin-bottom:24px; }
.price-cta-text {
  font-family:var(--font-head); font-size:1.76rem;
  font-weight:800; color:var(--red); margin-bottom:24px;
}
.price-divider { height:1px; background:var(--border); margin:20px 0; }
.price-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.price-feat {
  display:flex; align-items:center; gap:9px;
  font-size:1.344rem; color:var(--gray-700); font-weight:500;
}
.price-feat i { color:var(--green); font-size:.75rem; flex-shrink:0; }
.price-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px;
  font-family:var(--font-head); font-weight:700; font-size:1.48rem;
  border-radius:var(--radius-pill); border:2px solid var(--red);
  color:var(--red); background:transparent; transition:var(--t);
  cursor:pointer;
}
.price-btn:hover, .price-card.featured .price-btn {
  background:var(--red); color:#fff;
  box-shadow:0 4px 18px rgba(226,0,1,.3);
}

/* ══════════════════════════════════════
   SECTION 19: TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding:90px 0; background:var(--white); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:22px; margin-top:48px;
}
.testimonial-card {
  background:var(--off-white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:30px 26px; transition:var(--t);
  position:relative;
}
.testimonial-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:rgba(226,0,1,.2); }
.quote-mark {
  font-family:Georgia, serif; font-size:8rem; line-height:1;
  color:var(--red); opacity:.15; position:absolute; top:8px; left:20px;
}
.reviewer-badge {
  margin-left:auto; display:flex; align-items:center; gap:4px;
  background:rgba(22,163,74,.1); color:#15803D;
  font-size:1rem; font-weight:700; padding:3px 8px; border-radius:20px;
  font-family:var(--font-head);
}

/* ══════════════════════════════════════
   SECTION 20: FAQ
══════════════════════════════════════ */
.faq-section { padding:90px 0; background:var(--off-white); }
.faq-grid {
  max-width:800px; margin:48px auto 0;
  display:flex; flex-direction:column; gap:12px;
}
.faq-item {
  border:1.5px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--t); background:var(--white);
}
.faq-item.open { border-color:rgba(226,0,1,.3); }
.faq-question {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:20px 24px; cursor:pointer; background:var(--white);
  transition:var(--t);
}
.faq-question:hover { background:var(--off-white); }
.faq-q-text { font-family:var(--font-head); font-size:1.536rem; font-weight:700; color:var(--navy); }
.faq-icon {
  width:32px; height:32px; border-radius:50%;
  background:var(--gray-100); display:flex; align-items:center;
  justify-content:center; flex-shrink:0; transition:var(--t);
}
.faq-icon i { color:var(--gray-500); font-size:1.6rem; transition:var(--t); }
.faq-item.open .faq-icon { background:var(--red); }
.faq-item.open .faq-icon i { color:#fff; transform:rotate(45deg); }
.faq-answer {
  padding:0 24px; max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height:300px; padding:0 24px 20px; }
.faq-answer p { font-size:1.48rem; color:var(--gray-500); line-height:1.75; }

/* ══════════════════════════════════════
   SECTION 21: FINAL CTA BAND
══════════════════════════════════════ */
.final-cta {
  background:linear-gradient(135deg, var(--navy) 0%, #0E2A5A 100%);
  padding:80px 0; position:relative; overflow:hidden;
}
.final-cta::before {
  content:'';
  position:absolute; right:-150px; top:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle at center, rgba(226,0,1,.12) 0%, transparent 65%);
  pointer-events:none;
}
.final-cta-inner {
  max-width:800px; margin:0 auto; padding:0 24px;
  text-align:center; position:relative; z-index:2;
}
.final-cta h2 {
  font-family:var(--font-head); font-size:clamp(4rem,4vw,4.8rem);
  font-weight:900; color:#fff; margin-bottom:16px;
  letter-spacing:-.03em;
}
.final-cta h2 span { color:var(--red); }
.final-cta p { font-size:1.568rem; color:rgba(255,255,255,.7); margin-bottom:40px; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.7; }
.final-cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.final-cta-trust {
  display:flex; align-items:center; justify-content:center;
  gap:24px; margin-top:36px; flex-wrap:wrap;
}
.final-trust-item {
  display:flex; align-items:center; gap:6px;
  font-size:1.248rem; font-weight:600; color:rgba(255,255,255,.6);
  font-family:var(--font-head);
}
.final-trust-item i { color:var(--red); }

/* ══════════════════════════════════════
   QUOTE FORM (inline)
══════════════════════════════════════ */
.inline-quote-section { padding:80px 0; background:var(--white); }
.quote-grid {
  display:grid; grid-template-columns:1fr 480px;
  gap:72px; align-items:center;
}
.quote-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-xl); box-shadow:var(--shadow-lg);
  padding:36px; position:relative;
}
.q-headline { font-family:var(--font-head); font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:4px; }
.q-sub { font-size:1.312rem; color:var(--gray-500); margin-bottom:24px; }
/*.form-group { margin-bottom:14px; }*/
.form-label { display:block; font-size:1.248rem; font-weight:600; color:var(--gray-700); margin-bottom:5px; font-family:var(--font-head); }
.form-control {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:var(--radius);
  font-size:1.4rem; color:var(--text);
  background:var(--off-white); transition:var(--t); outline:none;
}
.form-control:focus { border-color:var(--red); background:var(--white); box-shadow:0 0 0 3px rgba(226,0,1,.08); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-submit {
  width:100%; padding:14px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:1.552rem;
  border-radius:var(--radius-pill); border:none; cursor:pointer;
  transition:var(--t); display:flex; align-items:center;
  justify-content:center; gap:9px; margin-top:16px;
  box-shadow:0 4px 18px rgba(226,0,1,.28);
}
.form-submit:hover { background:var(--red-d); transform:translateY(-1px); }
.form-privacy {
  text-align:center; font-size:1.152rem; color:var(--gray-500);
  margin-top:10px; display:flex; align-items:center;
  justify-content:center; gap:5px;
}

/* ===== FOOTER ===== */
footer{background:var(--navy);color:rgba(255,255,255,.55)}
.footer-main{max-width:1200px;margin:0 auto;padding:64px 24px 40px;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:44px}
.footer-brand p{font-size:1.4rem;line-height:1.7;margin-top:16px;font-weight:300;max-width:280px}
.footer-logo img{height:60px;width:auto;border-radius:6px;}
.footer-contact-list{margin-top:24px;display:flex;flex-direction:column;gap:10px}
.footer-contact-list a{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.55);font-size:1.4rem;transition:var(--transition)}
.footer-contact-list a:hover{color:var(--red)}
.footer-contact-list i{color:var(--red);width:16px;flex-shrink:0;font-size:1.4rem!important}
.footer-col h5{font-family:var(--font-head);font-size:1.3rem;font-weight:700;color:#fff;letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:1.4rem;color:rgba(255,255,255,.45);transition:var(--transition);font-weight:300;display:flex;align-items:center;gap:6px}
.footer-links a:hover{color:#fff;padding-left:4px}
.footer-links i{font-size:.65rem;color:var(--red)}
.footer-bottom{max-width:1200px;margin:0 auto;padding:20px 24px;border-top:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px}
.footer-bottom p{font-size:1.3rem}
.footer-socials{display:flex;gap:10px}
.social-icon{width:36px;height:36px;background:rgba(255,255,255,.07);border-radius:8px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:var(--transition);font-size:1rem}
.social-icon i{font-size:1.6rem!important;}
.social-icon:hover{background:var(--red);color:#fff}

/* ── FLOATING BUTTONS ── */
.floaters { position: fixed; bottom: 28px; right: 22px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fl-call {
  position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 28px rgba(226, 0, 1, .45);
    transition: var(--t);
    cursor: pointer;
    border: 2px solid var(--red);
    animation: floatPulse 3s ease-in-out infinite;
}
.fl-call:hover { background:var(--red-d); transform:translateY(-3px) scale(1.03); box-shadow:0 10px 36px rgba(226,0,1,.55); color:#fff;}
.fl-call .sticky-icon {
  width:34px; height:34px; background:rgba(255,255,255,.18);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; flex-shrink:0;
}

.sticky-call-label { line-height:1.2; font-size:1.4rem;}
.sticky-call-label small { display:block; font-size:1rem; font-weight:500; opacity:.8; }
@keyframes floatPulse {
  0%,100% { box-shadow:0 6px 28px rgba(226,0,1,.45); }
  50% { box-shadow:0 6px 42px rgba(226,0,1,.65), 0 0 0 8px rgba(226,0,1,.1); }
}
.fl-call .ring {
  position: absolute; inset: -8px; border-radius: 100px;
  border: 2px solid var(--orange); animation: ringOut 2s ease-out infinite;
}
@keyframes ringOut { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.25);opacity:0} }
.fl-sms { display: inline-flex; align-items: center; gap: 8px; background: #16304F; color: white; text-decoration: none; padding: 11px 18px; border-radius: 100px; font-family: var(--font-d); font-weight: 700; font-size: 14px; border: 1px solid rgba(241,90,34,.3); transition: all .2s; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.fl-sms:hover { background: rgba(241,90,34,.15); border-color: var(--orange); }

@media (max-width:768px) {
.fl-call {bottom:80px;}
.sticky-call-label small{display:none;}
.fl-call .sticky-icon{width:26px;height:26px;}
.fl-call{padding:7px 12px;gap:5px;}
.fl-call .sticky-icon i{font-size:1.2rem!important;}
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  background: var(--white);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(10,31,68,.08);
  gap: 10px;
}

.sticky-mobile-cta a {
  flex: 1;
  justify-content: center;
}

@media (max-width:768px) {
  .sticky-mobile-cta {
    display: flex;
  }
}


/* ══════════════════════════════════════
   EXIT INTENT POPUP (UNIQUE / CONFLICT-SAFE)
══════════════════════════════════════ */
.bwc-exit-popup {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(10,31,68,.55) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .25s ease, visibility .25s ease !important;
  box-sizing: border-box !important;
}

.bwc-exit-popup.bwc-popup-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.bwc-exit-popup-card {
  position: relative !important;
  z-index: 1000000 !important;
  background: #fff !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.25) !important;
  max-width: 480px !important;
  width: 100% !important;
  overflow: hidden !important;
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(24px) scale(.96) !important;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease, visibility .35s ease !important;
  box-sizing: border-box !important;
}

.bwc-exit-popup.bwc-popup-active .bwc-exit-popup-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.bwc-exit-popup-top {
  background: var(--red) !important;
  padding: 28px 28px 22px !important;
  position: relative !important;
}

.bwc-exit-popup-top::before {
  content: '' !important;
  position: absolute !important;
  right: -20px !important;
  top: -20px !important;
  width: 120px !important;
  height: 120px !important;
  background: rgba(255,255,255,.08) !important;
  border-radius: 50% !important;
}

.bwc-exit-popup-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 32px !important;
  height: 32px !important;
  background: rgba(255,255,255,.15) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: .85rem !important;
  color: #fff !important;
  border: none !important;
  transition: .25s ease !important;
  appearance: none !important;
}
.bwc-exit-popup-close {
	font-size:1.4rem !important;
}

.bwc-exit-popup-close:hover {
  background: rgba(255,255,255,.25) !important;
}

.bwc-exit-popup-eyebrow {
  font-family: var(--font-head) !important;
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.75) !important;
  margin-bottom: 8px !important;
}
.bwc-exit-popup-eyebrow i{
	font-size:1.2rem !important;
}

.bwc-exit-popup-title {
  font-family: var(--font-head) !important;
  font-size: 2.48rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin-bottom: 6px !important;
}

.bwc-exit-popup-subtitle {
  font-size: 1.344rem !important;
  color: rgba(255,255,255,.78) !important;
}

.bwc-exit-popup-body {
  padding: 28px !important;
  background: #fff !important;
}

.bwc-exit-popup-submit {
  width: 100% !important;
  padding: 14px !important;
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 1.472rem !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  cursor: pointer !important;
  transition: .25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin-top: 6px !important;
  box-shadow: 0 4px 16px rgba(226,0,1,.3) !important;
  appearance: none !important;
}
.bwc-exit-popup-submit i{
	font-size:1.6rem !important;
}

.bwc-exit-popup-submit:hover {
  background: var(--red-d) !important;
  transform: translateY(-1px) !important;
}

.bwc-exit-popup-skip {
  display: block !important;
  text-align: center !important;
  margin-top: 14px !important;
  font-size: 1.248rem !important;
  color: var(--gray-500) !important;
  cursor: pointer !important;
  transition: .25s ease !important;
}

.bwc-exit-popup-skip:hover {
  color: var(--navy) !important;
}

.bwc-exit-popup-trust-row {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--border) !important;
}

.bwc-exit-popup-trust-row span {
  font-size: 1.2rem !important;
  color: var(--gray-500) !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-weight: 600 !important;
  font-family: var(--font-head) !important;
}

.bwc-exit-popup-trust-row i {
  color: var(--green) !important;
  font-size:1.2rem !important;
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.success-toast {
  position:fixed; bottom:28px; right:28px; z-index:9999;
  background:var(--navy); color:#fff;
  border-radius:var(--radius-lg); padding:16px 20px;
  display:flex; align-items:center; gap:14px;
  box-shadow:var(--shadow-lg); max-width:320px;
  transform:translateY(80px); opacity:0;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s;
  pointer-events:none;
}
.success-toast.bwc-toast-active { 
  transform:translateY(0); 
  opacity:1; 
}
.toast-icon {
  width:38px; height:38px; border-radius:50%;
  background:var(--green); display:flex; align-items:center;
  justify-content:center; flex-shrink:0; font-size:.9rem; color:#fff;
}
.toast-title { font-family:var(--font-head); font-size:.9rem; font-weight:700; color:#fff; }
.toast-sub { font-size:.75rem; color:rgba(255,255,255,.6); margin-top:2px; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity:0; transform:translateY(24px);
  transition:opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .bwc-hero { padding: 40px 0 40px; }
  .bwc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .bwc-hero h1 { font-size: clamp(3.6rem, 5vw, 3rem); text-align:center; }
  .bwc-hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .bwc-industries-grid { grid-template-columns:repeat(2,1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .floaters { display:none; }
  .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px  (MOBILE MAIN)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .logo img { width:90px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right:1px solid rgba(255,255,255,.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom:none; }
  .bwc-hero-badge-section { display:block; text-align:center; }
  .bwc-hero-badge { margin-bottom:5px; gap:4px; letter-spacing:0; }
  .bwc-hero-sub { font-size:0.9rem; margin-bottom:20px; }
  .bwc-hero-trust { display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns:1fr; }
  .bwc-industries-grid { grid-template-columns:repeat(2,1fr); }
  .cta-band-inner { flex-direction:column; text-align:center; }
  .cta-band-actions { justify-content:center; }
  .areas-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display:none; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1fr; }
  .floaters { display:none; }
  .page-hero-sub{font-size:1.35rem}
  .quick-nav-section {
        top: 60px;
    }
	.quick-nav-inner {max-width:100%}
	.svc-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
	    .all-services-grid {
        grid-template-columns: 1fr;
    }
	    .why-grid-full {
        grid-template-columns: 1fr;
    }
	    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
	.process-timeline::before{display:none;}
	.compliance-grid {grid-template-columns: 1fr;}
	.pricing-grid {grid-template-columns: 1fr;}
	.quote-grid {grid-template-columns:1fr;}

  /* ── FAQ mobile overrides ── */
  .faq-section { padding: 48px 0; }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* tighter gap between accordion items */
  .faq-list { gap: 6px; }

  .faq-item {
    border-radius: 10px;
  }

  .faq-q {
    padding: 14px 16px !important;
    font-size: 1.3rem !important;
    line-height: 1.4;
    align-items: center !important;
    /* zero out any theme margin on the row itself */
    margin: 0 !important;
  }

  /* neutralise any <p> or block tag WP puts inside .faq-q */
  .faq-q p,
  .faq-q span {
    margin: 0 !important;
    padding: 0 !important;
  }

  .faq-icon-wrap {
    width:  28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    flex: 0 0 28px !important;
  }

  .faq-icon-wrap i { font-size: 0.9rem !important; }

  .faq-a-inner {
    padding: 0 16px 14px !important;
    font-size: 1.3rem !important;
  }

  /* sticky CTA block — don't stick on mobile */
  .faq-cta-block {
    position: static;
    padding: 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  .bwc-hero-ctas { flex-direction: column; margin-bottom:20px; }
  .bwc-industries-grid { grid-template-columns:1fr 1fr; }

  /* even tighter FAQ on very small phones */
  .faq-q {
    padding: 12px 14px !important;
    font-size: 1.2rem !important;
  }
  .faq-a-inner {
    padding: 0 14px 12px !important;
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 1024px)  {
.faq-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-inner .faq-cta-block {
    width: 100%;
    padding: 12px;
}

.faq-inner .contact-method-text strong {
    font-size: 1.35rem;
}

}
@media screen and (max-width: 676px)  {
.faq-cta-block h3 {
    font-size: 2rem;
}

}

@media (max-width: 768px) {
  .since {
      font-size: 1.1rem !important;
  }
  .bwc-exit-popup-submit-wrap::before {
    left: 8% !important;
  }
}