/* ── Signup form ── */
.ic-form-card {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ic-form-wrap {
  margin: 0;
}

.ic-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ic-form-alert {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.875rem;
  line-height: 1.4;
}

.ic-form-alert:not(:empty) {
  display: block;
}

.ic-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ic-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.ic-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ic-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.ic-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.ic-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.ic-input:hover {
  border-color: #d1d5db;
  background: #fff;
}

.ic-input:focus {
  border-color: #10b981;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.ic-input.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.ic-field--phone .iti {
  width: 100%;
}

.ic-field--phone .iti__flag-container {
  border-radius: 0.75rem 0 0 0.75rem;
}

.ic-field--phone .iti input.ic-input {
  padding-left: 3.25rem;
  border-radius: 0.75rem;
}

.ic-field--phone .iti--separate-dial-code .iti__selected-flag {
  border-radius: 0.75rem 0 0 0.75rem;
  background: #f3f4f6;
}

.ic-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #059669 0%, #10b981 45%, #34d399 100%);
  border: none;
  border-radius: 0.875rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.ic-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.ic-submit:active {
  transform: translateY(0);
}

.ic-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.ic-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 9999px;
}

.ic-form-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: ic-pulse 2s ease-in-out infinite;
}

@keyframes ic-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ic-form-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: #9ca3af;
}

.ic-form-disclaimer a {
  color: #6b7280;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.ic-form-disclaimer a:hover {
  color: #059669;
}

/* ── Crypto ticker ── */
.crypto-ticker {
  position: relative;
  z-index: 20;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  display: block;
}

.crypto-ticker__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.crypto-ticker__inner::before,
.crypto-ticker__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}

.crypto-ticker__inner::before {
  left: 0;
  background: linear-gradient(90deg, #fff 15%, transparent);
}

.crypto-ticker__inner::after {
  right: 0;
  background: linear-gradient(270deg, #fff 15%, transparent);
}

.crypto-ticker__marquee {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: crypto-ticker-scroll 35s linear infinite;
  will-change: transform;
}

.crypto-ticker__marquee:hover {
  animation-play-state: paused;
}

.crypto-ticker__set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.75rem;
  flex-shrink: 0;
}

.crypto-ticker__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  min-width: 5rem;
  flex-shrink: 0;
}

.crypto-ticker__logo img {
  display: block;
  max-height: 2.5rem;
  max-width: 7.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.crypto-ticker__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .crypto-ticker {
    padding: 1.5rem 0;
  }

  .crypto-ticker__set {
    gap: 4.5rem;
    padding: 0 2.25rem;
  }

  .crypto-ticker__logo {
    height: 2.75rem;
    min-width: 6rem;
  }

  .crypto-ticker__logo img {
    max-height: 2.75rem;
    max-width: 8.5rem;
  }
}

@keyframes crypto-ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 480px) {
  .ic-field-row {
    grid-template-columns: 1fr;
  }
}

/* ── Profit calculator ── */
.ic-calc-section {
  position: relative;
  z-index: 10;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background: linear-gradient(145deg, #dbeafe 0%, #d1fae5 42%, #ecfdf5 72%, #eff6ff 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
}

@media (min-width: 768px) {
  .ic-calc-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .ic-calc-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.ic-calc-section::before,
.ic-calc-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.ic-calc-section::before {
  top: -18%;
  left: -8%;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  background: rgba(59, 130, 246, 0.28);
}

.ic-calc-section::after {
  bottom: -22%;
  right: -6%;
  width: min(38vw, 24rem);
  height: min(38vw, 24rem);
  background: rgba(16, 185, 129, 0.3);
}

.ic-calc-wrap {
  padding: 1.75rem 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 24px 48px -18px rgba(30, 64, 175, 0.14),
    0 12px 28px -12px rgba(5, 150, 105, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

@media (min-width: 768px) {
  .ic-calc-wrap {
    padding: 2.5rem 2.25rem;
  }
}

@media (min-width: 1280px) {
  .ic-calc-wrap {
    padding: 3rem 3.5rem;
  }
}

.ic-calc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ic-calc-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 3rem 4.5rem;
    align-items: center;
  }

  .ic-calc-info {
    padding-right: 1rem;
  }
}

@media (min-width: 1280px) {
  .ic-calc-layout {
    gap: 3.5rem 5rem;
  }
}

.ic-calc--section .ic-calc__card {
  padding: 1.5rem 1.35rem;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow:
    0 16px 36px -14px rgba(59, 130, 246, 0.18),
    0 6px 18px -8px rgba(16, 185, 129, 0.12);
}

.ic-calc-info__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-calc-info__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e40af 0%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .ic-calc-info__title {
    font-size: 2.25rem;
  }
}

.ic-calc-info__text {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 34rem;
}

.ic-calc-info__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ic-calc-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #374151;
}

