/* =========================================================
   IMMIX QUOTE PAGE V1
   Get a Quote 3 Redesign
   File: /assets/css/immix-quote-v1.css
========================================================= */

/* IMMIX-QUOTE-V1-ACTIVE */


/* =========================================================
   1. TOKENS / FOUNDATION
========================================================= */

:root {
  --ixq-shell: 1180px;
  --ixq-shell-wide: 1320px;
  --ixq-gutter: clamp(22px, 3.5vw, 56px);

  --ixq-navy-950: #071f3d;
  --ixq-navy-900: #092a50;
  --ixq-navy-850: #0b2d54;
  --ixq-navy-800: #12345d;
  --ixq-navy-700: #163f73;

  --ixq-green-750: #4f842e;
  --ixq-green-700: #568f32;
  --ixq-green-650: #5f9938;
  --ixq-green-600: #69a63d;
  --ixq-green-100: #edf6e8;
  --ixq-green-050: #f6fbf2;

  --ixq-ink: #20364d;
  --ixq-muted: #5d7187;
  --ixq-muted-2: #738397;

  --ixq-white: #ffffff;
  --ixq-page: #f5f8f4;
  --ixq-panel: rgba(255, 255, 255, 0.95);
  --ixq-panel-strong: rgba(255, 255, 255, 0.985);

  --ixq-line: rgba(18, 52, 93, 0.10);
  --ixq-line-soft: rgba(218, 226, 219, 0.82);
  --ixq-line-green: rgba(105, 166, 61, 0.30);

  --ixq-font-sans: "Open Sans", Inter, "Segoe UI", Arial, sans-serif;
  --ixq-font-serif: "Noto Serif", Georgia, "Times New Roman", serif;

  --ixq-radius-sm: 10px;
  --ixq-radius-md: 16px;
  --ixq-radius-lg: 22px;
  --ixq-radius-xl: 30px;

  --ixq-shadow-soft: 0 10px 26px rgba(9, 42, 80, 0.07);
  --ixq-shadow-card: 0 24px 60px rgba(9, 42, 80, 0.10), 0 8px 22px rgba(9, 42, 80, 0.05);
  --ixq-shadow-form: 0 30px 80px rgba(9, 42, 80, 0.14), 0 8px 24px rgba(9, 42, 80, 0.06);

  --ixq-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ixq-speed: 190ms;

  /* Replace these later with final images */

  --ixq-hero-image: url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif");
  --ixq-banner-image: linear-gradient(135deg, #0b2d54, #071f3d);
}


/* =========================================================
   2. RESET / BASE
========================================================= */

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

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--ixq-font-sans);
  color: var(--ixq-ink);
  background: var(--ixq-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}


/* =========================================================
   3. PAGE WRAPPERS
========================================================= */

.ixq-site {
  background: #ffffff;
}

.ixq-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(105, 166, 61, 0.08), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(18, 52, 93, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--ixq-page) 100%);
}

.ixq-wrap {
  width: min(100% - var(--ixq-gutter), var(--ixq-shell));
  margin-inline: auto;
}

.ixq-wrap--wide {
  width: min(100% - var(--ixq-gutter), var(--ixq-shell-wide));
  margin-inline: auto;
}

.ixq-scrollmeta {
  display: none !important;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */

.ixq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--ixq-green-650);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ixq-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.72);
}

.ixq-page h1,
.ixq-page h2,
.ixq-page h3 {
  text-wrap: balance;
}

.ixq-page p {
  text-wrap: pretty;
}

