/* IT Max — Security LP styles */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; }

:root {
  --container: 1600px;
  --pad: 80px;
  --display-font: var(--font-display);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}
.eyebrow--mono { color: var(--ink-500); }
.eyebrow--inv { color: rgba(255,255,255,0.7); }

.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink-900);
  text-wrap: balance;
  margin: 0;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--ink-900);
  text-wrap: balance;
  margin: 0;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.05;
  color: var(--ink-900);
  text-wrap: balance;
  margin: 0;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0;
}
.body-lg { font-size: 18px; line-height: 1.55; color: var(--fg-2); margin: 0; text-wrap: pretty; }
.body { font-size: 16px; line-height: 1.55; color: var(--fg-2); margin: 0; text-wrap: pretty; }
.muted { color: var(--fg-3); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 120ms var(--ease-out), box-shadow 200ms var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 12px 32px rgba(222,22,22,0.28);
}
.btn--primary:hover { background: var(--brand-red-hover); }
.btn--primary:active { background: var(--brand-red-press); transform: translateY(1px); box-shadow: 0 6px 16px rgba(222,22,22,0.22); }
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-300);
}
.btn--ghost:hover { border-color: var(--ink-700); }
.btn--inverse {
  background: #fff;
  color: var(--ink-900);
}
.btn--inverse:hover { background: var(--ink-100); }
.btn--block { width: 100%; padding: 16px 24px; font-size: 16px; white-space: wrap; }

.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* Top utility bar */
.utility {
  background: var(--ink-900);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.utility__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.utility__url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
}
.utility__url svg { color: rgba(255,255,255,0.45); }
.utility__right { display: flex; align-items: center; gap: 28px; }
.utility__group { display: inline-flex; align-items: center; gap: 8px; }
.utility__group svg { color: var(--brand-red); }
.utility__group--phone svg { color: rgba(255,255,255,0.55); }
.utility__sep { width: 1px; height: 14px; background: rgba(255,255,255,0.14); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-200);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__left { display: flex; align-items: center; gap: 36px; }
.header__logo { 
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 51 / 31;
}
.header__nav { display: flex; gap: 28px; }
.header__nav a { font-size: 14px; font-weight: 500; color: var(--ink-700); transition: color 120ms var(--ease-out); }
.header__nav a:hover { color: var(--brand-red); }
.header__cta { padding: 10px 18px; font-size: 14px; border-radius: 8px; }

/* Hero */
.hero {
  background: var(--hero-bg, var(--paper));
  color: var(--hero-fg, var(--ink-900));
  padding: 64px 0 96px;
  position: relative;
  /* overflow: hidden; */
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.hero--dark {
  --hero-bg: #0F0F10;
  --hero-fg: #ffffff;
}
.hero--dark .hero__h1 { color: #fff; }
.hero--dark .hero__lede { color: rgba(255,255,255,0.72); }
.hero--dark .hero__bullets li { color: rgba(255,255,255,0.88); }
.hero--dark .hero__bullets strong { color: #fff; }
.hero--dark .hero__assurances { border-top-color: rgba(255,255,255,0.10); }
.hero--dark .hero__assurance { color: rgba(255,255,255,0.72); }
.hero--dark .hero__alert { background: rgba(222,22,22,0.18); color: #ff8d8d; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: start;
}
.hero__alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1.hero__h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.0;
  color: var(--ink-900);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__h1 em { font-style: normal; color: var(--brand-red); }
.hero__lede {
  font-size: 19px;
  line-height: var(--lede-line-height, 1.7);
  letter-spacing: var(--lede-letter-spacing, 0.1px);
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero--dark .hero__lede strong { color: #fff; }
.hero__lede strong { color: var(--ink-900); font-weight: 700; }
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.hero__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg-1);
}
.hero__bullets svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand-red);
  margin-top: 2px;
}
.hero__bullets strong { font-weight: 700; color: var(--ink-900); }
.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.hero__assurance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
}
.hero__assurance svg { color: var(--brand-red); width: 16px; height: 16px; }

/* Form card */
.form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--ink-200);
  box-shadow: 0 24px 64px rgba(15,15,16,0.10), 0 4px 8px rgba(15,15,16,0.04);
  overflow: hidden;
  position: sticky;
  top: 92px;
}
.form-card__head {
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--ink-200);
  background: linear-gradient(180deg, #fff, var(--ink-050));
}
.form-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.form-card__sub {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}
.form-card__sub svg { width: 14px; height: 14px; color: var(--ink-500); flex: 0 0 auto; }
.form-card__body { padding: 24px 24px 5px; }
.field { margin-bottom: 16px; }
.field__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.field__input,
.field__select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--ink-300);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color 120ms var(--ease-out), box-shadow 120ms var(--ease-out);
  font-family: inherit;
}
.field__input:focus,
.field__select:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px var(--brand-red-glow);
}
.field__input--invalid input {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px var(--brand-red-glow);
}
.field__error {
  font-size: 12.5px;
  color: var(--brand-red);
  font-weight: 500;
  margin-top: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}
[hidden] { display: none !important; }
.field__error svg { width: 14px; height: 14px; }
.field__phone {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
}
.field__phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid var(--ink-300);
  border-radius: 10px;
  background: var(--ink-050);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  gap: 6px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-card__footer {
  padding: 0 32px 28px;
}
.form-card__assurance {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--fg-3);
  text-align: center;
  line-height: 1.4;
}

