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

:root {
  --black:       #1a1c22;
  --charcoal:    #ffffff;
  --charcoal2:   #f2f3f5;
  --charcoal3:   #e8eaed;
  --surface:     #ffffff;
  --bg:          #f2f3f5;
  --bg2:         #e8eaed;
  --border:      #e0e2e6;
  --border2:     #c8ccd4;
  --text:        #0d1017;
  --text2:       #1e2433;
  --muted:       #5a6275;
  --faint:       #9aa0b0;
  --orange:      #f4600c;
  --orange-mid:  #d95309;
  --orange-light:#ff7a30;
  --orange-dim:  rgba(244,96,12,0.10);
  --orange-border:rgba(244,96,12,0.28);
  --yellow:      #f5b800;
  --yellow-dim:  rgba(245,184,0,0.10);
  --blue:        #1a6ef5;
  --blue-dim:    rgba(26,110,245,0.09);
  --teal:        #0eb8a4;
  --teal-dim:    rgba(14,184,164,0.09);
  --white:       #ffffff;
  --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Nunito Sans', sans-serif
}

html { font-family: 'Nunito Sans', sans-serif !important; background: var(--bg); color: var(--text); }
a { text-decoration: none; color: inherit; }


.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  color: var(--text);
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 18px 0;
  color: var(--text);
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px 0;
  color: var(--text);
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px 0;
  color: var(--text);
}

.pages strong {
  font-weight: 700;
  color: var(--text);
}


table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--bg) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important
  }
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}


/* ── SPEED STRIP ── */
.speed-strip {
  background: var(--orange);
  padding: 8px 0; overflow: hidden;
}
.speed-inner {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.speed-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 0.12em; color: white;
  flex-shrink: 0;
}
.speed-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 2px solid var(--orange);
}
.logo { max-width: 150px; }
.logo a { display: flex; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: #5a6275; font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 5px; transition: all .2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: #0d1017; background: #f2f3f5; }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  border-radius: 5px; margin-left: 10px; padding: 8px 20px !important;
  font-weight: 800 !important; transition: background .2s !important;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--orange-mid) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #0d1017; border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--charcoal2); border-bottom: 2px solid var(--orange);
  padding: 16px 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); font-size: 15px; font-weight: 700;
  padding: 12px 16px; border-radius: 5px; text-align: center; transition: background .2s;
  letter-spacing: 0.02em;
}
.mobile-menu a:active { background: var(--orange-dim); }
.mobile-menu .m-cta {
  background: var(--orange); color: white !important;
  text-align: center; margin-top: 8px; border-radius: 5px;
  padding: 13px 16px; font-weight: 800 !important;
}

/* ── MAIN WRAPPER ── */
.pages .main-wrapper {
  padding: 24px 0;
}

.main-wrapper .container.main .container.layout {
  padding: 0;
}

/* ── HERO ── */
.hero {
  background: #f7f8fa;
  position: relative; overflow: hidden;
  padding: 72px 48px;
}
/* diagonal slash right side */
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  background: #eceef2;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
/* orange glow */
.hero::after {
  content: '';
  position: absolute; bottom: -60px; right: 15%;
  width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(244,96,12,0.12) 0%, transparent 65%);
}
/* speed lines texture */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute; top: 0; left: -10%; right: -10%; bottom: 0;
  background: repeating-linear-gradient(
    -8deg,
    transparent 0px, transparent 38px,
    rgba(0,0,0,0.025) 38px, rgba(0,0,0,0.025) 40px
  );
}