.ixq-page h1 {
  margin: 0 0 18px;
  color: var(--ixq-navy-800);
  font-family: var(--ixq-font-serif);
  font-size: clamp(52px, 5.2vw, 82px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.ixq-page h2 {
  margin: 0 0 16px;
  color: var(--ixq-navy-800);
  font-family: var(--ixq-font-serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ixq-page h3 {
  margin: 0;
  color: var(--ixq-navy-800);
  font-family: var(--ixq-font-serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ixq-lead,
.ixq-body {
  color: var(--ixq-muted);
  font-size: clamp(15.5px, 1.08vw, 17px);
  font-weight: 500;
  line-height: 1.68;
}

.ixq-lead {
  max-width: 62ch;
  margin: 0 0 18px;
}

.ixq-lead--secondary {
  margin-bottom: 0;
}


/* =========================================================
   5. BUTTONS
========================================================= */

.ixq-btn {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ixq-white) !important;
  background:
    linear-gradient(180deg, #70ab43 0%, var(--ixq-green-700) 100%);
  box-shadow:
    0 16px 34px rgba(105, 166, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform var(--ixq-speed) var(--ixq-ease),
    box-shadow var(--ixq-speed) var(--ixq-ease),
    background-color var(--ixq-speed) var(--ixq-ease);
}

.ixq-btn:hover,
.ixq-btn:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, #78b34a 0%, #4f842e 100%);
  box-shadow:
    0 20px 42px rgba(105, 166, 61, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  outline: none;
}

.ixq-btn--submit {
  width: 100%;
  margin-top: 6px;
}

.ixq-btn--outline {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(105, 166, 61, 0.65);
  box-shadow: none;
}

.ixq-btn--outline:hover,
.ixq-btn--outline:focus-visible {
  background: rgba(105, 166, 61, 0.18);
}


/* =========================================================
   6. HERO / MAIN QUOTE LAYOUT
========================================================= */

.ixq-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 6vw, 86px) 0 clamp(50px, 6vw, 82px);
  isolation: isolate;
}

.ixq-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.80) 34%,
      rgba(255,255,255,0.56) 58%,
      rgba(255,255,255,0.38) 100%
    ),
    var(--ixq-hero-image) center top / cover no-repeat;
}

.ixq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 28%, rgba(255,255,255,0.72), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(105,166,61,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(245,248,244,0.92) 100%);
}

.ixq-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 240px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(245, 248, 244, 0.94) 100%);
  pointer-events: none;
}

.ixq-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  gap: clamp(44px, 5.6vw, 78px);
  align-items: start;
}

.ixq-hero__content {
  min-width: 0;
  padding-top: clamp(8px, 2vw, 28px);
}

.ixq-hero__content > .ixq-lead {
  max-width: 58ch;
}


/* =========================================================
   7. PATHWAY SECTION
========================================================= */

.ixq-paths {
  margin-top: clamp(42px, 5vw, 66px);
}



/* =========================================================
   8. PATH CARDS
========================================================= */

.ixq-path-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ixq-white);
  border: 1px solid rgba(218, 226, 219, 0.90);
  box-shadow:
    0 18px 44px rgba(9, 42, 80, 0.075),
    0 5px 14px rgba(9, 42, 80, 0.035);
  transition:
    transform var(--ixq-speed) var(--ixq-ease),
    box-shadow var(--ixq-speed) var(--ixq-ease),
    border-color var(--ixq-speed) var(--ixq-ease);
}

.ixq-path-card + .ixq-path-card {
  margin-top: 22px;
}

.ixq-path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 166, 61, 0.34);
  box-shadow:
    0 24px 56px rgba(9, 42, 80, 0.105),
    0 7px 18px rgba(9, 42, 80, 0.045);
}

.ixq-path-card__header {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, var(--ixq-green-600) 0%, var(--ixq-green-700) 50%, #3d742e 100%);
  color: var(--ixq-white);
}

.ixq-path-card__header::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 1px;
  background: rgba(255,255,255,0.30);
}

.ixq-path-card__header h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--ixq-white);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.02;
}

.ixq-path-card__header p {
  position: relative;
  z-index: 2;
  max-width: 46ch;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
}

.ixq-path-card__body {
  padding: 26px 30px 28px;
  background:
    linear-gradient(180deg, var(--ixq-white) 0%, #fbfdf9 100%);
}

.ixq-path-card__body p {
  margin: 0 0 18px;
  color: var(--ixq-muted);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.68;
}

.ixq-path-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.ixq-path-card__body li {
  position: relative;
  padding-left: 30px;
  color: #405970;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.5;
}

.ixq-path-card__body li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, #e8f6df 26%, var(--ixq-green-600) 100%);
  box-shadow: 0 0 0 5px rgba(105, 166, 61, 0.13);
  transform: translateY(-50%);
}