.ic-calc-info__list i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.125rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-calc__field + .ic-calc__field {
  margin-top: 1rem;
}

.ic-calc--section .ic-calc__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.ic-calc__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.ic-calc__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #34d399;
}

.ic-calc__range {
  width: 100%;
  height: 6px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  outline: none;
  cursor: pointer;
}

.ic-calc__range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.ic-calc__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #10b981;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.ic-calc__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: #6b7280;
}

.ic-calc__periods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ic-calc__period {
  padding: 0.55rem 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ic-calc__period:hover {
  color: #374151;
  border-color: #a7f3d0;
}

.ic-calc__period.is-active {
  color: #fff;
  background: linear-gradient(135deg, #059669, #10b981);
  border-color: #10b981;
}

.ic-calc__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.ic-calc__result {
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.ic-calc__result-label {
  display: block;
  font-size: 0.6875rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.ic-calc__result-profit {
  font-size: 1.375rem;
  font-weight: 700;
  color: #059669;
  line-height: 1.2;
}

.ic-calc__result-total {
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.ic-calc__disclaimer {
  margin: 1rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #9ca3af;
}

.ic-calc__disclaimer--left {
  text-align: left;
  max-width: 28rem;
}

.ic-calc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: filter 0.15s, transform 0.15s;
}

.ic-calc__cta--inline {
  margin-top: 1.5rem;
}

.ic-calc__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ── Reviews / testimonials ── */
.ic-reviews-header {
  margin-bottom: 3rem;
}

.ic-reviews-header__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-reviews-header__title {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

@media (min-width: 768px) {
  .ic-reviews-header__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .ic-reviews-header__title {
    font-size: 3rem;
  }
}

.ic-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: 9999px;
}

.ic-hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: ic-hero-badge-pulse 2s ease-in-out infinite;
}

@keyframes ic-hero-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.ic-hero-rating {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ic-hero-rating:hover {
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ic-reviews-stats {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px -6px rgba(15, 23, 42, 0.1);
}

.ic-reviews-stats--inline {
  margin-top: 0;
}

.ic-reviews-stats__score {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #2563eb, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-reviews-stats__meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.ic-reviews-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.15s ease, gap 0.15s ease;
}

.ic-reviews-header__link:hover {
  color: #047857;
  gap: 0.5rem;
}

.ic-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .ic-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ic-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ic-review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 17.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -12px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ic-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 18px 36px -14px rgba(59, 130, 246, 0.18);
}

.ic-review-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.ic-review-card__star {
  font-size: 1rem;
  color: #fbbf24;
}

.ic-review-card__star--empty {
  color: #d1d5db;
}

.ic-review-card__quote {
  flex: 1;
  margin: 0;
}

.ic-review-card__quote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}

.ic-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid #f3f4f6;
}

.ic-review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #10b981);
}

.ic-review-card__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.ic-review-card__badge {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #059669;
  letter-spacing: 0.02em;
}

/* ── Features grid (desktop) ── */
.ic-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ic-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .ic-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ic-features-grid__item {
  display: flex;
  min-height: 100%;
}

.ic-advantages-section .max-w-7xl {
  max-width: 80rem;
}

.ic-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

.ic-feature-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.ic-feature-card__icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.5rem;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(to top right, #3b82f6, #10b981);
  background-clip: text;
  -webkit-background-clip: text;
}

.ic-feature-card__content {
  flex: 1;
  min-width: 0;
}

.ic-feature-card__title {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.ic-feature-card__text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}

.ic-feature-card .prose {
  flex: 1;
}

/* ── Support panel (unified gradient + photo) ── */
.ic-support-section {
  padding: 3.5rem 0 4rem;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .ic-support-section {
    padding: 5rem 0 5.5rem;
  }
}

.ic-support-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f4c5c 32%, #0d9488 62%, #059669 100%);
  box-shadow:
    0 32px 64px -24px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

@media (min-width: 1024px) {
  .ic-support-panel {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 30rem;
    border-radius: 1.75rem;
    align-items: stretch;
  }
}

@media (min-width: 1280px) {
  .ic-support-panel {
    min-height: 32rem;
  }
}

.ic-support-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(59, 130, 246, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(52, 211, 153, 0.22), transparent 55%);
  pointer-events: none;
}