/* Logos / trust band */
.trust-band {
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-050);
  padding: 32px 0;
}
.trust-band__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-band__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  flex: 0 0 auto;
  max-width: 220px;
  line-height: 1.4;
}
.trust-band__chips {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink-700);
}
.trust-chip svg { width: 18px; height: 18px; color: var(--brand-red); }
.trust-band__metric {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.trust-band__metric-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-band__metric-num em { color: var(--brand-red); font-style: normal; }
.trust-band__metric-lbl {
  font-size: 11.5px;
  color: var(--fg-3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Quote band */
.quote-band {
  background: var(--ink-900);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 280px at 90% 110%, rgba(222,22,22,0.18), transparent 70%);
  pointer-events: none;
}
.quote-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.quote-band__bolt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--brand-red);
  color: #fff;
  flex: 0 0 auto;
}
.quote-band__bolt svg { width: 28px; height: 28px; }
.quote-band__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 6px;
  color: #fff;
}
.quote-band__body { font-size: 15.5px; color: rgba(255,255,255,0.7); margin: 0; max-width: 760px; line-height: 1.55; }

/* Sections */
.section { padding: 60px 0; }
.section--tight { padding: 88px 0; }
.section--alt { background: var(--ink-050); }
.section--dark { background: var(--ink-900); color: #fff; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.0;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}
.section__title em { font-style: normal; color: var(--brand-red); }
.section__sub {
  font-size: 17px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
  max-width: 520px;
}

/* Topics grid */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  overflow: hidden;
}
.topic {
  background: #fff;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 200ms var(--ease-out);
}
.topic:hover { background: #fff; }
.topic:hover .topic__num { color: var(--brand-red); }
.topic__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.topic__lead {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #FCE4E4;
  color: #DE1616;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.topic__lead svg { width: 26px; height: 26px; stroke-width: 2; }
.topic__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink-300);
  line-height: 1;
  transition: color 200ms var(--ease-out);
  font-variant-numeric: tabular-nums;
}
.topic__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.topic__icon svg { width: 20px; height: 20px; }
.topic__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
}
.topic__q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}
.topic__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}
.topic__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--ink-100);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.005em;
}

.topics-cta {
  text-align: center;
  margin-top: 48px;
}

/* FAQ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--ink-200);
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-200); }
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  transition: color 200ms var(--ease-out);
}
.faq-item__btn:hover { color: var(--brand-red); }
.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--ink-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out);
  color: var(--ink-700);
}
.faq-item--open .faq-item__icon {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.faq-item__icon svg { width: 16px; height: 16px; transition: transform 240ms var(--ease-out); }
.faq-item--open .faq-item__icon svg { transform: rotate(180deg); }
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-out);
}
.faq-item--open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner {
  overflow: hidden;
}
.faq-item__answer-inner > div {
  padding: 0 4px 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 760px;
}

/* Final CTA */
.final-cta {
  background: var(--ink-900);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 100% 0%, rgba(222,22,22,0.20), transparent 60%),
    radial-gradient(700px 320px at 0% 100%, rgba(222,22,22,0.10), transparent 70%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.0;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.final-cta__title em { font-style: normal; color: var(--brand-red); }
.final-cta__lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 0 36px;
  max-width: 540px;
}
.final-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.final-cta__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.final-cta__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 24px 64px rgba(222,22,22,0.35));
}
.final-cta__visual svg { max-width: 440px; }
.final-cta__panel-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.final-cta__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.final-cta__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.4; color: rgba(255,255,255,0.86); }
.final-cta__list svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--brand-red); margin-top: 2px; }

/* Footer */
.footer {
  /* background: #0A0A0B;
  color: rgba(255,255,255,0.7); */
    background-color: #000000;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url('assets/footer-bg.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    /* padding: 4rem 0 4rem; */
    overflow: hidden;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--pad) 32px;
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  gap: 48px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.footer__logo { width: 155px; align-self: flex-end; margin-bottom: 8px; }
.footer__tag { 
    font-size: 2.5rem;
    line-height: 1.2;
    color: white;
    margin: 0;
    font-weight: 500;
}
.footer__head { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.footer__link{
  font-size: 13.5px; 
  color: rgba(255,255,255,0.65); 
  transition: color 120ms var(--ease-out);
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__link p{ margin: 0px ;}
.footer__link svg{ fill: white; width: 20px; height: 20px; flex-shrink: 0;}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: white;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__socials{
  display: flex;
  gap: 1rem;
}
.footer__socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 1px;
}
.footer__socials img {
    width: 100%;
    height: 100%;
    aspect-ratio: 39.99 / 40;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.hero__form{
  position: sticky;
  top: 115px;
  width: 100%;
}

.alert.success{
  padding: 10px;
  background-color: var(--success);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  margin-bottom: 1rem;
  
}

.d-none{
  display: none;
}
.iti{ width: 100%;}

/* Responsive */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-card { position: static; }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .section__head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --pad: 22px; }
  .header__nav { display: none; }
  .header__cta { padding: 9px 14px; font-size: 13px; }
  .utility__inner { gap: 12px; flex-direction: column; }
  /* .utility__right{ gap: 12px; flex-direction: column; } */
  .utility__group--phone span:first-of-type { display: none; }
  .utility__sep { display: none; }
  .hero { padding: 40px 0 64px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .topics { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px var(--pad) 24px; }
  .quote-band__inner { grid-template-columns: 1fr; gap: 20px; }
  .trust-band__inner { gap: 20px; }
  .trust-band__chips { gap: 18px 24px; }
  .form-card__head, .form-card__body, .form-card__footer { padding-left: 22px; padding-right: 22px; }
  .footer__logo{
    align-self: flex-start;
  }
  .footer__tag{
    font-size: 2rem;
  }
}