.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 40px; align-items: flex-end;
  position: relative; z-index: 1;
}
.hero-left { padding-bottom: 56px; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.kicker-bar { width: 32px; height: 3px; background: var(--orange); border-radius: 1px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: #0d1017; margin-bottom: 22px;
}
.hero h1 .h1-accent { color: var(--orange); display: block; }

.hero-sub {
  font-size: 15px; color: #5a6275;
  line-height: 1.7; max-width: 460px;
  margin-bottom: 36px; font-weight: 500;
}

/* CTA row */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-orange {
  background: var(--orange); color: white;
  font-size: 14px; font-weight: 900; padding: 14px 28px; border-radius: 6px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-orange:hover { background: var(--orange-mid); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(244,96,12,0.35); }
.btn-outline {
  background: transparent; color: #0d1017;
  border: 2px solid #c8ccd4;
  font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 6px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-outline:hover { border-color: #0d1017; background: rgba(0,0,0,0.04); }

/* Search */
.hero-search {
  display: flex; max-width: 500px;
  background: white;
  border: 2px solid #c8ccd4;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.hero-search input {
  flex: 1; border: none; outline: none;
  padding: 14px 18px; font-size: 14px;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text); min-width: 0;
}
.hero-search input::placeholder { color: var(--faint); }
.hero-search button {
  background: var(--orange); border: none; cursor: pointer;
  padding: 0 24px; color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px; font-weight: 900; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.hero-search button:hover { background: var(--orange-mid); }

/* Hero right — stat stack */
.hero-right {
  display: flex; flex-direction: column;
  background: #ffffff;
  border-left: 3px solid var(--orange);
  border-top: 1px solid #e0e2e6;
  border-right: 1px solid #e0e2e6;
  border-radius: 0 0 0 0;
  align-self: stretch;
  position: relative; z-index: 1;
}
.hr-label {
  padding: 18px 24px 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.14em;
  color: var(--orange); border-bottom: 1px solid #e0e2e6;
}
.quick-links { display: flex; flex-direction: column; flex: 1; }
.ql-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; border-bottom: 1px solid #e8eaed;
  cursor: pointer; transition: all .2s;
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover { background: #fff5f0; padding-left: 30px; }
.ql-icon {
  width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  background: #f2f3f5; border: 1px solid #e0e2e6;
}
.ql-body { flex: 1; min-width: 0; }
.ql-name { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.9); letter-spacing: 0.01em; }
.ql-sub  { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 1px; }
.ql-arrow { font-size: 16px; color: rgba(255,255,255,0.2); transition: all .2s; }
.ql-item:hover .ql-arrow { color: var(--orange); transform: translateX(3px); }

/* ── TRUST BAR ── */
.trust {
  background: var(--black);
  padding: 14px 48px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ti { display: flex; align-items: center; gap: 9px; }
.ti-icon { font-size: 14px; }
.ti-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.38); letter-spacing: 0.03em; }
.ti-text strong { color: rgba(255,255,255,0.82); }

/* ── MAIN ── */
main { max-width: 1140px; margin: 0 auto; padding: 60px 48px; }

/* ── SECTION HEADER ── */
.sh {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 3px solid var(--orange);
}
.sh-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.06em; color: var(--text);
}
.sh-sub { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 600; }
.sh-link { font-size: 12px; font-weight: 900; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.sh-link:hover { color: var(--orange-mid); }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 60px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 20px; cursor: pointer;
  transition: all .22s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.cat-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); border-color: var(--orange-border); }
.cat-card:hover::before { transform: scaleX(1); }
/* variant colors */
.cat-card.cv-yellow::before  { background: var(--yellow); }
.cat-card.cv-blue::before    { background: var(--blue); }
.cat-card.cv-teal::before    { background: var(--teal); }
.cat-card.cv-charcoal::before{ background: var(--charcoal); }
.cc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.cc-icon { font-size: 28px; line-height: 1; }
.cc-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 4px;
}
.cb-orange  { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange-border); }
.cb-yellow  { background: var(--yellow-dim); color: #9a7200; border: 1px solid rgba(245,184,0,0.3); }
.cb-blue    { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(26,110,245,0.22); }
.cb-teal    { background: var(--teal-dim); color: #077d70; border: 1px solid rgba(14,184,164,0.25); }
.cb-dark    { background: rgba(17,19,24,0.08); border: 1px solid rgba(17,19,24,0.18); }
.cc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.04em; color: var(--text);
  margin-bottom: 7px; line-height: 1.1;
}
.cc-desc { font-size: 12px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.cc-count { font-size: 11px; font-weight: 800; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── FEATURED STRIP ── */
.featured-strip {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 14px; margin-bottom: 60px;
}
.feat-main {
  background: var(--charcoal); border-radius: 12px; padding: 42px 38px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: box-shadow .2s;
  display: flex; flex-direction: column;
}
.feat-main::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -8deg, transparent 0px, transparent 38px,
    rgba(255,255,255,0.012) 38px, rgba(255,255,255,0.012) 40px
  );
  pointer-events: none;
}
.feat-main::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.feat-main:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.fm-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--orange); background: var(--orange-dim); border: 1px solid var(--orange-border);
  border-radius: 4px; padding: 4px 10px; margin-bottom: 20px;
  display: inline-block; position: relative; z-index: 1;
}
.feat-main h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 0.04em; color: white;
  line-height: 1.0; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.feat-main p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 28px; flex: 1;
  position: relative; z-index: 1;
}
.fm-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: white;
  font-size: 13px; font-weight: 900; padding: 11px 22px; border-radius: 6px;
  cursor: pointer; transition: background .2s;
  position: relative; z-index: 1; align-self: flex-start;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.feat-main:hover .fm-cta { background: var(--orange-mid); }