.ic-support-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem 2.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ic-support-panel__content {
    padding: 2.5rem 2.25rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .ic-support-panel__content {
    padding: 3.25rem 3rem 3.25rem 3.5rem;
    max-width: 36rem;
  }
}

@media (min-width: 1280px) {
  .ic-support-panel__content {
    padding: 3.5rem 3.25rem 3.5rem 4rem;
  }
}

.ic-support-panel__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.ic-support-panel__title {
  margin: 0;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.ic-support-panel__text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.ic-support-panel__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: left;
}

.ic-support-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.ic-support-panel__list i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.125rem;
  color: #6ee7b7;
}

.ic-support-panel__list a {
  color: #a7f3d0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ic-support-panel__list a:hover {
  color: #ecfdf5;
}

.ic-support-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: center;
  margin-top: 1.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #064e3b;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (min-width: 768px) {
  .ic-support-panel__cta {
    align-self: flex-start;
  }
}

.ic-support-panel__cta:hover {
  background: #ecfdf5;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.4);
}

.ic-support-panel__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 16rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ic-support-panel__media {
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 1rem 0 0;
  }
}

.ic-support-panel__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse at center bottom, rgba(167, 243, 208, 0.35), transparent 70%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .ic-support-panel__glow {
    left: 0;
    transform: none;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.25), transparent 65%);
  }
}

.ic-support-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom center;
}

@media (min-width: 1024px) {
  .ic-support-image {
    position: relative;
    width: auto;
    max-width: 100%;
    height: 92%;
    max-height: 30rem;
    margin: 0;
    object-fit: contain;
    object-position: bottom right;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 12%, #000 28%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 12%, #000 28%);
  }
}

@media (min-width: 1280px) {
  .ic-support-image {
    max-height: 32rem;
    margin-right: -0.5rem;
  }
}

/* ── Platform overview ── */
.ic-platform-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f9fafb;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .ic-platform-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.ic-platform-header {
  margin-bottom: 3rem;
}

