/* ══════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════ */
:root {
  --brand: #db0000;
  --brand-dark: #a90000;
  --brand-soft: #fff1f1;
  --brand-glow: rgba(219, 0, 0, 0.18);
  --ink: #141922;
  --text: #424b57;
  --muted: #6f7988;
  --line: #e5e9f0;
  --paper: #ffffff;
  --mist: #f7f8fb;
  --warm: #fdf9f7;
  --sh-xs: 0 4px 14px rgba(20, 25, 34, 0.06);
  --sh-sm: 0 10px 32px rgba(20, 25, 34, 0.08);
  --sh-md: 0 20px 56px rgba(20, 25, 34, 0.12);
  --sh-lg: 0 40px 96px rgba(20, 25, 34, 0.18);
  --r-sm: 16px;
  --r: 26px;
  --r-lg: 36px;
}

/* ══════════════════════════════════════════════════
   RESET / BASE
══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto
}

.section {
  padding: 92px 0
}

/* ── H2 properly sized so it doesn't force use of H3 for SEO ── */
h1,
h2,
h3 {
  font-family: "DM Sans",Arial,sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .94
}

h2 {
  font-size: 3.75rem;
  line-height: 1.08;
  font-family: "DM Sans", Arial,sans-serif;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.16
}

h1 span,
h2 span {
  color: var(--brand)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.75
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(219, 0, 0, .22)
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 18px 40px rgba(219, 0, 0, .3)
}

.btn-outline {
  background: #fff;
  border-color: rgba(219, 0, 0, .28);
  color: var(--brand)
}

.btn-outline:hover {
  background: var(--brand-soft);
  border-color: rgba(219, 0, 0, .5)
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  background: #1e2736
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em
}

.topbar-sep {
  opacity: .5;
  font-size: 16px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 25, 34, .07);
  box-shadow: 0 8px 32px rgba(20, 25, 34, .05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  max-width: none;
  padding: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand-logo img {
  height: 62px;
  width: auto
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px
}

.main-nav a {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.main-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand)
}

.main-nav .nav-cta {
  background: var(--brand);
  color: #fff;
  margin-left: 8px;
  padding: 10px 20px;
}

.main-nav .nav-cta:hover {
  background: var(--brand-dark)
}

/* ══════════════════════════════════════════════════
   HERO SLIDER — light editorial overlay
══════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 116px);
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
  background: var(--mist);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .85s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.slide.active .slide-bg {
  transform: scale(1)
}

/* Light editorial overlay — white on left fades to transparent */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .88) 30%,
      rgba(255, 255, 255, .52) 56%,
      rgba(255, 255, 255, .08) 78%,
      rgba(255, 255, 255, 0) 100%);
}

/* subtle bottom vignette for the photo side */
.slide-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 25, 34, .12) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.slide-inner {
  width: 100%;
  max-width: 640px;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: 20px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s .15s, transform .45s .15s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: none
}

/* H1 — dark text on the light overlay area */
.slide h1 {
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s .3s, transform .55s .3s;
  font-size: 52px;
  line-height: 50px;
}

.slide.active h1 {
  opacity: 1;
  transform: none; font-family: "DM Sans",Arial,sans-serif;
}

.slide h1 em {
  font-style: normal;
  color: var(--brand)
}

.slide-sub {
  margin-top: 14px;
  margin-bottom: 30px;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s .46s, transform .55s .46s;
  font-family: "DM Sans",Arial,sans-serif;
}

.slide.active .slide-sub {
  opacity: 1;
  transform: none
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s .6s, transform .5s .6s;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: none
}

/* arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  border: 1.5px solid rgba(20, 25, 34, .12);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-sm);
  padding:0px
}

.slider-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.06)
}

.slider-arrow.prev {
  left: 24px
}

.slider-arrow.next {
  right: 24px
}

/* dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(20, 25, 34, .2);
  cursor: pointer;
  transition: background .25s, width .25s;
}

.sdot.active {
  background: var(--brand);
  width: 26px
}

/* progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* slide count badge */
.slide-count {
  position: absolute;
  bottom: 28px;
  right: 80px;
  z-index: 10;
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .06em;
}

.slide-count span {
  color: var(--brand)
}

/* ══════════════════════════════════════════════════
   STATS STRIP — light version
══════════════════════════════════════════════════ */
.stats-strip {
  background: var(--paper);
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  transition: background .2s;
}

.stat-cell:last-child {
  border-right: none
}