.feat-stack { display: flex; flex-direction: column; gap: 12px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; cursor: pointer;
  display: flex; gap: 14px; align-items: center;
  transition: all .2s; flex: 1;
}
.feat-card:hover { border-color: var(--orange-border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateX(3px); }
.fc-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: var(--bg2); border: 1px solid var(--border);
}
.fc-cat { font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 4px; }
.fc-title { font-size: 13px; font-weight: 800; color: var(--text2); line-height: 1.4; margin-bottom: 2px; transition: color .2s; }
.feat-card:hover .fc-title { color: var(--orange); }
.fc-meta { font-size: 11px; color: var(--faint); }

/* ── HOW IT WORKS ── */
.hiw-block {
  background: #ffffff; border-radius: 12px; overflow: hidden;
  margin-bottom: 60px; border: 1px solid #e0e2e6;
}
.hiw-header {
  background: #1a1c22; padding: 22px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.hiw-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.08em; color: white;
}
.hiw-header-sub { font-size: 13px; color: rgba(255,255,255,0.38); font-weight: 600; }
.hiw-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hiw-step {
  padding: 28px 26px; border-right: 1px solid #e0e2e6;
  transition: background .2s; cursor: pointer;
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-step:hover { background: #fff5f0; }
.hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; line-height: 1; letter-spacing: 0.02em;
  color: #e0e2e6; margin-bottom: 12px;
  transition: color .2s;
}
.hiw-step:hover .hs-num { color: var(--orange); opacity: 0.5; }
.hs-title { font-size: 14px; font-weight: 900; color: #0d1017; margin-bottom: 7px; letter-spacing: 0.02em; }
.hs-desc { font-size: 13px; color: #5a6275; line-height: 1.6; }

/* ── POPULAR TAGS ── */
.tags-section { margin-bottom: 60px; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 5px; padding: 9px 18px;
  font-size: 13px; font-weight: 800; color: var(--text2);
  cursor: pointer; transition: all .2s; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 7px;
}
.tag-pill:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); transform: translateY(-1px); }
.tag-pill .tp-emoji { font-size: 15px; }

/* ── CTA BANNER ── */
.cta-block {
  background: var(--charcoal); border-radius: 12px; padding: 52px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; margin-bottom: 52px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  border-top: 3px solid var(--orange);
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -8deg, transparent 0px, transparent 38px,
    rgba(255,255,255,0.012) 38px, rgba(255,255,255,0.012) 40px
  );
}
.cta-block::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(244,96,12,0.1), transparent 65%);
}
.cta-left { position: relative; z-index: 1; }
.cta-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 0.06em; color: white;
  margin-bottom: 8px; line-height: 1;
}
.cta-left p { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500; }
.cta-form { display: flex; gap: 10px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-form input {
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
  color: white; padding: 13px 18px; border-radius: 6px;
  font-size: 14px; font-family: 'Nunito Sans', sans-serif;
  outline: none; width: 220px; min-width: 0; transition: border-color .2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus { border-color: var(--orange); }
.cta-form button {
  background: var(--orange); color: white; border: none; cursor: pointer;
  padding: 13px 26px; border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px; font-weight: 900; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: background .2s;
}
.cta-form button:hover { background: var(--orange-mid); }


/* ── CONTACT US FORM ── */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}
#contact-form input,
#contact-form textarea {
  flex: 1; border: 1px solid var(--border); border-radius: 6px; outline: none;
  padding: 14px 18px; font-size: 14px;
  color: var(--text); min-width: 100%;
}

#contact-form input:active,
#contact-form textarea:active,
#contact-form input:focus,
#contact-form textarea:focus {
  border: 1px solid var(--border2)
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {color: var(--faint);}

#contact-form button {
  background: var(--orange); border: none; border-radius: 6px; cursor: pointer;
  padding: 16px; color: white;
  font-size: 13px; font-weight: 900; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s; white-space: nowrap; width: 100%;
}
#contact-form button:hover { background: var(--orange-mid); }