.ic-platform-header__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-platform-header__title {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

@media (min-width: 768px) {
  .ic-platform-header__title {
    font-size: 2.5rem;
  }
}

.ic-platform-header__lead {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.ic-platform-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .ic-platform-intro {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.ic-platform-visual {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #111827 55%, #0a1628 100%);
  box-shadow:
    0 24px 48px -20px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ic-platform-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(16, 185, 129, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(59, 130, 246, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.ic-platform-visual__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.ic-platform-about p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

.ic-platform-about p:last-child {
  margin-bottom: 0;
}

.ic-platform-about a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
}

.ic-platform-about a:hover {
  color: #047857;
  text-decoration: underline;
}

.ic-platform-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .ic-platform-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ic-platform-stat {
  padding: 1rem 0.875rem;
  text-align: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.ic-platform-stat__value {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e40af, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-platform-stat__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.ic-platform-steps-wrap {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(145deg, #dbeafe 0%, #d1fae5 38%, #ecfdf5 68%, #eff6ff 100%);
  box-shadow:
    0 20px 48px -24px rgba(59, 130, 246, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.ic-platform-steps-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(59, 130, 246, 0.18), transparent 62%),
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(16, 185, 129, 0.16), transparent 58%);
  pointer-events: none;
}

.ic-platform-steps-wrap > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .ic-platform-steps-wrap {
    padding: 2.5rem 2.25rem 2.75rem;
    border-radius: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .ic-platform-steps-wrap {
    padding: 3rem 2.75rem 3.25rem;
  }
}

.ic-platform-steps-wrap .ic-platform-steps__heading {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-platform-steps-wrap .ic-platform-step {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.12);
}

.ic-platform-steps__heading,
.ic-platform-specs__heading {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

@media (min-width: 768px) {
  .ic-platform-steps__heading,
  .ic-platform-specs__heading {
    font-size: 1.5rem;
  }
}

.ic-platform-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ic-platform-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ic-platform-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ic-platform-step {
  height: 100%;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.1);
}

.ic-platform-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #10b981);
}

.ic-platform-step__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.ic-platform-step__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6b7280;
}

.ic-platform-steps__cta {
  margin: 1.25rem 0 0;
  text-align: center;
}

.ic-platform-steps__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
}

.ic-platform-steps__cta a:hover {
  color: #047857;
}

.ic-platform-specs {
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .ic-platform-specs {
    padding: 2.5rem 2.25rem 2.75rem;
    border-radius: 1.75rem;
  }
}

.ic-platform-specs__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.ic-platform-specs__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #047857;
  background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.ic-platform-specs__badge i {
  font-size: 1rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-platform-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ic-platform-specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .ic-platform-specs__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ic-platform-spec {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  border-radius: 0.875rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ic-platform-spec:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 20px -12px rgba(59, 130, 246, 0.18);
}

.ic-platform-specs__note {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6b7280;
}

.ic-platform-specs__note a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.ic-platform-specs__note a:hover {
  color: #047857;
  text-decoration: underline;
}

.ic-platform-spec__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ic-platform-spec__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.ic-platform-spec__text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

/* ── AI partners ── */
.ic-partners {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ic-partners__label {
  margin: 0 0 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  text-align: center;
}

@media (min-width: 1024px) {
  .ic-partners__label {
    text-align: left;
  }
}

.ic-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

@media (min-width: 1024px) {
  .ic-partners__logos {
    justify-content: flex-start;
    gap: 1.5rem 2rem;
  }
}

.ic-partner {
  display: block;
  height: 1.125rem;
  width: auto;
  max-width: 6.5rem;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 768px) {
  .ic-partner {
    height: 1.35rem;
    max-width: 7.5rem;
  }
}

.ic-partner--light {
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.ic-partner:hover {
  opacity: 1;
}

.ic-partner--light:hover {
  opacity: 0.95;
}

/* ── Site header ── */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #fff;
}

.site-brand__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.site-brand__text {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .site-brand__icon {
    width: 2.125rem;
    height: 2.125rem;
  }

  .site-brand__text {
    font-size: 1.125rem;
  }
}

#masthead.site-header,
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

#masthead .menu a,
header.site-header .site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

#masthead .menu a:hover,
header.site-header .site-nav a:hover {
  color: #d1d5db;
}

header.site-header {
  background: #111827;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile navigation overlay (vanilla JS toggle) */
.ic-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: 0.5rem;
  background: rgba(17, 24, 39, 0.45);
}

.ic-mobile-nav[hidden] {
  display: none !important;
}

.ic-mobile-nav__panel {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

body.ic-menu-open {
  overflow: hidden;
}

#masthead .ic-mobile-nav-toggle,
#masthead [data-ic-menu-toggle] {
  position: relative;
  z-index: 111;
}

/* Platform specs as standalone section (after life vision) */
.ic-platform-specs-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .ic-platform-specs-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ── Site footer (flat single color) ── */
.site-footer {
  background: #111827;
  color: #9ca3af;
  border-top: none;
}

.site-footer,
.site-footer * {
  border-color: transparent;
}

.site-footer__prose,
.site-footer__prose p {
  color: #9ca3af;
}

.site-footer__prose a,
.site-footer .footer-menu a,
.site-footer ul a,
.site-footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__prose a:hover,
.site-footer .footer-menu a:hover,
.site-footer ul a:hover,
.site-footer a:hover {
  color: #d1d5db;
}

.site-footer h3,
.site-footer .font-semibold {
  color: #9ca3af;
}

.site-footer .site-brand,
.site-footer .site-brand__text {
  color: #d1d5db;
}

.site-footer__bottom {
  border-top: none;
  color: #9ca3af;
}

.site-footer__bottom p {
  color: #9ca3af;
}

.site-footer__bottom a {
  color: #9ca3af;
}

.site-footer__bottom a:hover {
  color: #d1d5db;
}

/* ── Inner pages ── */
.ic-site-body {
  background: #f8fafc;
  color: #111827;
}

.ic-main {
  min-height: 60vh;
}

.ic-main a:not(.ic-page-cta__btn):not(.ic-explore__link) {
  color: #059669;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ic-main a:not(.ic-page-cta__btn):not(.ic-explore__link):hover {
  color: #047857;
  text-decoration: underline;
}

/* Page hero */
.ic-page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #0f172a 100%);
  color: #fff;
}

@media (min-width: 768px) {
  .ic-page-hero {
    padding: 4.5rem 0 5rem;
  }
}

.ic-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(16, 185, 129, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}

.ic-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.ic-breadcrumb a {
  color: #d1d5db !important;
  text-decoration: none !important;
}

.ic-breadcrumb a:hover {
  color: #34d399 !important;
}

.ic-breadcrumb__sep {
  color: #4b5563;
}

.ic-breadcrumb [aria-current="page"] {
  color: #34d399;
  font-weight: 500;
}

.ic-page-hero__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34d399;
}

.ic-page-hero__title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ic-page-hero__subtitle {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #d1d5db;
}

/* Page body */
.ic-page-body {
  padding: 2.5rem 0 3rem;
}

@media (min-width: 768px) {
  .ic-page-body {
    padding: 3.5rem 0 4rem;
  }
}

.ic-page-body__inner {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ic-page-body__inner--wide {
  max-width: 72rem;
}

.ic-page-intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4b5563;
  text-align: center;
}

@media (min-width: 768px) {
  .ic-page-intro {
    font-size: 1.1875rem;
    margin-bottom: 2.5rem;
  }
}

/* Content cards */
.ic-content-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ic-content-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ic-content-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.ic-content-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.1);
}

.ic-content-card--accent {
  background: linear-gradient(145deg, #ecfdf5 0%, #f0fdf4 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.ic-content-card__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.ic-content-card__title i {
  font-size: 1.375rem;
  color: #10b981;
}

.ic-content-card__body p {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

.ic-content-card__body p:last-child {
  margin-bottom: 0;
}

/* Feature list */
.ic-feature-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.08);
}

.ic-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #374151;
}

.ic-feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ic-feature-list li:first-child {
  padding-top: 0;
}

.ic-feature-list i {
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1.125rem;
  color: #10b981;
}

/* Step cards */
.ic-steps-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ic-step-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ic-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 16px 36px -14px rgba(59, 130, 246, 0.15);
}