/* =========================================================
   9. NOTE PANEL
========================================================= */

.ixq-paths__note {
  margin-top: 22px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(246, 251, 242, 0.94), rgba(239, 247, 235, 0.90));
  border: 1px solid rgba(105, 166, 61, 0.20);
  box-shadow:
    0 14px 32px rgba(9, 42, 80, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.ixq-paths__note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.12);
  color: var(--ixq-green-700);
}

.ixq-paths__note p {
  margin: 0;
  color: #3f566d;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.62;
}

.ixq-paths__note strong {
  color: var(--ixq-green-700);
  font-weight: 900;
}


/* =========================================================
   10. FORM CARD
========================================================= */

.ixq-form-card {
  position: sticky;
  top: 22px;
  min-width: 0;
  padding: clamp(30px, 3vw, 42px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.985) 0%, rgba(250,252,249,0.975) 100%);
  border: 1px solid rgba(218, 226, 219, 0.90);
  box-shadow: var(--ixq-shadow-form);
}

.ixq-form-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px solid rgba(105, 166, 61, 0.08);
  pointer-events: none;
}

.ixq-form-card__top {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.ixq-form-card__top .ixq-kicker {
  margin-bottom: 10px;
}

.ixq-form-card__top .ixq-kicker::after {
  display: none;
}

.ixq-form-card__top h2 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 42px);
}


/* =========================================================
   11. FORM FIELDS
========================================================= */

.ixq-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 15px;
}

.ixq-form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.ixq-form label > span {
  color: var(--ixq-navy-800);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.ixq-form label em {
  color: var(--ixq-muted-2);
  font-style: normal;
  font-weight: 700;
}

.ixq-form input,
.ixq-form select,
.ixq-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(18, 52, 93, 0.13);
  background: var(--ixq-white);
  color: var(--ixq-ink);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  box-shadow:
    inset 0 1px 1px rgba(7, 31, 61, 0.035),
    0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    border-color var(--ixq-speed) var(--ixq-ease),
    box-shadow var(--ixq-speed) var(--ixq-ease),
    background-color var(--ixq-speed) var(--ixq-ease);
}

.ixq-form textarea {
  min-height: 118px;
  resize: vertical;
}

.ixq-form input:focus,
.ixq-form select:focus,
.ixq-form textarea:focus {
  border-color: #9fcd7e;
  box-shadow:
    0 0 0 4px rgba(105, 166, 61, 0.16),
    inset 0 1px 1px rgba(7, 31, 61, 0.035);
}

.ixq-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.4L5 5.4L9 1.4' fill='none' stroke='%23568f32' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 7px;
}

.ixq-form .g-recaptcha {
  margin-top: 4px;
  overflow: hidden;
  max-width: 100%;
}


/* =========================================================
   12. NEXT STEP PANEL
========================================================= */

.ixq-next-step {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 52, 93, 0.10);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.ixq-next-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.12);
  color: var(--ixq-green-700);
}

.ixq-next-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ixq-next-step p {
  margin: 0 0 12px;
  color: var(--ixq-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.ixq-next-step a {
  color: var(--ixq-green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ixq-next-step a:hover,
.ixq-next-step a:focus-visible {
  color: var(--ixq-navy-800);
}


/* =========================================================
   13. BOTTOM CTA BANNER
========================================================= */

.ixq-bottom-cta {
  position: relative;
  padding: 0 0 clamp(64px, 6vw, 96px);
  background: var(--ixq-page);
}

.ixq-bottom-cta__box {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
  border-radius: 24px;
  color: var(--ixq-white);
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.96), rgba(9, 42, 80, 0.90)),
    var(--ixq-banner-image) center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 24px 60px rgba(9, 42, 80, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.ixq-bottom-cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(105, 166, 61, 0.18), transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 62%, rgba(255,255,255,0.12) 100%);
}

.ixq-bottom-cta__icon,
.ixq-bottom-cta h2,
.ixq-bottom-cta .ixq-btn {
  position: relative;
  z-index: 2;
}

.ixq-bottom-cta__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
}

.ixq-bottom-cta h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--ixq-white);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.04;
}

