@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

:root {
  --icv-quote-dark: #091f2f;
  --icv-quote-navy: #004369;
  --icv-quote-primary: #007dc5;
  --icv-quote-primary-hover: #006aad;
  --icv-quote-accent: #0a9f56;
  --icv-quote-accent-hover: #088a4a;
  --icv-quote-text: #74787c;
  --icv-quote-muted: #a0a4a8;
  --icv-quote-border: #eaeaea;
  --icv-quote-soft: #f4f7fa;
  --icv-quote-white: #ffffff;
  --icv-quote-radius: 14px;
  --icv-quote-shadow: 0 18px 48px rgba(9, 31, 47, 0.1);
  --icv-quote-transition: all 0.35s ease;
}

.icv-quote-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* ---- Conversion Hero ---- */
.icv-quote-hero {
  position: relative;
  z-index: 5;
  overflow: visible;
  background: var(--icv-quote-dark);
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 88px);
}

.icv-quote-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.icv-quote-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  animation: icvQuoteKenBurns 18s ease-in-out infinite alternate;
}

@keyframes icvQuoteKenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, -1%); }
}

.icv-quote-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(9, 31, 47, 0.94) 0%, rgba(9, 31, 47, 0.82) 42%, rgba(0, 67, 105, 0.55) 68%, rgba(0, 67, 105, 0.35) 100%),
    linear-gradient(180deg, rgba(9, 31, 47, 0.25) 0%, rgba(9, 31, 47, 0.15) 50%, rgba(9, 31, 47, 0.45) 100%);
  pointer-events: none;
}

.icv-quote-hero__inner {
  position: relative;
  z-index: 2;
}

.icv-quote-hero__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -18px;
  margin-right: -18px;
}

.icv-quote-hero__copy,
.icv-quote-hero__form-col {
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

.icv-quote-hero__copy {
  flex: 0 0 52%;
  max-width: 52%;
  color: #fff;
  animation: icvQuoteFadeLeft 0.7s ease both;
}

.icv-quote-hero__form-col {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  z-index: 6;
  animation: icvQuoteRise 0.75s ease 0.12s both;
}

@keyframes icvQuoteFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes icvQuoteRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icv-quote-hero__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 125, 197, 0.22);
  border: 1px solid rgba(0, 125, 197, 0.45);
  color: #7ec8ef;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.icv-quote-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 16px;
  text-transform: none;
  max-width: 540px;
}

.icv-quote-hero__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 22px;
  max-width: 520px;
}

.icv-quote-hero__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.icv-quote-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.icv-quote-hero__points li:last-child {
  margin-bottom: 0;
}

.icv-quote-hero__points .fa {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--icv-quote-primary);
  color: #fff;
  font-size: 11px;
}

.icv-quote-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icv-quote-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: none;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.icv-quote-hero__btn-label,
.icv-quote-hero__btn i {
  position: relative;
  z-index: 1;
}