.ic-step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.ic-step-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.ic-step-card__title i {
  font-size: 1.25rem;
  color: #10b981;
}

.ic-step-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

/* Info cards */
.ic-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .ic-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.ic-info-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ic-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.25);
}

.ic-info-card__icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #10b981;
}

.ic-info-card__title {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.ic-info-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

/* Page CTA */
.ic-page-cta {
  margin-top: 1rem;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.35);
}

.ic-page-cta__text {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
}

.ic-page-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  background: #10b981;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ic-page-cta__btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* FAQ accordion */
.ic-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ic-faq-card {
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ic-faq-card[open] {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 24px -10px rgba(16, 185, 129, 0.15);
}

.ic-faq-card__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  cursor: pointer;
  list-style: none;
}

.ic-faq-card__q::-webkit-details-marker {
  display: none;
}

.ic-faq-card__q::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #10b981;
  background: #ecfdf5;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ic-faq-card[open] .ic-faq-card__q::after {
  content: "−";
  background: #10b981;
  color: #fff;
}

.ic-faq-card__a {
  padding: 0 1.25rem 1.125rem;
}

.ic-faq-card__a p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

.ic-faq-more {
  margin: 2rem 0 0;
  text-align: center;
}

.ic-faq-more__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #059669 !important;
  text-decoration: none !important;
}

.ic-faq-more__link:hover {
  color: #047857 !important;
  gap: 0.5rem;
}