.stat-cell:hover {
  background: var(--mist)
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--brand-soft);
  border: 1px solid rgba(219, 0, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-val {
  font-family: "DM Sans",Arial,sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-val em {
  color: var(--brand);
  font-style: normal
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 2px
}

/* ══════════════════════════════════════════════════
   PHONE RIBBON
══════════════════════════════════════════════════ */
.phone-ribbon {
  background: var(--brand-soft);
  border-bottom: 1px solid rgba(219, 0, 0, .12);
  padding: 13px 0;
  text-align: center;
}

.phone-ribbon a {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  transition: color .18s;
}

.phone-ribbon a:hover {
  color: var(--brand)
}

.phone-ribbon .sep {
  color: var(--muted);
  margin: 0 16px
}

/* ══════════════════════════════════════════════════
   DIFFERENTIATORS BAND
══════════════════════════════════════════════════ */
.diff-band {
  background: var(--ink);
  padding: 28px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.diff-item:last-child {
  border-right: none
}

.diff-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(219, 0, 0, .2);
  border: 1px solid rgba(219, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.diff-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.diff-text em {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px
}

/* ══════════════════════════════════════════════════
   SECTION HEAD (shared)
══════════════════════════════════════════════════ */
.section-head {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  margin-top: 6px;
  font-size:36px;
  font-family: "DM Sans", Arial,sans-serif;
}

.section-head.centered {
  grid-template-columns: 1fr;
  max-width: 700px;
  text-align: center
}

.section-head.centered .eyebrow {
  margin: 0 auto 14px
}

.section-head.centered .section-intro {
  margin-top: 12px
}

/* ══════════════════════════════════════════════════
   WHAT WE DELIVER — photo card carousel
══════════════════════════════════════════════════ */
.deliver-section {
  background: var(--paper)
}

.deliver-carousel {
  position: relative
}

.deliver-window {
  overflow: hidden;
  border-radius: var(--r)
}

.deliver-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.deliver-group {
  display: grid;
  grid-template-columns: .98fr .98fr .98fr;
  min-width: 100%;
  gap: 20px;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  /* min-height: 380px; */
  display: flex;
  flex-direction: column;
  background: #db0000; /* var(--ink); */
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}

.service-card.featured {
  /* min-height: 440px */
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg)
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .6s ease;
}

.service-card:hover img {
  transform: scale(1.1)
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 25, 34, .04) 0%,
      rgba(20, 25, 34, .2) 30%,
      rgba(20, 25, 34, .88) 100%);
}

.service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 28px 26px;
  color: #fff;
}

.card-tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-content h3 {
  color: #fff;
  font-size: 2.2rem;
  font-family: "DM Sans", Arial,sans-serif;
  min-height: 60px;
}

.service-content p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.6;
  max-width: 440px;
  min-height: 60px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-link-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background .18s, transform .18s;
}

.service-card:hover .card-link-arrow {
  background: var(--brand);
  transform: translateX(3px)
}

/* carousel toolbar */
.carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.carousel-counter {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .04em;
}

.carousel-counter strong {
  color: var(--brand)
}

.carousel-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: width .2s, background .2s;
}

.cdot.active {
  width: 28px;
  background: var(--brand)
}

.carousel-arrows {
  display: flex;
  gap: 10px
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
  padding: 0px;
  z-index: 999;
}

.icon-btn:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(219, 0, 0, .25);
  transform: translateY(-1px)
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════ */
.about-section {
  background: var(--mist)
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .96fr) minmax(300px, 1.04fr);
  gap: 56px;
  align-items: center;
}

.about-section .about-grid:after,
.about-section .about-grid:before,
.cta-section .container.cta-grid:after, 
.cta-section .container.cta-grid:before {
    content: '';
    display: none;
}

.about-media {
  position: relative
}

.about-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 10px solid #fff;
  box-shadow: var(--sh-lg);
}

.about-badge {
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: min(260px, 72%);
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(219, 0, 0, .16);
  border-radius: var(--r);
  box-shadow: var(--sh-md);
}

.about-badge strong {
  display: block;
  font-family: "DM Sans",Arial,sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--brand);
  line-height: .9;
}

.about-badge span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.about-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px
}

.checks {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 26px 0 32px
}

.checks li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}

.checks li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

/* ══════════════════════════════════════════════════
   HOW CAN WE HELP — asymmetric 1-featured + 2-mini
══════════════════════════════════════════════════ */
.help-section {
  background: var(--paper)
}

.help-carousel {
  position: relative
}

.help-window {
  overflow: hidden
}

.help-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.help-group {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-width: 100%;
  gap: 20px;
  align-items: stretch;
}