.icv-quote-hero__btn i {
  font-size: 13px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.icv-quote-hero__btn--primary {
  background: var(--icv-quote-primary);
  color: #fff !important;
}

.icv-quote-hero__btn--primary::before,
.icv-quote-hero__btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.icv-quote-hero__btn--primary::before {
  background: #0b141f;
}

.icv-quote-hero__btn--primary::after {
  background: var(--icv-quote-primary);
}

.icv-quote-hero__btn--primary:hover,
.icv-quote-hero__btn--primary:focus {
  background: var(--icv-quote-primary);
  color: #fff !important;
  box-shadow: none;
  transform: none;
}

.icv-quote-hero__btn--primary:hover::before,
.icv-quote-hero__btn--primary:focus-visible::before {
  animation: icv-quote-btn-sweep 0.4s ease forwards;
}

.icv-quote-hero__btn--primary:hover::after,
.icv-quote-hero__btn--primary:focus-visible::after {
  animation: icv-quote-btn-sweep 0.4s ease 0.4s forwards;
}

.icv-quote-hero__btn--primary:hover i,
.icv-quote-hero__btn--primary:focus i {
  transform: translateX(3px);
}

.icv-quote-hero__btn--ghost {
  background: #0b141f;
  color: #fff !important;
}

.icv-quote-hero__btn--ghost::before,
.icv-quote-hero__btn--ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.icv-quote-hero__btn--ghost::before {
  background: var(--icv-quote-primary);
}

.icv-quote-hero__btn--ghost::after {
  background: #0b141f;
}

.icv-quote-hero__btn--ghost:hover,
.icv-quote-hero__btn--ghost:focus {
  background: #0b141f;
  color: #fff !important;
  box-shadow: none;
  transform: none;
}

.icv-quote-hero__btn--ghost:hover::before,
.icv-quote-hero__btn--ghost:focus-visible::before {
  animation: icv-quote-btn-sweep 0.4s ease forwards;
}

.icv-quote-hero__btn--ghost:hover::after,
.icv-quote-hero__btn--ghost:focus-visible::after {
  animation: icv-quote-btn-sweep 0.4s ease 0.4s forwards;
}

.icv-quote-hero__btn--ghost:hover i,
.icv-quote-hero__btn--ghost:focus i {
  transform: translateX(3px);
}

@keyframes icv-quote-btn-sweep {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ---- Form card in hero ---- */
.icv-quote-card {
  background: var(--icv-quote-white);
  border-radius: var(--icv-quote-radius);
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.icv-quote-card__head {
  padding: 22px 26px 20px;
  background: linear-gradient(135deg, var(--icv-quote-navy) 0%, var(--icv-quote-primary) 100%);
  color: #fff;
  border-radius: var(--icv-quote-radius) var(--icv-quote-radius) 0 0;
}

.icv-quote-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
  text-transform: none;
  line-height: 1.25;
}

.icv-quote-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.icv-quote-card__body {
  padding: 24px 26px 26px;
}

.icv-quote-alert {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.icv-quote-alert--success {
  background: #e8f6ee;
  color: #1b6b3a;
  border: 1px solid #c6e6d2;
}

.icv-quote-alert--error {
  background: #fdeeee;
  color: #9b2c2c;
  border: 1px solid #f3c6c6;
}

.icv-quote-form__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

.icv-quote-form__row > .icv-field-wrap {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 7px;
  padding-right: 7px;
  box-sizing: border-box;
}

.icv-quote-form .icv-field-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

.icv-quote-form input[type="text"],
.icv-quote-form input[type="email"],
.icv-quote-form input[type="tel"] {
  width: 100%;
  background: #f7f9fb;
  border: 1px solid var(--icv-quote-border);
  border-radius: 8px;
  padding: 13px 14px 13px 42px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--icv-quote-dark);
  line-height: 1.4;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0;
  outline: none;
}

.icv-quote-form input:focus {
  background: #fff;
  border-color: var(--icv-quote-primary);
  box-shadow: 0 0 0 3px rgba(0, 125, 197, 0.12);
}

.icv-quote-form input::placeholder {
  color: var(--icv-quote-muted);
}

.icv-quote-form .icv-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8bcc2;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

/* Nested service dropdown */
.icv-service-dd {
  position: relative;
  z-index: 20;
}

.icv-service-dd.is-open {
  z-index: 50;
}

.icv-service-dd__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 46px;
  padding: 13px 36px 13px 42px;
  background: #f7f9fb;
  border: 1px solid var(--icv-quote-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--icv-quote-muted);
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
  outline: none;
}

.icv-service-dd__trigger.has-value {
  color: var(--icv-quote-dark);
}

.icv-service-dd.is-open .icv-service-dd__trigger,
.icv-service-dd__trigger:focus {
  background: #fff;
  border-color: var(--icv-quote-primary);
  box-shadow: 0 0 0 3px rgba(0, 125, 197, 0.12);
}

.icv-service-dd__label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 8px;
}

.icv-service-dd__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #a0a4a8;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.icv-service-dd.is-open .icv-service-dd__chevron {
  transform: translateY(-50%) rotate(180deg);
}

.icv-service-dd__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #ffffff;
  border: 1px solid var(--icv-quote-border);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(9, 31, 47, 0.18);
  overflow: visible;
  z-index: 60;
  isolation: isolate;
}

.icv-service-dd__group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: #ffffff;
  border-bottom: 1px solid var(--icv-quote-border);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--icv-quote-dark);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.icv-service-dd__group:last-child .icv-service-dd__group-btn {
  border-bottom: none;
}