.ic-faq-index {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Legal pages */
.ic-legal-doc {
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.1);
}

@media (min-width: 768px) {
  .ic-legal-doc {
    padding: 2.5rem;
  }
}

.ic-legal-block {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.ic-legal-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ic-legal-block h2 {
  margin: 0 0 0.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.ic-legal-block p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

.ic-legal-block p:last-child {
  margin-bottom: 0;
}

.ic-legal-doc__updated {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* Explore section */
.ic-explore {
  padding: 3rem 0 4rem;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ic-explore__inner {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ic-explore__title {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  color: #111827;
}

.ic-explore__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .ic-explore__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .ic-explore__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ic-explore__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151 !important;
  text-decoration: none !important;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ic-explore__link:hover {
  color: #059669 !important;
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateX(2px);
}

.ic-explore__link i {
  font-size: 0.875rem;
  color: #10b981;
  transition: transform 0.2s ease;
}

.ic-explore__link:hover i {
  transform: translateX(3px);
}

/* ── Hero waves visual (right accent) ── */
#imx-hero-registration {
  background:
    radial-gradient(ellipse 50% 45% at 15% 25%, rgba(59, 130, 246, 0.14), transparent 60%),
    linear-gradient(145deg, #0a1628 0%, #111827 48%, #0f172a 100%);
}

#imx-hero-registration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.38) 36%,
    rgba(10, 22, 40, 0.12) 58%,
    transparent 88%
  );
  pointer-events: none;
  z-index: 1;
}

#imx-hero-registration::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.28) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

#imx-hero-registration > .ic-hero-waves {
  position: absolute;
  right: -4rem;
  bottom: -3.5rem;
  z-index: 0;
  width: min(94vw, 68rem);
  pointer-events: none;
  line-height: 0;
  transform: rotate(-9deg) scale(1.05);
  transform-origin: bottom right;
  -webkit-mask-image: linear-gradient(
    112deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 10%,
    #000 24%,
    #000 100%
  );
  mask-image: linear-gradient(
    112deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 10%,
    #000 24%,
    #000 100%
  );
}

#imx-hero-registration > .ic-hero-waves::after {
  content: "";
  position: absolute;
  inset: -14% -10% -10% -30%;
  background:
    radial-gradient(ellipse 88% 72% at 84% 94%, transparent 28%, rgba(10, 22, 40, 0.55) 100%),
    radial-gradient(ellipse 65% 95% at 14% 58%, rgba(10, 22, 40, 0.82) 0%, transparent 68%),
    radial-gradient(ellipse 105% 58% at 55% 102%, rgba(15, 23, 42, 0.9) 0%, transparent 58%);
  pointer-events: none;
}

.ic-hero-waves__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: saturate(1.25) brightness(1.06);
  -webkit-mask-image: radial-gradient(
    ellipse 110% 94% at 68% 82%,
    #000 32%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.5) 66%,
    transparent 86%
  );
  mask-image: radial-gradient(
    ellipse 110% 94% at 68% 82%,
    #000 32%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.5) 66%,
    transparent 86%
  );
}

#imx-hero-registration > .relative {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  #imx-hero-registration > .ic-hero-waves {
    right: -5rem;
    bottom: -4rem;
    width: min(88vw, 66rem);
    transform: rotate(-11deg) scale(1.06);
    -webkit-mask-image: linear-gradient(
      114deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 9%,
      #000 22%,
      #000 100%
    );
    mask-image: linear-gradient(
      114deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 9%,
      #000 22%,
      #000 100%
    );
  }
}

@media (min-width: 1280px) {
  #imx-hero-registration > .ic-hero-waves {
    right: -6rem;
    bottom: -4.5rem;
    width: min(84vw, 70rem);
    transform: rotate(-12deg) scale(1.07);
    -webkit-mask-image: linear-gradient(
      116deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 8%,
      #000 20%,
      #000 100%
    );
    mask-image: linear-gradient(
      116deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 8%,
      #000 20%,
      #000 100%
    );
  }
}