.ixq-bottom-cta .ixq-btn {
  min-width: 172px;
  white-space: nowrap;
}


/* =========================================================
   14. RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .ixq-hero__grid {
    grid-template-columns: 1fr;
    max-width: 860px;
  }

  .ixq-form-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --ixq-gutter: 24px;
  }

  .ixq-hero {
    padding: 42px 0 56px;
  }

  .ixq-page h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .ixq-paths {
    margin-top: 36px;
  }

  .ixq-path-card__header,
  .ixq-path-card__body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ixq-paths__note {
    grid-template-columns: 1fr;
  }

  .ixq-form-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .ixq-next-step {
    grid-template-columns: 1fr;
  }

  .ixq-bottom-cta__box {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ixq-bottom-cta .ixq-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ixq-page h1 {
    font-size: 42px;
  }

  .ixq-page h2 {
    font-size: 30px;
  }

  .ixq-path-card,
  .ixq-form-card,
  .ixq-bottom-cta__box {
    border-radius: 20px;
  }

  .ixq-form input,
  .ixq-form select,
  .ixq-form textarea {
    font-size: 16px;
  }
}
/* =========================================================
   QUOTE PAGE FINAL HERO + FORM LAYOUT CONSOLIDATION
   One source of truth. Keep this as the final override layer.
========================================================= */

/* Remove old page-header spacing if present */
.ixq-site .page-header,
.ixq-page .page-header {
  display: none !important;
}

/* Page shell */
.ixq-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%) !important;
}

/* Hero section */
.ixq-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  padding: clamp(46px, 4.6vw, 70px) 0 clamp(64px, 6vw, 92px) !important;
  background: #f7faf6 !important;
}

/* Background image layer: use z-index 0, not negative */
.ixq-hero__background {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 246, 0.98) 0%,
      rgba(247, 250, 246, 0.96) 28%,
      rgba(247, 250, 246, 0.88) 45%,
      rgba(247, 250, 246, 0.70) 62%,
      rgba(247, 250, 246, 0.48) 100%
    ),
    url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center top / cover no-repeat !important;
}

/* Soft lower fade */
.ixq-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 0 !important;
  height: 280px !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 246, 0) 0%,
      rgba(247, 250, 246, 0.96) 100%
    ) !important;
}

/* Disable older ::before overlay if it exists */
.ixq-hero::before {
  display: none !important;
}

/* Main layout */
.ixq-hero__inner,
.ixq-wrap.ixq-hero__inner,
.ixq-wrap.ixq-hero__grid {
  position: relative !important;
  z-index: 2 !important;
  width: min(100% - 64px, 1220px) !important;
  max-width: 1220px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(500px, 1fr) minmax(390px, 460px) !important;
  gap: clamp(34px, 4.2vw, 62px) !important;
  align-items: start !important;
}

/* Left content */
.ixq-hero__content {
  min-width: 0 !important;
  max-width: 740px !important;
  padding: 0 !important;
}

.ixq-kicker {
  margin: 0 0 12px !important;
  color: #5f9938 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
}

.ixq-kicker::after {
  width: 44px !important;
  height: 2px !important;
  background: rgba(105, 166, 61, 0.72) !important;
}