.icv-service-dd__group.is-open .icv-service-dd__group-btn {
  background: #f4f7fa;
  color: var(--icv-quote-primary);
  border-bottom: 1px solid var(--icv-quote-border);
}

.icv-service-dd__group-btn .fa {
  font-size: 14px;
  color: #a0a4a8;
  transition: transform 0.2s ease;
}

.icv-service-dd__group.is-open .icv-service-dd__group-btn .fa {
  transform: rotate(90deg);
  color: var(--icv-quote-primary);
}

.icv-service-dd__group-btn:hover {
  background: #f4f7fa;
}

.icv-service-dd__list {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
  background: #ffffff;
  border-bottom: 1px solid var(--icv-quote-border);
}

.icv-service-dd__group:last-child .icv-service-dd__list {
  border-bottom: none;
}

.icv-service-dd__list button {
  display: block;
  width: 100%;
  padding: 10px 14px 10px 22px;
  border: none;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--icv-quote-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.icv-service-dd__list button:hover,
.icv-service-dd__list button.is-selected {
  background: #eef6fb;
  color: var(--icv-quote-primary);
}

/* Keep counter below open service menu */
.mian-contain > .icv-counter {
  position: relative;
  z-index: 1;
}

.icv-quote-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: var(--icv-quote-text);
}

.icv-quote-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--icv-quote-primary);
  cursor: pointer;
}

.icv-quote-consent span {
  display: block;
}

.icv-quote-consent em {
  color: #d64545;
  font-style: normal;
  font-weight: 700;
}

.icv-quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 2px;
  height: 50px;
  border: none;
  border-radius: 8px;
  background: var(--icv-quote-accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 28px rgba(10, 159, 86, 0.28);
}

.icv-quote-submit:hover {
  background: var(--icv-quote-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10, 159, 86, 0.34);
}

.icv-quote-submit:active {
  transform: translateY(0);
}

.icv-quote-form__note {
  margin: 12px 0 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--icv-quote-text);
}

.icv-quote-form__note a {
  color: var(--icv-quote-primary);
  font-weight: 600;
  text-decoration: none;
}

.icv-quote-form__note a:hover {
  text-decoration: underline;
}

/* ---- Services grid ---- */
.icv-quote-services {
  padding: 72px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 125, 197, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(0, 67, 105, 0.05) 0%, transparent 50%),
    #f5f8fb;
}

.icv-quote-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.icv-quote-service-card[hidden] {
  display: none !important;
}

.icv-quote-services__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 34px;
}

.icv-quote-services__filter {
  appearance: none;
  border: 1.5px solid rgba(0, 67, 105, 0.18);
  background: #fff;
  color: var(--icv-quote-navy);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.icv-quote-services__filter:hover {
  border-color: rgba(0, 125, 197, 0.45);
  color: var(--icv-quote-primary);
  transform: translateY(-1px);
}

.icv-quote-services__filter.is-active {
  background: linear-gradient(135deg, var(--icv-quote-navy) 0%, var(--icv-quote-primary) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 125, 197, 0.28);
}

.icv-quote-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(9, 31, 47, 0.06);
  border-radius: 14px;
  padding: 32px 24px 28px;
  box-shadow: 0 10px 28px rgba(9, 31, 47, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icv-quote-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 125, 197, 0.22);
  box-shadow: 0 16px 36px rgba(9, 31, 47, 0.1);
}