.help-mini-stack {
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* Featured large card */
.help-featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 44px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(219, 0, 0, .38), transparent 34%),
    linear-gradient(135deg, #141922 0%, #2a1115 60%, #111722 100%);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--sh-md);
}

.help-featured::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 34px solid rgba(255, 255, 255, .06);
}

.help-featured::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, .22), transparent);
}

.help-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg)
}

.help-num-big {
  position: absolute;
  top: 28px;
  left: 42px;
  font-family: "DM Sans",Arial,sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(219, 0, 0, .3);
  z-index: 1;
}

.help-featured-content {
  position: relative;
  z-index: 2
}

.help-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(219, 0, 0, .22);
  border: 1px solid rgba(219, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.help-featured h3 {
  color: #fff;
  font-size: 3.3rem;
  line-height: 1.1;
  margin-bottom: 12px;
  font-family: "DM Sans", Arial,sans-serif;
}

.help-featured p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.65
}

.help-featured .help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-featured .help-link-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background .18s;
}

.help-featured:hover .help-link-arrow {
  background: var(--brand)
}

/* Mini cards */
.help-mini {
  flex: 1;
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  box-shadow: var(--sh-xs);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.help-mini::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.help-mini:hover {
  border-color: rgba(219, 0, 0, .28);
  box-shadow: 0 18px 48px rgba(219, 0, 0, .1);
  transform: translateY(-4px);
}

.help-mini:hover::before {
  transform: scaleX(1)
}

.help-num-badge {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}

.help-mini:hover .help-num-badge {
  background: var(--brand);
  color: #fff
}

.help-mini h3 {
  font-size: 2.05rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: "DM Sans", Arial,sans-serif;
}

.help-mini p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

.help-mini .help-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════════ */
.process-section {
  background: var(--mist)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.process-connector {
  display: none;
}

.process-card {
  padding: 32px 28px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(219, 0, 0, .2)
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  right: -8px;
  top: -16px;
  font-family: "DM Sans",Arial,sans-serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(219, 0, 0, .07);
  line-height: 1;
  pointer-events: none;
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  border: 1px solid rgba(219, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  font-family: "DM Sans", Arial,sans-serif;
}

.process-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65
}

.process-step-label {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════
   CTA + FORM SECTION — light treatment
══════════════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(219, 0, 0, .18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(219, 0, 0, .1), transparent 26%),
    linear-gradient(135deg, #141922 0%, #2a1115 55%, #111722 100%);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
}

.cta-copy .eyebrow,
.cta-copy h2 {
  color: #fff
}

.cta-copy .eyebrow::before {
  background: #fff
}

.cta-copy p {
  color: rgba(255, 255, 255, .74);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75
}

.trust-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 700;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-lg);
}

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

.form-group {
  margin-bottom: 15px
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(219, 0, 0, .1);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 12px 28px rgba(219, 0, 0, .25);
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(219, 0, 0, .35)
}

/* ══════════════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════════════ */
.blog-section {
  background: var(--mist)
}

.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.blog-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--sh-xs);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(219, 0, 0, .2)
}

.blog-cat {
  color: var(--brand);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1.25;
  font-family: "DM Sans", Arial,sans-serif;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.65
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap .18s;
}

.blog-card:hover .blog-read {
  gap: 10px
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: #111722;
  color: rgba(255, 255, 255, .68);
  margin: 0px;
  max-width: none;
  padding-bottom: 0px;
}

.site-footer::before,
.site-footer::after {
  display: none !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .85fr .85fr 1.1fr;
  gap: 36px;
  padding: 60px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-about {
  max-width: 360px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 900;
  transition: background .18s, color .18s, border-color .18s;
}

.social-link:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand)
}

.footer-col h3 {
  color: #fff;
  font-family: "DM Sans", Arial,sans-serif;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  transition: color .18s;
}

.footer-links a:hover {
  color: var(--brand)
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 14px
}

.footer-contact a {
  color: rgba(255, 255, 255, .6);
  transition: color .18s
}

.footer-contact a:hover {
  color: var(--brand)
}

.footer-contact span {
  color: rgba(255, 255, 255, .6)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color .18s
}