/* Main heading */
.ixq-page h1,
.ixq-hero h1,
#ixq-page-title {
  max-width: 12ch !important;
  margin: 0 0 16px !important;
  color: #12345d !important;
  font-family: var(--ixq-font-serif) !important;
  font-size: clamp(38px, 3.6vw, 56px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

/* Intro copy */
.ixq-lead {
  max-width: 62ch !important;
  margin: 0 0 12px !important;
  color: #4f6681 !important;
  font-size: clamp(14.5px, 1vw, 16px) !important;
  font-weight: 600 !important;
  line-height: 1.64 !important;
}

.ixq-lead--secondary {
  margin-bottom: 0 !important;
}

/* Path cards */
.ixq-paths {
  max-width: 700px !important;
  margin-top: clamp(28px, 3vw, 42px) !important;
  display: grid !important;
  gap: 18px !important;
}

.ixq-path-card {
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(205, 216, 209, 0.92) !important;
  box-shadow:
    0 16px 38px rgba(11, 41, 78, 0.075),
    0 4px 14px rgba(11, 41, 78, 0.035) !important;
}

.ixq-path-card + .ixq-path-card {
  margin-top: 0 !important;
}

.ixq-path-card__header {
  padding: 22px 26px 18px !important;
  background:
    linear-gradient(135deg, #66a640 0%, #4f8d33 100%) !important;
}

.ixq-path-card__header h3 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: clamp(24px, 2.1vw, 32px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.032em !important;
}

.ixq-path-card__header p {
  max-width: 52ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.93) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.ixq-path-card__body {
  padding: 22px 26px 24px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%) !important;
}

.ixq-path-card__body p {
  margin: 0 0 14px !important;
  color: #4e6680 !important;
  font-size: 14.5px !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
}

.ixq-path-card__body ul {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.ixq-path-card__body li {
  position: relative !important;
  padding-left: 22px !important;
  color: #38536f !important;
  font-size: 13.5px !important;
  font-weight: 750 !important;
  line-height: 1.45 !important;
}

.ixq-path-card__body li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.68em !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #69a63d !important;
  box-shadow: 0 0 0 4px rgba(105, 166, 61, 0.14) !important;
  transform: translateY(-50%) !important;
}

/* Note panel */
.ixq-paths__note {
  margin-top: 18px !important;
  padding: 18px 20px !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  gap: 14px !important;
  border-radius: 18px !important;
}

.ixq-paths__note-icon {
  width: 40px !important;
  height: 40px !important;
}

.ixq-paths__note p {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

/* Form card */
.ixq-form-card {
  position: relative !important;
  top: auto !important;
  align-self: start !important;
  width: 100% !important;
  max-width: 460px !important;
  margin: 0 !important;
  padding: clamp(26px, 2.5vw, 34px) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.975) !important;
  border: 1px solid rgba(205, 216, 209, 0.94) !important;
  box-shadow:
    0 24px 60px rgba(8, 40, 79, 0.13),
    0 6px 16px rgba(8, 40, 79, 0.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.ixq-form-card::before {
  display: none !important;
}

.ixq-form-card__top {
  margin-bottom: 18px !important;
}

.ixq-form-card__top h2,
#ixq-form-title {
  margin: 0 !important;
  color: #12345d !important;
  font-size: clamp(27px, 2.2vw, 36px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.038em !important;
}

.ixq-form {
  gap: 12px !important;
}

.ixq-form label > span {
  font-size: 12.5px !important;
  font-weight: 900 !important;
}

.ixq-form input,
.ixq-form select,
.ixq-form textarea {
  min-height: 46px !important;
  padding: 11px 14px !important;
  border-radius: 11px !important;
  font-size: 14.5px !important;
}

.ixq-form textarea {
  min-height: 100px !important;
}

.ixq-next-step {
  margin-top: 22px !important;
  padding-top: 20px !important;
}

.ixq-next-step h3 {
  font-size: 21px !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .ixq-hero {
    padding: 34px 0 62px !important;
  }

  .ixq-hero__background {
    background:
      linear-gradient(
        180deg,
        rgba(247, 250, 246, 0.96) 0%,
        rgba(247, 250, 246, 0.92) 44%,
        rgba(247, 250, 246, 0.88) 100%
      ),
      url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center top / cover no-repeat !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 36px, 820px) !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .ixq-hero__content,
  .ixq-paths,
  .ixq-form-card {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .ixq-hero {
    padding: 28px 0 52px !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 24px, 720px) !important;
    gap: 24px !important;
  }

  .ixq-page h1,
  .ixq-hero h1,
  #ixq-page-title {
    font-size: clamp(32px, 10vw, 42px) !important;
  }

  .ixq-form-card,
  .ixq-path-card__header,
  .ixq-path-card__body {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.ixq-bottom-cta {
  display: none !important;
}
/* =========================================================
   QUOTE PAGE FINAL HERO RESET
   Full-width background, better header spacing, no final CTA.
========================================================= */

/* Remove final CTA if still present in markup */
.ixq-bottom-cta {
  display: none !important;
}

/* Remove old theme page header if still being output */
.ixq-site .page-header,
.ixq-page .page-header {
  display: none !important;
}

/* Main page should begin clearly below the site header */
.ixq-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #f7faf6 !important;
}

/* Full-width hero band */
.ixq-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  /* This is the key top-spacing control */
  margin-top: clamp(28px, 3.5vw, 54px) !important;

  padding: clamp(48px, 5vw, 76px) 0 clamp(70px, 7vw, 100px) !important;
  background: #f7faf6 !important;
  border-top: 1px solid rgba(210, 222, 214, 0.55) !important;
  border-bottom: 1px solid rgba(210, 222, 214, 0.55) !important;
}

/* Hide the old background div so it cannot create a vertical image strip */
.ixq-hero__background {
  display: none !important;
}

/* True full-width background image */
.ixq-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;

  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 246, 0.985) 0%,
      rgba(247, 250, 246, 0.965) 26%,
      rgba(247, 250, 246, 0.88) 45%,
      rgba(247, 250, 246, 0.66) 64%,
      rgba(247, 250, 246, 0.42) 100%
    ),
    url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center center / cover no-repeat !important;
}