/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 2px solid var(--orange);
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.foot-brand { display: flex; flex-direction: column; gap: 10px; }
.foot-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.08em; color: white;
}
.foot-logo em { font-style: normal; color: var(--orange); }
.foot-tagline { font-size: 12px; color: rgba(255,255,255,0.28); max-width: 240px; line-height: 1.6; }
.foot-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 700; transition: color .2s; letter-spacing: 0.02em; }
.foot-links a:hover { color: rgba(255,255,255,0.7); }
.foot-disclaimer { font-size: 11px; color: rgba(255,255,255,0.18); line-height: 1.55; max-width: 420px; text-align: right; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-kicker  { animation: fadeUp .45s ease .05s both; }
.hero h1      { animation: fadeUp .45s ease .12s both; }
.hero-sub     { animation: fadeUp .45s ease .19s both; }
.hero-ctas    { animation: fadeUp .45s ease .26s both; }
.hero-search  { animation: fadeUp .45s ease .32s both; }
.hero-right   { animation: fadeUp .45s ease .18s both; }


/* ═══════════════════════════════════
   TABLET ≤ 1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .speed-strip { display: none; }

  .hero { padding: 56px 24px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-left { padding-bottom: 40px; }
  .hero h1 { font-size: clamp(56px, 9vw, 80px); }
  .hero-sub { max-width: 100%; }
  .hero-search { max-width: 100%; }
  .hero-right {
    border-left: none; border-top: 2px solid var(--orange);
    flex-direction: row; flex-wrap: wrap;
  }
  .hr-label { width: 100%; padding: 14px 24px 10px; }
  .quick-links { flex-direction: row; flex-wrap: wrap; }
  .ql-item { flex: 1; min-width: 200px; border-right: 1px solid rgba(255,255,255,0.05); border-bottom: none; }
  .ql-item:last-child { border-right: none; }

  .trust { padding: 14px 24px; gap: 28px; }
  main { padding: 48px 24px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .feat-main { padding: 32px 28px; }
  .feat-stack { flex-direction: row; flex-wrap: wrap; }
  .feat-card { flex: 1; min-width: 180px; }

  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-step:nth-child(2) { border-right: none; }
  .hiw-step:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .hiw-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }

  .cta-block { padding: 40px 32px; }
  footer { padding: 32px 24px; }
}

/* ═══════════════════════════════════
   MOBILE LARGE > 990px
═══════════════════════════════════ */

@media (max-width: 990px) {
  nav { padding: 0 16px; height: 58px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 58px; }
}

/* ═══════════════════════════════════
   MOBILE ≤ 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: clamp(52px, 12vw, 72px); }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; }
  .btn-orange, .btn-outline { font-size: 13px; padding: 12px 20px; }
  .hero-search input { padding: 12px 14px; }
  .hero-search button { padding: 0 16px; font-size: 12px; }
  .quick-links { flex-direction: column; }
  .ql-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); min-width: 0; }

  .trust { padding: 12px 16px; gap: 16px; justify-content: justify; }
  .ti-text { font-size: 11px; }

  main { padding: 36px 16px; }
  .sh-title { font-size: 26px; }

  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 18px 14px; }
  .cc-desc { display: none; }

  .featured-strip { gap: 12px; }
  .feat-main { padding: 28px 22px; }
  .feat-main h3 { font-size: 28px; }
  .feat-stack { flex-direction: column; }

  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 20px;
    display: flex; gap: 16px; align-items: flex-start;
  }
  .hiw-step:last-child { border-bottom: none; }
  .hiw-step:nth-child(3), .hiw-step:nth-child(4) { border-top: none; }
  .hs-num { font-size: 40px; margin-bottom: 0; flex-shrink: 0; width: 48px; }
  .hs-body { flex: 1; }

  .tags-wrap { gap: 8px; }
  .tag-pill { font-size: 12px; padding: 8px 14px; }

  .cta-block { flex-direction: column; align-items: flex-start; padding: 32px 22px; gap: 24px; }
  .cta-left h2 { font-size: 30px; }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; }
  .cta-form button { width: 100%; text-align: center; padding: 14px; }

  footer { flex-direction: column; gap: 20px; padding: 28px 16px; }
  .foot-right { align-items: flex-start; }
  .foot-disclaimer { text-align: left; }
  .foot-links { gap: 14px; }
}


/* ═══════════════════════════════════
   SMALL MOBILE ≤ 480px
═══════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: 46px; }
  .hero-ctas { flex-direction: column; }
  .btn-orange, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; }
  .hiw-header { padding: 18px 20px; }
}






/* ═══════════════════════════════════
            WIDGETS
═══════════════════════════════════ */

.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* ---- SUBLIST ---- */

.item-sublist a {
 width: 100%;
 height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out
}

.bubbles-chip:hover {
  background: var(--orange-dim);
  border-color: var(--orange-mid);
  padding-left: 20px
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--orange-border);
  border-color: var(--orange-border);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.col-gap:has(> .item-bubbles)::before {display: none !important}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23f4600c'/%3E%3C/svg%3E%0A");
  position: absolute;
  right:16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out
}

.bubbles-chip:hover::after {
  right: 10px;
}



/* SUBLIST CARDS */

.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-2);
  transition: all 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  color: var(--orange);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {

  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin:0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
