*, *::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;
}

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

/* ── 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 {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.08em;
  color: #0d1017;
}
.logo-mark {
  background: var(--orange); color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px;
}
.logo em { font-style: normal; color: var(--orange); }

.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: rgba(255,255,255,0.75); font-size: 15px; font-weight: 700;
  padding: 12px 16px; border-radius: 5px; transition: background .2s;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); }
.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;
}

/* ── HERO ── */
.cols:has(.hero-left) {
  background: #f7f8fa;
  position: relative; overflow: hidden;
  padding: 72px 48px 0;
}
/* 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; }

.cols:has(.hero-left) 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;
}
.cols:has(.hero-left) 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;
  margin-bottom: 0;
}
.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; }*/
.main .cols { max-width: 1092px; margin: 0 auto;}
.cols:has(.hero-left) {padding-bottom: 56px;}
.cols:has(.hero-left), .cols:has(.trust) { min-width: 100%; }
.cols:has(.hero-left) .col-gap { max-width: 1092px; margin: 0 auto;}

/* ── 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 repeat {
  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;
  height: 100%;
}
.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); color: var(--charcoal); 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(--surface); border: 1px solid var(--border); 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(0,0,0,0.018) 38px, rgba(0,0,0,0.018) 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.12); border-color: var(--orange-border); }
.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: var(--text);
  line-height: 1.0; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.feat-main p {
  font-size: 14px; color: var(--muted);
  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 repeat { 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: flex-start;
  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 ── */
.cols:has(.cta-left) {
  background: var(--black); 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);
}
.cols:has(.cta-left)::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
  );
}
.cols:has(.cta-left)::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); }

/* ── 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; }

/* ── CONTENT WRAPPER ── */
.content { }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-kicker  { animation: fadeUp .45s ease .05s both; }
.cols:has(.hero-left) 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 (min-width: 1024px) {
  .item-auto-zone:has(.feat-stack),
  .item-auto-zone:has(.feat-stack) > div,
  .feat-stack,
  .feat-stack repeat,
  .feat-stack repeat a {
    height: 100%;
  }

  .feat-stack repeat a .feat-card {
    height: 100%;
    align-items: center;
  }
}

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

  .main { padding: 0 0 36px 0; }
  .cols:not(:has(.hero-left, .trust)) { padding-left: 24px; padding-right: 24px;}

  .cols:has(.hero-left) { padding: 56px 24px 0; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-left { padding-bottom: 40px; }
  .cols:has(.hero-left) 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;
    margin: 0 -24px;
  }
  .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; }

  .cat-grid repeat { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .feat-main { padding: 32px 28px; }
  .feat-stack repeat { flex-direction: row; flex-wrap: wrap; }
  .feat-stack repeat a { width: 100%;}
  .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; }

  .cols:has(.cta-left) { padding: 40px 32px; margin: 0 24px}
  footer { padding: 32px 24px; }
}


/* ═══════════════════════════════════
   MOBILE ≤ 768px
═══════════════════════════════════ */
@media (min-width: 768px) {
  .cols:has(.feat-main) > div {
    display: flex;
    gap: 12px;
  }

  .cols:has(.feat-main) > div .col-gap {
    flex: 0 0 60%;
  }

  .cols:has(.feat-main) > div .col-gap:last-child {
    flex: 0 0 40%;
  }
}

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

  .cols:has(.hero-left) { padding: 40px 16px 0; }
  .cols:has(.hero-left) 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; }
  .hero-right { margin: 0 -16px; }
  .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;}
  .ti-text { font-size: 11px; }

  .main { padding: 0 0 36px 0; }
  .cols:not(:has(.hero-left, .trust)) { padding-left: 16px; padding-right: 16px;}
  .sh-title { font-size: 26px; }

  .cat-grid repeat { 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; margin-bottom: 12px; }
  .feat-main h3 { font-size: 28px; }
  .feat-stack repeat { 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; }

  .cols:has(.cta-left) { flex-direction: column; align-items: flex-start; padding: 32px 22px; gap: 24px; margin: 0 16px}
  .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) {
  .cols:has(.hero-left) h1 { font-size: 46px; }
  .hero-ctas { flex-direction: column; }
  .btn-orange, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .cat-grid repeat { grid-template-columns: 1fr; }
  .hiw-header { padding: 18px 20px; }
}