/* Soft bottom fade into the rest of the page */
.ixq-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  height: 260px !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 246, 0) 0%,
      rgba(247, 250, 246, 0.98) 100%
    ) !important;
}

/* Main hero content grid */
.ixq-hero__inner,
.ixq-wrap.ixq-hero__inner,
.ixq-wrap.ixq-hero__grid {
  position: relative !important;
  z-index: 3 !important;
  width: min(100% - 64px, 1220px) !important;
  max-width: 1220px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: minmax(500px, 1fr) minmax(390px, 460px) !important;
  gap: clamp(40px, 4.5vw, 68px) !important;
  align-items: start !important;
}

/* Left column */
.ixq-hero__content {
  width: 100% !important;
  max-width: 740px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

/* Top text */
.ixq-kicker {
  margin: 0 0 12px !important;
  color: #5f9938 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
}

.ixq-kicker::after {
  width: 44px !important;
  height: 2px !important;
  background: rgba(105, 166, 61, 0.72) !important;
}

.ixq-page h1,
.ixq-hero h1,
#ixq-page-title {
  max-width: 12ch !important;
  margin: 0 0 16px !important;
  color: #12345d !important;
  font-size: clamp(38px, 3.6vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

.ixq-lead {
  max-width: 62ch !important;
  margin: 0 0 12px !important;
  color: #4f6681 !important;
  font-size: clamp(14.5px, 1vw, 16px) !important;
  font-weight: 600 !important;
  line-height: 1.64 !important;
}

.ixq-lead--secondary {
  margin-bottom: 0 !important;
}

/* Cards */
.ixq-paths {
  max-width: 700px !important;
  margin-top: clamp(28px, 3vw, 42px) !important;
  display: grid !important;
  gap: 18px !important;
}

.ixq-path-card {
  margin: 0 !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.965) !important;
  border: 1px solid rgba(205, 216, 209, 0.92) !important;
  box-shadow:
    0 16px 38px rgba(11, 41, 78, 0.075),
    0 4px 14px rgba(11, 41, 78, 0.035) !important;
}

.ixq-path-card + .ixq-path-card {
  margin-top: 0 !important;
}

/* Form card */
.ixq-form-card {
  position: relative !important;
  top: auto !important;
  align-self: start !important;
  width: 100% !important;
  max-width: 460px !important;
  margin: 0 !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.978) !important;
  border: 1px solid rgba(205, 216, 209, 0.94) !important;
  box-shadow:
    0 24px 60px rgba(8, 40, 79, 0.13),
    0 6px 16px rgba(8, 40, 79, 0.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.ixq-form-card::before {
  display: none !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .ixq-hero {
    margin-top: 28px !important;
    padding: 42px 0 68px !important;
  }

  .ixq-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 250, 246, 0.97) 0%,
        rgba(247, 250, 246, 0.94) 44%,
        rgba(247, 250, 246, 0.90) 100%
      ),
      url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center top / cover no-repeat !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 36px, 820px) !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .ixq-hero__content,
  .ixq-paths,
  .ixq-form-card {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .ixq-hero {
    margin-top: 20px !important;
    padding: 34px 0 56px !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 24px, 720px) !important;
    gap: 24px !important;
  }

  .ixq-page h1,
  .ixq-hero h1,
  #ixq-page-title {
    font-size: clamp(32px, 10vw, 42px) !important;
  }
}
/* =========================================================
   QUOTE PAGE HERO FINAL NORMALIZED LAYOUT
   Goal:
   - Hero sits below header
   - Background spans full page width
   - Content stays centred and contained
   - No sideways viewport breakout
========================================================= */