@media (max-width: 639px) {
  #imx-hero-registration > .ic-hero-waves {
    right: -18%;
    bottom: -1.5rem;
    width: 140vw;
    transform: rotate(-7deg) scale(1.04);
    -webkit-mask-image: linear-gradient(
      108deg,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 12%,
      #000 28%,
      #000 100%
    );
    mask-image: linear-gradient(
      108deg,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 12%,
      #000 28%,
      #000 100%
    );
  }

  #imx-hero-registration::before {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.45) 50%, transparent 100%);
  }
}

/* ── Desktop landing layout ── */
@media (min-width: 1024px) {
  #imx-hero-registration .lg\:grid.lg\:grid-cols-12 {
    align-items: center;
    gap: 3rem;
  }

  #imx-hero-registration .lg\:grid > div:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #imx-hero-registration .ic-form-card {
    width: 100%;
    max-width: 28rem;
  }

  .ic-platform-section .max-w-7xl,
  .ic-calc-section .max-w-7xl,
  .ic-reviews-section .max-w-7xl,
  .ic-support-section .max-w-7xl,
  .ic-advantages-section .max-w-7xl {
    max-width: 80rem;
  }

  .ic-platform-intro {
    align-items: center;
  }

  .ic-platform-stats {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.875rem;
  }

  .ic-reviews-grid {
    gap: 1.75rem;
  }

  #imx-knowledge-base .max-w-7xl,
  #imx-final-cta .max-w-7xl {
    max-width: 80rem;
  }
}

@media (min-width: 1280px) {
  #imx-hero-registration .lg\:grid.lg\:grid-cols-12 {
    gap: 4rem;
  }

  .ic-reviews-grid {
    gap: 2rem;
  }
}

/* Reviews on inner page */
.ic-reviews-grid--page {
  margin-bottom: 2rem;
}

.ic-faq-item:last-child {
  border-bottom: none;
}

/* ── Life vision / inspirational block ── */
.ic-vision-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  background: linear-gradient(165deg, #0f172a 0%, #111827 45%, #0c4a3e 100%);
  color: #e5e7eb;
}

@media (min-width: 768px) {
  .ic-vision-section {
    padding: 6.5rem 0 7.5rem;
  }
}

.ic-vision-section__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(59, 130, 246, 0.22), transparent 70%),
    radial-gradient(ellipse 45% 40% at 85% 75%, rgba(16, 185, 129, 0.2), transparent 68%);
  pointer-events: none;
}

.ic-vision-header__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.ic-vision-header__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.ic-vision-header__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.ic-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .ic-vision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ic-vision-grid {
    gap: 1.75rem;
    margin-top: 3.5rem;
  }
}

.ic-vision-card {
  padding: 1.5rem 1.375rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ic-vision-card:hover {
  border-color: rgba(110, 231, 183, 0.35);
  transform: translateY(-2px);
}

.ic-vision-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(16, 185, 129, 0.25));
  color: #6ee7b7;
  font-size: 1.375rem;
}

.ic-vision-card__title {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f9fafb;
}

.ic-vision-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
}

.ic-vision-quote {
  margin: 3rem auto 0;
  max-width: 42rem;
  padding: 0;
  border: none;
  text-align: center;
}

.ic-vision-quote p {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: #e2e8f0;
}

.ic-vision-footer {
  margin-top: 2.5rem;
}

.ic-vision-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ic-vision-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -8px rgba(16, 185, 129, 0.55);
  color: #fff;
}

.ic-vision-note {
  margin: 1.125rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}

.ic-vision-section--embed {
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  padding: 3.5rem 1.5rem;
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .ic-vision-section--embed {
    margin: 4rem 0;
    padding: 4rem 2rem;
  }
}

.ic-vision-section--embed .ic-vision-section__inner {
  position: relative;
  z-index: 1;
}
.ic-field--phone .iti--separate-dial-code .iti__flag-container {
  left: 0;
  right: auto;
}
.ic-field--phone .iti--separate-dial-code input.ic-input {
  padding-left: 5.75rem !important;
}
.ic-field--phone .iti__selected-flag {
  display: flex !important;
  align-items: center;
}
.ic-field--phone .iti__selected-dial-code {
  margin-left: 6px;
  font-size: 0.875rem;
  color: #374151;
}