.icv-quote-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 0 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.icv-quote-service-card__icon--blue { background: linear-gradient(145deg, #1a8fd4, #007dc5); }
.icv-quote-service-card__icon--green { background: linear-gradient(145deg, #2bb673, #0a9f56); }
.icv-quote-service-card__icon--orange { background: linear-gradient(145deg, #f0a04b, #e07a2f); }
.icv-quote-service-card__icon--teal { background: linear-gradient(145deg, #2cb5a0, #1a8f7f); }
.icv-quote-service-card__icon--navy { background: linear-gradient(145deg, #1f6f9f, #004369); }
.icv-quote-service-card__icon--amber { background: linear-gradient(145deg, #e8b84a, #d4921a); }
.icv-quote-service-card__icon--cyan { background: linear-gradient(145deg, #3db8d8, #1f91b5); }
.icv-quote-service-card__icon--mint { background: linear-gradient(145deg, #4caf8f, #2d8a6e); }
.icv-quote-service-card__icon--slate { background: linear-gradient(145deg, #5d7a8c, #3d5a6c); }

.icv-quote-service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--icv-quote-dark);
  margin: 0 0 10px;
  text-transform: none;
  line-height: 1.3;
}

.icv-quote-service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--icv-quote-text);
  margin: 0 0 18px;
  flex-grow: 1;
}

.icv-quote-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--icv-quote-primary) !important;
  text-decoration: none !important;
  transition: gap 0.2s ease, color 0.2s ease;
}

.icv-quote-service-card__link:hover {
  color: var(--icv-quote-primary-hover) !important;
  gap: 11px;
}

.icv-quote-service-card__link .fa {
  font-size: 12px;
}

/* ---- Why Choose Section ---- */
.icv-why {
  padding: 72px 0 54px;
  background:
    radial-gradient(ellipse 60% 55% at 100% 0%, rgba(0, 125, 197, 0.06) 0%, transparent 55%),
    #fff;
}

.icv-why .container {
  position: relative;
}

.icv-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.icv-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icv-quote-primary);
}

.icv-why__eyebrow-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.icv-why__eyebrow-icon::before,
.icv-why__eyebrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
  transform: skewX(-18deg);
}

.icv-why__eyebrow-icon::before {
  left: 0;
}

.icv-why__eyebrow-icon::after {
  left: 8px;
}

.icv-why__title {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--icv-quote-dark);
  text-transform: none;
}

.icv-why__desc {
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--icv-quote-text);
  max-width: none;
}

.icv-why__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.icv-why__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 67, 105, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: 0 10px 26px rgba(9, 31, 47, 0.05);
  opacity: 0;
  transform: translateY(18px);
}

.icv-why.is-animation-ready .icv-why__feature.is-visible {
  animation: icvWhyRise 0.6s ease forwards;
}

@keyframes icvWhyRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icv-why__feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--icv-quote-navy), var(--icv-quote-primary));
  box-shadow: 0 10px 20px rgba(0, 125, 197, 0.2);
}

.icv-why__feature-title {
  margin: 0 0 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--icv-quote-dark);
  text-transform: none;
}

.icv-why__feature-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--icv-quote-text);
}

.icv-why__content {
  min-width: 0;
}

.icv-why__media {
  position: relative;
  min-width: 0;
}

.icv-why__collage {
  position: relative;
  width: 100%;
}

.icv-why__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(9, 31, 47, 0.12);
  background: #eef4f8;
}

.icv-why__figure--main {
  max-width: none;
  margin: 0;
}

.icv-why__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.icv-why__cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: none;
  margin: 16px 0 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--icv-quote-navy) 0%, var(--icv-quote-primary) 100%);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 34px rgba(0, 67, 105, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.icv-why__cta-card:hover,
.icv-why__cta-card:focus {
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0, 67, 105, 0.3);
  filter: brightness(1.05);
}

.icv-why__cta-card:hover .icv-why__cta-card-title,
.icv-why__cta-card:hover .icv-why__cta-card-subtitle,
.icv-why__cta-card:hover .icv-why__cta-card-icon,
.icv-why__cta-card:hover .icv-why__cta-card-arrow,
.icv-why__cta-card:focus .icv-why__cta-card-title,
.icv-why__cta-card:focus .icv-why__cta-card-subtitle,
.icv-why__cta-card:focus .icv-why__cta-card-icon,
.icv-why__cta-card:focus .icv-why__cta-card-arrow {
  color: #fff !important;
}

.icv-why__cta-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
}

.icv-why__cta-card-icon .fa {
  color: #fff !important;
}

.icv-why__cta-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  color: #fff !important;
}

.icv-why__cta-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
}

.icv-why__cta-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92) !important;
}

.icv-why__cta-card-arrow {
  margin-left: auto;
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.icv-why__cta-card-arrow .fa {
  color: #fff !important;
}

.icv-why__cta-card:hover .icv-why__cta-card-arrow {
  transform: translateX(3px);
}

/* ---- Process ---- */
.icv-quote-process {
  padding: 70px 0 40px;
  background: var(--icv-quote-white);
}

.icv-quote-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icv-quote-primary);
  margin: 0 0 12px;
}