/* Hide legacy/old hero background div so it cannot create a strip */
.ixq-hero__background {
  display: none !important;
}

/* Hide old theme page header if present */
.ixq-site .page-header,
.ixq-page .page-header {
  display: none !important;
}

/* Keep page normal, not shifted */
.ixq-site,
.ixq-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: #f7faf6 !important;
}

/* Full-width hero, but no viewport breakout */
.ixq-hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;

  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;

  /* Pushes hero below the header area */
  margin-top: clamp(34px, 4vw, 56px) !important;

  padding: clamp(56px, 5.8vw, 86px) 0 clamp(72px, 7vw, 104px) !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #f7faf6 !important;
  border-top: 1px solid rgba(210, 222, 214, 0.55) !important;
  border-bottom: 1px solid rgba(210, 222, 214, 0.55) !important;
}

/* True full-width background image */
.ixq-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;

  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 246, 0.985) 0%,
      rgba(247, 250, 246, 0.965) 24%,
      rgba(247, 250, 246, 0.88) 43%,
      rgba(247, 250, 246, 0.64) 64%,
      rgba(247, 250, 246, 0.38) 100%
    ),
    url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center center / cover no-repeat !important;
}

/* Soft bottom fade */
.ixq-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 1 !important;
  height: 300px !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 246, 0) 0%,
      rgba(247, 250, 246, 0.98) 100%
    ) !important;
}

/* Content stays contained and centred */
.ixq-hero__inner,
.ixq-wrap.ixq-hero__inner,
.ixq-wrap.ixq-hero__grid {
  position: relative !important;
  z-index: 3 !important;

  width: min(100% - 72px, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 450px) !important;
  gap: clamp(42px, 5vw, 70px) !important;
  align-items: start !important;
}