.footer-bottom a:hover {
  color: #fff
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

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

.fade-up.visible {
  opacity: 1;
  transform: none
}

.fade-up:nth-child(2) {
  transition-delay: .1s
}

.fade-up:nth-child(3) {
  transition-delay: .2s
}

.fade-up:nth-child(4) {
  transition-delay: .3s
}

/* ══════════════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.float-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(219, 0, 0, .38);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.float-cta-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(219, 0, 0, .46)
}

.float-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}


.stat-icon img {
  max-width: 20px;
}

.process-icon img {
  max-width: 20px;
}


/* --- Desktop & Base Styles --- */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Dropdown Container */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger .arrow {
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Submenu Hidden by Default */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.submenu a:hover {
  background-color: #f5f5f5;
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
  .nav-item-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle {
    display: none;
  }
}

/* --- Mobile Responsive Styles (768px and below) --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 30px;
    background: 0 0;
    border: none;
    cursor: pointer;
    z-index: 101;
    align-items: center;
    background-color: #ffffff !important;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #db0000; /* Change to match your theme color */
    transition: all 0.3s ease;
    border-radius: 1px;
    margin: 3px;
  }

  /* Main Navigation Mobile Drawer */
  .main-nav {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 15px;
    align-items: flex-start;
    z-index: 99;
  }

  /* Show menu when active */
  .main-nav.active {
    display: flex;
  }

  /* Mobile Submenu Adjustments */
  .nav-item-dropdown {
    width: 100%;
  }

  .submenu {
    position: static;
    box-shadow: none;
    background-color: #fafafa;
    padding: 0;
    max-height: 0; /* Animated collapse */
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }

  /* When Submenu is toggled open on mobile */
  .nav-item-dropdown.open .submenu {
    max-height: 200px; /* Adjust based on your content height */
    margin-top: 10px;
  }

  .nav-item-dropdown.open .dropdown-trigger .arrow {
    transform: rotate(180deg);
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-cell:nth-child(2) {
    border-right: none
  }

  .stat-cell:nth-child(3) {
    border-top: 1px solid var(--line)
  }

  .stat-cell:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: none
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .diff-item:nth-child(2) {
    border-right: none
  }

  .diff-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .07)
  }

  .deliver-group {
    grid-template-columns: 1fr 1fr
  }

  .section-head {
    grid-template-columns: 1fr
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr
  }

  .about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:800px) {
  .hero-slider {
    height: 52vh;
    min-height: 420px
  }

  .slide-inner {
    padding-right: 24px
  }

  .slider-arrow {
    display: none
  }

  .section {
    padding: 68px 0
  }

  .deliver-group {
    grid-template-columns: 1fr
  }

  .help-group {
    grid-template-columns: 1fr
  }

  .help-mini-stack {
    flex-direction: row
  }

  .diff-grid {
    grid-template-columns: 1fr
  }

  .diff-item {
    border-right: none !important;
    border-top: 1px solid rgba(255, 255, 255, .07) !important
  }

  .diff-item:first-child {
    border-top: none !important
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-grid {
    grid-template-columns: 1fr 1fr
  }

  .blog-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr
  }

  /* .main-nav a:not(.nav-cta) {
    display: none
  }*/

  .section-head {
    grid-template-columns: 1fr
  }

  .help-mini-stack {
    flex-direction: column
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px
  }
}

@media(max-width:520px) {
  .process-grid {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .topbar-inner {
    flex-direction: column;
    gap: 4px
  }

  .float-cta {
    bottom: 16px;
    right: 16px
  }
}



.no-widgets .site-footer {
  margin-top: 0px !important;
}
#wpforms-10564-field_7-container {width: 48%; display: inline-block; padding: 0px !important; margin-right: 1%;}
#wpforms-10564-field_9-container {width: 48%; display: inline-block; padding: 0px;
margin-left: 1%;}
#wpforms-10564-field_2-container {width: 48%; display: inline-block; padding: 0px;
margin-right: 1%;}
#wpforms-10564-field_3-container {width: 48%; display: inline-block; padding: 0px;
margin-left: 1%;}
#wpforms-10564-field_10-container {width: 48%; display: inline-block; padding: 0px;
margin-right: 1%;}
.wpforms-container input.wpforms-field-medium {max-width: 100%;}
#wpforms-submit-10564 {background-color: #d63637; float: left; margin-top: 20px;}
div.wpforms-container-full .wpforms-field-label {margin: 6px 0 8px 0;}

#wpforms-10564-field_7 {max-width: 90%; padding: 0 5%;}
#wpforms-10564-field_9 {max-width: 90%; padding: 0 5%;}
#wpforms-10564-field_2 {max-width: 90%; padding: 0 5%;}
#wpforms-10564-field_3 {max-width: 90%; padding: 0 5%;}
#wpforms-10564-field_10 {max-width: 90%; padding: 0 5%;}