.icv-quote-intro__eyebrow-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.icv-quote-intro__eyebrow-icon::before,
.icv-quote-intro__eyebrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
  transform: skewX(-18deg);
}

.icv-quote-intro__eyebrow-icon::before {
  left: 0;
}

.icv-quote-intro__eyebrow-icon::after {
  left: 8px;
}

.icv-quote-section-head {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
}

.icv-quote-section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.4vw, 32px);
  font-weight: 700;
  color: var(--icv-quote-dark);
  margin: 0 0 12px;
  text-transform: none;
}

.icv-quote-section-head p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--icv-quote-text);
  margin: 0;
}

.icv-quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.icv-quote-step {
  position: relative;
  background: var(--icv-quote-soft);
  border: 1px solid var(--icv-quote-border);
  border-radius: var(--icv-quote-radius);
  padding: 30px 26px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icv-quote-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 125, 197, 0.3);
  box-shadow: 0 12px 30px rgba(9, 31, 47, 0.08);
}

.icv-quote-step__num {
  display: block;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--icv-quote-primary);
  opacity: 0.9;
}

.icv-quote-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--icv-quote-dark);
  margin: 0 0 10px;
  text-transform: none;
}

.icv-quote-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--icv-quote-text);
  margin: 0;
}

/* ---- CTA ---- */
.icv-quote-cta {
  padding: 20px 0 80px;
  background: var(--icv-quote-white);
}

.icv-quote-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: var(--icv-quote-radius);
  background:
    linear-gradient(115deg, rgba(0, 125, 197, 0.96) 0%, rgba(0, 67, 105, 0.98) 100%),
    url('../img/banners/counter-bg.jpg') center/cover no-repeat;
  color: #fff;
  box-shadow: var(--icv-quote-shadow);
}

.icv-quote-cta__copy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: none;
  color: #fff;
}

.icv-quote-cta__copy p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
  opacity: 0.92;
}

.icv-quote-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.icv-quote-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icv-quote-cta__btn--primary {
  background: #fff;
  color: var(--icv-quote-navy) !important;
}

.icv-quote-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.icv-quote-cta__btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.icv-quote-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .icv-quote-hero__copy,
  .icv-quote-hero__form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .icv-quote-hero__copy {
    margin-bottom: 32px;
  }

  .icv-quote-hero__title,
  .icv-quote-hero__text {
    max-width: none;
  }

  .icv-quote-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icv-quote-steps {
    grid-template-columns: 1fr;
  }

  .icv-quote-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .icv-quote-card__body {
    padding: 22px 20px 22px;
  }

  .icv-quote-card__head {
    padding: 20px 20px 18px;
  }

  .icv-why__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .icv-why__media {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .icv-why__collage {
    min-height: 0;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .icv-quote-hero {
    padding: 36px 0 48px;
  }

  .icv-quote-hero__image {
    animation: none;
  }

  .icv-quote-form__row > .icv-field-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .icv-quote-hero__actions {
    width: 100%;
  }

  .icv-quote-hero__btn {
    flex: 1 1 auto;
  }

  .icv-quote-services {
    padding: 56px 0 28px;
  }

  .icv-quote-services__grid {
    grid-template-columns: 1fr;
  }

  .icv-why__features {
    grid-template-columns: 1fr;
  }

  .icv-why__cta-card {
    padding: 16px;
  }

  .icv-why__cta-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .icv-why {
    padding: 56px 0 38px;
  }

  .icv-why__features {
    grid-template-columns: 1fr;
  }

  .icv-why__collage {
    min-height: 0;
  }

  .icv-why__image {
    aspect-ratio: 5 / 4;
  }

  .icv-why__badge {
    width: 104px;
    height: 104px;
  }

  .icv-why__badge-years {
    font-size: 28px;
  }

  .icv-why__video {
    width: 92%;
    height: 150px;
  }

  .icv-quote-cta__actions {
    width: 100%;
  }

  .icv-quote-cta__btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .icv-quote-hero__image,
  .icv-quote-hero__copy,
  .icv-quote-hero__form-col {
    animation: none !important;
  }
}