/* Left content column */
.ixq-hero__content {
  width: 100% !important;
  max-width: 700px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

/* Title */
#ixq-page-title,
.ixq-hero h1,
.ixq-page h1 {
  display: block !important;
  max-width: 12ch !important;
  margin: 0 0 16px !important;
  color: #12345d !important;
  font-size: clamp(40px, 3.8vw, 58px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

/* Intro copy */
.ixq-lead {
  max-width: 61ch !important;
  margin: 0 0 12px !important;
  color: #4f6681 !important;
  font-size: clamp(15px, 1vw, 16.25px) !important;
  font-weight: 600 !important;
  line-height: 1.64 !important;
}

.ixq-lead--secondary {
  margin-bottom: 0 !important;
}

/* Cards */
.ixq-paths {
  max-width: 690px !important;
  margin-top: clamp(30px, 3.2vw, 44px) !important;
  display: grid !important;
  gap: 18px !important;
}

.ixq-path-card,
.ixq-path-card + .ixq-path-card {
  margin-top: 0 !important;
}

/* Form card */
.ixq-form-card {
  position: relative !important;
  top: auto !important;
  width: 100% !important;
  max-width: 450px !important;
  margin: 0 !important;
  align-self: start !important;
  background: rgba(255, 255, 255, 0.982) !important;
  border: 1px solid rgba(205, 216, 209, 0.96) !important;
  box-shadow:
    0 26px 64px rgba(8, 40, 79, 0.14),
    0 8px 18px rgba(8, 40, 79, 0.045) !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .ixq-hero {
    margin-top: 28px !important;
    padding: 48px 0 70px !important;
  }

  .ixq-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 250, 246, 0.97) 0%,
        rgba(247, 250, 246, 0.94) 45%,
        rgba(247, 250, 246, 0.90) 100%
      ),
      url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif") center top / cover no-repeat !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 40px, 820px) !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .ixq-hero__content,
  .ixq-paths,
  .ixq-form-card {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .ixq-hero {
    margin-top: 20px !important;
    padding: 38px 0 58px !important;
  }

  .ixq-hero__inner,
  .ixq-wrap.ixq-hero__inner,
  .ixq-wrap.ixq-hero__grid {
    width: min(100% - 24px, 720px) !important;
    gap: 24px !important;
  }

  #ixq-page-title,
  .ixq-hero h1,
  .ixq-page h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }
}
/* =========================================================
   FINAL HERO VERTICAL POSITION
   Pushes the quote hero lower below the site header.
========================================================= */

.ixq-hero {
  margin-top: clamp(92px, 8vw, 132px) !important;
  padding-top: clamp(38px, 4vw, 58px) !important;
}
/* Laptop */
@media (max-width: 1280px) {
  .ixq-hero {
    margin-top: clamp(68px, 6vw, 96px) !important;
  }
}

/* Tablet */
@media (max-width: 1080px) {
  .ixq-hero {
    margin-top: 54px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .ixq-hero {
    margin-top: 34px !important;
    padding-top: 36px !important;
  }
}
/* ==========================================
   HERO POSITIONING — MORE SPACE BELOW HEADER
========================================== */

.ixq-hero {
  position: relative;
  margin-top: clamp(110px, 9vw, 150px) !important;
  padding-top: clamp(52px, 5vw, 76px) !important;
  padding-bottom: clamp(54px, 5vw, 80px) !important;
}

/* Keep the background full width while content stays contained */
.ixq-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(245, 248, 243, 0.94) 0%, rgba(245, 248, 243, 0.88) 32%, rgba(245, 248, 243, 0.66) 56%, rgba(245, 248, 243, 0.22) 76%, rgba(245, 248, 243, 0.08) 100%),
    url("https://www.immixgroup.ca/assets/images/getaquote%20copy.avif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.ixq-hero__grid,
.ixq-hero .ixq-wrap {
  position: relative;
  z-index: 1;
}

/* Large desktop refinement */
@media (min-width: 1400px) {
  .ixq-hero {
    margin-top: 132px !important;
    padding-top: 64px !important;
  }
}

/* Laptop */
@media (max-width: 1280px) {
  .ixq-hero {
    margin-top: 104px !important;
    padding-top: 52px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .ixq-hero {
    margin-top: 88px !important;
    padding-top: 44px !important;
    padding-bottom: 52px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ixq-hero {
    margin-top: 72px !important;
    padding-top: 34px !important;
    padding-bottom: 40px !important;
  }

  .ixq-hero__background {
    background-position: center top;
  }
}
/* =========================================================
   Get a Quote Page
   Reduce hero top spacing
   Paste at bottom of the quote page CSS file
   ========================================================= */

.ixq-hero,
.ixq-quote-hero,
.get-quote-hero,
.quote-hero {
  padding-top: clamp(24px, 3vw, 50px) !important;
  margin-top: 0 !important;
}

/* If the pale gap is coming from the main wrapper instead of the hero */
body.ix-quote-page main,
body.get-a-quote-page main,
.page-wrapper main {
  padding-top: 0;
}