/* ═══ Ice Studio — Homepage v4 « Cut Room » ═══ */

.ice-page {
  position: relative;
}

.ice-wrap {
  width: min(100% - 2.5rem, 76rem);
  margin: 0 auto;
}

/* ── Hero ── */
.ice-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6.5rem 1.25rem 4rem;
  overflow: clip;
}

.ice-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ice-hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.ice-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ice-headline__bold {
  font-weight: 800;
  color: rgba(14, 14, 14, 0.94);
}

.ice-headline__light {
  font-weight: 300;
  color: rgba(14, 14, 14, 0.38);
}

.ice-headline__light--italic {
  font-style: italic;
}

.ice-headline__line {
  display: block;
}

.ice-headline__normal {
  font-weight: 400;
  color: rgba(14, 14, 14, 0.42);
}

.ice-kicker {
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.42);
}

.ice-lead {
  max-width: 28rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(14, 14, 14, 0.52);
}

.ice-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ice-note {
  font-size: 0.72rem;
  color: rgba(14, 14, 14, 0.38);
}

.ice-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Suite NLE mockup ── */
.ice-suite-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2.5rem;
  perspective: 1100px;
}

@media (min-width: 1024px) {
  .ice-suite-wrap {
    margin: -1.25rem -1rem -2.5rem auto;
  }
}

.ice-suite-scene {
  position: relative;
  transform-style: preserve-3d;
}

.ice-suite-stage {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.ice-suite-float {
  transform-style: preserve-3d;
}

.ice-suite-float--main {
  transform: translateZ(0);
}

.ice-suite-float--wave {
  position: absolute;
  right: 0.35rem;
  bottom: -1rem;
  z-index: 4;
  width: 175px;
  transform: translateZ(52px);
  transform-origin: center bottom;
}

@keyframes ice-suite-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ice-suite-float-sm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.ice-suite {
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(210, 214, 222, 0.38), rgba(188, 194, 204, 0.22)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(146, 206, 250, 0.16) 48%,
      rgba(210, 216, 224, 0.38) 100%
    ) border-box;
  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 28px 70px rgba(14, 14, 14, 0.07),
    0 40px 100px rgba(146, 206, 250, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: ice-suite-float 5.8s ease-in-out 1.6s infinite;
}

.ice-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 44%);
  pointer-events: none;
}

.ice-suite::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.05;
  background-image: var(--ice-noise);
  background-size: 100px 100px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ice-suite__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(14, 14, 14, 0.06);
  background: rgba(200, 206, 214, 0.14);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.ice-suite__dots {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.ice-suite__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ice-suite__dots span:nth-child(1) { background: #ff5f57; }
.ice-suite__dots span:nth-child(2) { background: #febc2e; }
.ice-suite__dots span:nth-child(3) { background: #28c840; }

.ice-suite__file {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: rgba(14, 14, 14, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ice-suite__time {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.58rem;
  color: rgba(14, 14, 14, 0.38);
}

.ice-suite__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 370px;
}

.ice-suite__tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 3rem;
  padding: 0.85rem 0.5rem;
  border-right: 1px solid rgba(14, 14, 14, 0.06);
  background: rgba(200, 206, 214, 0.1);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.ice-suite__tool {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  color: rgba(14, 14, 14, 0.38);
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.ice-suite__tool.is-active {
  background:
    linear-gradient(rgba(146, 206, 250, 0.28), rgba(146, 206, 250, 0.14)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(146, 206, 250, 0.32) 100%) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: rgba(74, 143, 201, 0.95);
}

.ice-suite__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ice-suite__label {
  display: block;
  padding: 0.65rem 0.9rem 0.4rem;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.36);
}

.ice-suite__preview {
  flex: 1.35;
  display: flex;
  flex-direction: column;
  min-height: 175px;
  border-bottom: 1px solid rgba(14, 14, 14, 0.06);
  background: rgba(200, 206, 214, 0.06);
}

.ice-suite__preview-grid {
  position: relative;
  flex: 1;
  min-height: 140px;
  margin: 0 0.9rem 0.9rem;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.08);
  background: rgba(14, 14, 14, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 16px rgba(14, 14, 14, 0.04);
}

.ice-suite__preview-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ice-suite__preview-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.ice-suite__preview-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 24px rgba(110, 181, 239, 0.1),
    inset 0 0 48px rgba(146, 206, 250, 0.05);
  pointer-events: none;
  animation: ice-preview-pulse 4s ease-in-out infinite alternate;
}

@keyframes ice-preview-pulse {
  0% { opacity: 0.65; }
  100% { opacity: 1; }
}

.ice-suite__timeline {
  position: relative;
  flex: 1;
  min-height: 148px;
  padding-bottom: 0.65rem;
}

.ice-suite__tracks {
  position: relative;
  margin: 0 0.9rem;
  padding: 0.6rem 0.75rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(14, 14, 14, 0.06);
  background: rgba(200, 206, 214, 0.12);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.ice-suite__track {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.ice-suite__track:last-child {
  margin-bottom: 0;
}

.ice-suite__track-id {
  flex-shrink: 0;
  width: 1.4rem;
  font-family: var(--mono);
  font-size: 0.48rem;
  color: rgba(14, 14, 14, 0.38);
}

.ice-suite__lane {
  flex: 1;
  display: flex;
  gap: 5px;
  height: 20px;
  align-items: stretch;
  padding: 2px;
  border-radius: 7px;
  background: rgba(14, 14, 14, 0.03);
  border: 1px solid rgba(14, 14, 14, 0.05);
}

.ice-suite__clip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid transparent;
  backdrop-filter: blur(8px) saturate(165%);
  -webkit-backdrop-filter: blur(8px) saturate(165%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 3px 10px rgba(74, 143, 201, 0.18);
}

.ice-suite__clip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, transparent 55%);
  pointer-events: none;
}

.ice-suite__clip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.1;
  background-image: var(--ice-noise);
  background-size: 80px 80px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ice-suite__clip--1,
.ice-suite__clip--2 {
  background:
    linear-gradient(rgba(110, 181, 239, 0.72), rgba(74, 143, 201, 0.52)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.45) 0%, rgba(146, 206, 250, 0.32) 50%, rgba(210, 216, 224, 0.35) 100%) border-box;
}

.ice-suite__clip--3 {
  background:
    linear-gradient(rgba(126, 192, 245, 0.76), rgba(80, 152, 208, 0.56)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.48) 0%, rgba(146, 206, 250, 0.35) 50%, rgba(210, 216, 224, 0.38) 100%) border-box;
}

.ice-suite__clip--a1 {
  background:
    linear-gradient(rgba(94, 234, 212, 0.65), rgba(45, 212, 191, 0.45)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.42) 0%, rgba(110, 222, 190, 0.3) 50%, rgba(210, 216, 224, 0.32) 100%) border-box;
}

.ice-suite__clip--a2 {
  background:
    linear-gradient(rgba(146, 206, 250, 0.38), rgba(146, 206, 250, 0.2)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.38) 0%, rgba(146, 206, 250, 0.22) 50%, rgba(210, 216, 224, 0.28) 100%) border-box;
}

.ice-suite__clip--1 { flex: 1.8; }
.ice-suite__clip--2 { flex: 1.1; }
.ice-suite__clip--3 { flex: 2.2; }
.ice-suite__clip--a1 { flex: 2.8; }
.ice-suite__clip--a2 { flex: 1.6; }

.ice-suite__playhead {
  position: absolute;
  top: 1.55rem;
  bottom: 0.65rem;
  left: 52%;
  width: 2px;
  z-index: 3;
  background: rgba(14, 14, 14, 0.75);
  box-shadow: 0 0 8px rgba(74, 143, 201, 0.35);
  pointer-events: none;
}

.ice-suite-wrap:not(.ice-suite--live) .ice-suite__playhead {
  animation: ice-playhead 5s ease-in-out infinite;
}

@keyframes ice-playhead {
  0%, 100% { left: 30%; }
  50% { left: 68%; }
}

.ice-suite__footer {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem 0.9rem;
  border-top: 1px solid rgba(14, 14, 14, 0.06);
  background: rgba(200, 206, 214, 0.1);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.ice-suite__footer span {
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(210, 214, 222, 0.32), rgba(188, 194, 204, 0.18)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(146, 206, 250, 0.2) 100%) border-box;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  color: rgba(14, 14, 14, 0.48);
}

/* ── Waveform panel ── */
.ice-waveform {
  width: 100%;
  min-width: 175px;
  padding: 0.75rem 0.85rem 0.85rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(210, 214, 222, 0.48), rgba(188, 194, 204, 0.32)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(146, 206, 250, 0.2) 48%,
      rgba(210, 216, 224, 0.45) 100%
    ) border-box;
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 16px 40px rgba(14, 14, 14, 0.1),
    0 4px 12px rgba(146, 206, 250, 0.08);
  transform-style: preserve-3d;
  animation: ice-suite-float-sm 4.8s ease-in-out 1.8s infinite;
}

.ice-waveform__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.36);
  margin-bottom: 0.2rem;
}

.ice-waveform__title {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(14, 14, 14, 0.52);
  margin-bottom: 0.6rem;
}

.ice-waveform__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 42px;
  margin-bottom: 0.6rem;
}

.ice-waveform__bars span {
  flex: 1;
  height: 100%;
  border-radius: 3px;
  transform: scaleY(var(--h, 0.5));
  transform-origin: bottom;
  background: linear-gradient(180deg, #92cefa, #6bb5f0);
  animation: ice-bar-bounce 0.85s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.07s);
}

@keyframes ice-bar-bounce {
  from { transform: scaleY(calc(var(--h, 0.5) * 0.42)); }
  to { transform: scaleY(calc(var(--h, 0.5) * 1.18)); }
}

.ice-waveform__swatches {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ice-waveform__swatches span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.44rem;
  color: rgba(14, 14, 14, 0.42);
}

.ice-waveform__swatches i {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 1px solid rgba(14, 14, 14, 0.08);
}

.ice-hero .anim-in {
  opacity: 0;
  transform: translateY(18px);
  animation: ice-fade-up 0.85s var(--ease) var(--d, 0s) forwards;
}

.ice-hero .anim-scale {
  opacity: 0;
  transform: scale(0.94);
  animation: ice-fade-scale 0.7s var(--ease) var(--d, 0s) forwards;
}

@keyframes ice-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ice-fade-scale {
  to { opacity: 1; transform: scale(1); }
}

.anim-paused .ice-suite__preview-grid::after,
.anim-paused .ice-waveform__bars span,
.anim-paused .ice-suite,
.anim-paused .ice-waveform {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .ice-suite-wrap { perspective: none; }

  .ice-suite__playhead { animation: none; left: 52%; }

  .ice-suite-float--main,
  .ice-suite-float--wave {
    animation: none;
  }

  .ice-suite,
  .ice-waveform {
    animation: none;
  }

  .ice-suite-float--wave {
    transform: translateZ(0);
  }

  .ice-suite__preview-grid::after,
  .ice-waveform__bars span {
    animation: none;
  }

  .ice-hero .anim-in,
  .ice-hero .anim-scale {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Trust ── */
.ice-trust {
  padding: 3rem 0 3.75rem;
  border-top: 1px solid rgba(14, 14, 14, 0.06);
}

.ice-trust .trust__head {
  margin-bottom: 2rem;
}

.ice-trust .trust-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(14, 14, 14, 0.4);
}

.ice-trust .trust-label::before,
.ice-trust .trust-label::after {
  flex: 0 0 3.5rem;
  background: linear-gradient(90deg, transparent, rgba(14, 14, 14, 0.12));
}

.ice-trust .trust-label::after {
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.12), transparent);
}

.ice-trust .marquee-wrap {
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.ice-trust .marquee-wrap::before,
.ice-trust .marquee-wrap::after {
  width: 88px;
}

.ice-trust .marquee-track {
  gap: 0.85rem;
  padding: 0.5rem 0;
  animation-duration: 46s;
}

.ice-trust .marquee-item {
  flex: 0 0 172px;
  height: 78px;
  padding: 0.95rem 1.3rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(146, 206, 250, 0.22) 48%,
      rgba(255, 255, 255, 0.65) 100%
    ) border-box;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 22px rgba(14, 14, 14, 0.05);
}

.ice-trust .marquee-item img {
  max-height: 44px;
  opacity: 0.8;
  filter: saturate(0.88);
}

@media (hover: hover) {
  .ice-trust .marquee-item:hover {
    transform: translateY(-4px) scale(1.02);
    background:
      linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)) padding-box,
      linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(146, 206, 250, 0.42) 48%,
        rgba(255, 255, 255, 0.82) 100%
      ) border-box;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 14px 30px rgba(146, 206, 250, 0.14);
  }

  .ice-trust .marquee-item:hover img {
    opacity: 1;
    filter: saturate(1);
    transform: scale(1.06);
  }
}

/* ── Voices / Testimonials ── */
.ice-voices {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.ice-voices .section-intro {
  max-width: 32rem;
}

.ice-voices .scroll-testimonials {
  gap: 1rem;
}

.ice-voices .testimonial-card {
  width: 318px;
  padding: 1.2rem 1.3rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(146, 206, 250, 0.22);
  background:
    linear-gradient(165deg, #1d2028 0%, #15181f 46%, #111318 100%);
  gap: 0.95rem;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  transition:
    transform 0.55s var(--hover-ease),
    box-shadow 0.55s var(--hover-ease),
    border-color 0.55s var(--hover-ease);
}

.ice-voices .testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.03) 18%, transparent 42%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 50%, transparent);
  opacity: 0.95;
}

.ice-voices .testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0.14;
  background-image: var(--ice-noise);
  background-size: 96px 96px;
  mix-blend-mode: overlay;
}

@media (hover: hover) {
  .ice-voices .testimonial-card:hover {
    transform: translate3d(0, -3px, 0);
    border-color: rgba(146, 206, 250, 0.38);
    background:
      linear-gradient(165deg, #21242d 0%, #181b23 46%, #14171d 100%);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.24);
  }

  .ice-voices .testimonial-card:hover::before {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 20%, transparent 44%),
      linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 50%, transparent);
  }

  .ice-voices .testimonial-card:hover > p {
    background: linear-gradient(180deg, #1b1f28 0%, #161920 100%);
    border-color: rgba(146, 206, 250, 0.22);
    border-left-color: rgba(146, 206, 250, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 24px rgba(0, 0, 0, 0.12);
  }
}

.ice-voices .testimonial-head {
  position: relative;
  z-index: 3;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(146, 206, 250, 0.12);
}

.ice-voices .testimonial-logo {
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 10px;
  background: linear-gradient(180deg, #222630 0%, #181c24 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

.ice-voices .testimonial-project {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.ice-voices .testimonial-card > p {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, #191d25 0%, #141820 100%);
  border: 1px solid rgba(146, 206, 250, 0.14);
  border-left: 2px solid rgba(146, 206, 250, 0.5);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 20px rgba(0, 0, 0, 0.1);
  transition:
    background 0.55s var(--hover-ease),
    border-color 0.55s var(--hover-ease),
    box-shadow 0.55s var(--hover-ease);
}

.ice-voices .testimonial-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ice-voices .testimonial-meta strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: #92cefa;
}

.ice-voices .testimonial-meta span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
}

.ice-voices .testimonial-meta span::before {
  content: "·";
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.18);
}

/* ── Process ── */
.section-process .process-grid {
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(rgba(13, 13, 15, 0.55), rgba(8, 8, 10, 0.72)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(146, 206, 250, 0.12) 42%,
      rgba(255, 255, 255, 0.07) 100%
    ) border-box;
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-process .process-step {
  padding: 1.65rem 1.35rem 1.5rem;
  background: transparent;
}

.section-process .process-step + .process-step {
  border-color: rgba(255, 255, 255, 0.07);
}

.section-process .process-step__lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.section-process .process-num {
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
  transition: color var(--hover-duration) var(--hover-ease);
}

.section-process .process-step__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    color var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease),
    box-shadow var(--hover-duration) var(--hover-ease);
}

.section-process .process-step__icon--cycle .process-icon-cycle__item {
  filter: grayscale(1) opacity(0.42);
  transition: filter var(--hover-duration) var(--hover-ease), opacity var(--hover-duration) var(--hover-ease);
}

.section-process .process-step__rule {
  width: 2rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transition: background var(--hover-duration) var(--hover-ease);
}

@media (hover: hover) {
  .section-process .process-step:hover,
  .section-process .process-step.is-active {
    background: rgba(146, 206, 250, 0.04);
  }

  .section-process .process-step:hover .process-num,
  .section-process .process-step.is-active .process-num {
    color: rgba(146, 206, 250, 0.32);
  }

  .section-process .process-step:hover .process-step__icon,
  .section-process .process-step.is-active .process-step__icon {
    color: #92cefa;
    border-color: rgba(146, 206, 250, 0.38);
    background: rgba(18, 24, 32, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 6px 18px rgba(0, 0, 0, 0.22);
  }

  .section-process .process-step:hover .process-step__icon--cycle .process-icon-cycle__item,
  .section-process .process-step.is-active .process-step__icon--cycle .process-icon-cycle__item {
    filter: none;
    opacity: 1;
  }

  .section-process .process-step:hover .process-step__rule,
  .section-process .process-step.is-active .process-step__rule {
    background: linear-gradient(90deg, rgba(146, 206, 250, 0.65), rgba(146, 206, 250, 0.12));
  }

  .section-process .process-step:hover .process-desc,
  .section-process .process-step.is-active .process-desc {
    color: rgba(255, 255, 255, 0.62);
  }
}

/* ── Scroll section zoom ── */
.scroll-zoom-head,
.scroll-zoom-body {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.scroll-zoom-head {
  transform-origin: top center;
}

.scroll-zoom-body {
  transform-origin: center top;
}

.ice-pricing__content.scroll-zoom-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-zoom-head,
  .scroll-zoom-body {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── Services ── */
.ice-services {
  padding: 5.5rem 0;
}

.ice-services .services-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .ice-services .services-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
  }
}

.ice-services .services-bento {
  gap: 1.25rem;
}

/* ── Tips ── */
.ice-tips {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(14, 14, 14, 0.02) 40%, transparent);
}

.ice-tips .tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ice-tips .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ice-tips .tips-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
}

.ice-tips .tip-card {
  min-height: 100%;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 1.45rem 1.3rem 1.5rem;
  background:
    linear-gradient(rgba(210, 214, 222, 0.34), rgba(188, 194, 204, 0.2)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(146, 206, 250, 0.16) 48%,
      rgba(210, 216, 224, 0.38) 100%
    ) border-box;
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 32px rgba(14, 14, 14, 0.06);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.ice-tips .tip-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55) 50%, transparent);
}

.ice-tips .tip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.05;
  background-image: var(--ice-noise);
  background-size: 100px 100px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@media (hover: hover) {
  .ice-tips .tip-card:hover {
    transform: translateY(-4px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 18px 44px rgba(146, 206, 250, 0.1);
  }
}

.ice-tips .tip-card__tag {
  margin-bottom: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(74, 143, 201, 0.72);
}

.ice-tips .tip-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.ice-tips .tip-card p {
  font-size: 0.81rem;
  line-height: 1.62;
  color: rgba(14, 14, 14, 0.5);
}

/* ── FAQ ── */
.ice-faq {
  padding: 5rem 0 4rem;
}

.ice-faq .faq-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.ice-faq .faq-list {
  max-width: 44rem;
  margin: 0 auto;
}

/* ── Contact CTA ── */
.ice-contact {
  padding: 3rem 1.25rem 5rem;
}

.ice-contact__card {
  position: relative;
  isolation: isolate;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(24, 26, 30, 0.78), rgba(12, 13, 16, 0.65)) padding-box,
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.24) 0%,
      rgba(146, 206, 250, 0.16) 48%,
      rgba(255, 255, 255, 0.1) 100%
    ) border-box;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 64px rgba(14, 14, 14, 0.12),
    0 8px 28px rgba(146, 206, 250, 0.07);
  color: #fff;
}

.ice-contact__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 85% at 50% -10%, rgba(146, 206, 250, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 55% at 100% 100%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.ice-contact__card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: var(--ice-noise);
  background-size: 100px 100px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ice-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ice-contact__main {
  padding: 2.75rem 1.75rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ice-contact__main {
    padding: 3.25rem 3rem 2.5rem;
  }
}

.ice-contact__label {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.ice-contact__title {
  margin: 0 auto 1rem;
  max-width: 14ch;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}

.ice-contact__title .title-highlight::after {
  height: 0.14em;
  bottom: 0.1em;
  background: linear-gradient(
    92deg,
    rgba(146, 206, 250, 0.55) 0%,
    rgba(146, 206, 250, 0.35) 100%
  );
  box-shadow: none;
}

.ice-contact__title-accent {
  color: rgba(146, 206, 250, 0.95);
  -webkit-text-fill-color: rgba(146, 206, 250, 0.95);
}

.ice-contact__sub {
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.46);
}

.ice-contact__desc {
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.42);
  max-width: 30rem;
}

.ice-contact__bar {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 27px 27px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-sizing: border-box;
}

.ice-contact__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 640px) {
  .ice-contact__bar {
    padding: 1.35rem 2rem 2rem;
  }

  .ice-contact__bar-inner {
    flex-direction: row;
    justify-content: center;
    gap: 0.85rem;
  }
}

.ice-contact__btn {
  flex: 1;
  max-width: 20rem;
  justify-content: center;
}

.ice-contact__bar .btn-dark {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(236, 240, 246, 0.88)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(210, 216, 224, 0.65) 100%) border-box;
  color: #0e0e0e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 8px 22px rgba(14, 14, 14, 0.14);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ice-contact__bar .btn-dark:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(rgba(255, 255, 255, 1), rgba(244, 247, 250, 0.95)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(146, 206, 250, 0.35) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 12px 32px rgba(146, 206, 250, 0.18);
}

.ice-contact__bar .btn-ghost {
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(146, 206, 250, 0.14) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ice-contact__bar .btn-ghost::before {
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 52%);
  opacity: 0.75;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ice-contact__bar .btn-ghost .icon {
  position: relative;
  z-index: 1;
  opacity: 0.55;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ice-contact__bar .btn-ghost:hover {
  transform: translateY(-2px);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)) padding-box,
    linear-gradient(165deg, rgba(255, 255, 255, 0.32) 0%, rgba(146, 206, 250, 0.22) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(146, 206, 250, 0.1);
}

.ice-contact__bar .btn-ghost:hover::before {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(146, 206, 250, 0.06) 45%,
    transparent 70%
  );
}

.ice-contact__bar .btn-ghost:hover .icon {
  opacity: 0.88;
  transform: translateY(-0.5px);
}

.ice-contact__bar .btn-ghost:active,
.ice-contact__bar .btn-dark:active {
  transform: translateY(0);
  transition-duration: 0.22s;
}

/* ── Tarifs — fiche technique studio ── */
.pricing-outer.ice-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(920px, 108vh, 1180px);
  padding: clamp(5.5rem, 11vh, 8rem) 0;
  background: var(--bg-dark);
  border-bottom: 2px solid #92cefa;
  box-sizing: border-box;
}

.ice-pricing + .section-seam::before {
  display: none;
}

.ice-pricing + .section-seam::after {
  display: none;
}

.ice-pricing + .section-seam + .section-process {
  border-top-color: transparent;
}

.ice-pricing__shell {
  width: 100%;
  max-width: 58rem;
  margin: 0 auto;
}

.ice-pricing__masthead {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .ice-pricing__masthead {
    grid-template-columns: 1fr minmax(17rem, 21.5rem);
    align-items: start;
    gap: 2rem;
  }
}

.ice-pricing__masthead[data-pack-header]:not(.is-ready) {
  opacity: 0;
  transform: translateY(28px);
}

.ice-pricing__masthead.is-ready {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.ice-pricing__masthead[data-pack-header]:not(.is-ready) .ice-pricing__extras {
  opacity: 0;
  transform: translateY(14px);
}

.ice-pricing__masthead.is-ready .ice-pricing__extras {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s var(--ease) 0.12s,
    transform 0.8s var(--ease) 0.12s,
    box-shadow 0.55s var(--hover-ease);
}

.ice-pricing__masthead-copy {
  text-align: left;
}

.ice-pricing__label {
  margin: 0 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(146, 206, 250, 0.72);
}

.ice-pricing__title {
  margin: 0 0 0.55rem;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.ice-pricing__title .title-highlight::after {
  height: 0.16em;
  bottom: 0.13em;
}

.ice-pricing__title-accent {
  color: rgba(146, 206, 250, 0.95);
}

.ice-pricing__lead {
  max-width: 28rem;
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

.ice-pricing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ice-pricing__btn {
  gap: 0.55rem;
}

.ice-pricing__btn-icon {
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.ice-pricing__btn-icon svg {
  display: block;
}

.ice-pricing__extras {
  position: relative;
  isolation: isolate;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(146, 206, 250, 0.3);
  background: rgba(18, 20, 26, 0.78);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.18);
  will-change: transform, opacity;
  transition: border-color 0.55s var(--hover-ease), box-shadow 0.55s var(--hover-ease);
}

.ice-pricing__extras-head {
  padding: 1rem 1.15rem 0.9rem;
  border-bottom: 1px solid rgba(146, 206, 250, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.ice-pricing__extras-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(146, 206, 250, 0.72);
}

.ice-pricing__extras-note {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.34);
}

.ice-pricing__extras-list {
  display: flex;
  flex-direction: column;
}

.ice-extra {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(146, 206, 250, 0.12);
}

.ice-pricing__masthead.is-ready .ice-extra {
  animation: ice-extra-in 0.75s var(--hover-ease) both;
}

.ice-pricing__masthead.is-ready .ice-extra:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes ice-extra-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.ice-extra::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(146, 206, 250, 0.1) 0%, rgba(255, 255, 255, 0.035) 100%);
  opacity: 0;
  transition: opacity 0.55s var(--hover-ease);
  pointer-events: none;
}

.ice-extra > * {
  position: relative;
  z-index: 1;
}

.ice-extra:last-child {
  border-bottom: none;
}

.ice-extra__tag {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 0.55s var(--hover-ease),
    border-color 0.55s var(--hover-ease),
    background 0.55s var(--hover-ease),
    transform 0.55s var(--hover-ease);
}

.ice-extra__body {
  min-width: 0;
}

.ice-extra__name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.55s var(--hover-ease);
}

.ice-extra__desc {
  margin: 0.18rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.36);
  transition: color 0.55s var(--hover-ease);
}

.ice-extra__price {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
  transition:
    color 0.55s var(--hover-ease),
    transform 0.55s var(--hover-ease);
}

.ice-extra__price span {
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(146, 206, 250, 0.82);
  transition: color 0.55s var(--hover-ease);
}

@media (hover: hover) {
  .ice-extra:hover::before {
    opacity: 1;
  }

  .ice-extra:hover .ice-extra__name {
    color: #fff;
  }

  .ice-extra:hover .ice-extra__desc {
    color: rgba(255, 255, 255, 0.5);
  }

  .ice-extra:hover .ice-extra__tag {
    color: rgba(146, 206, 250, 0.88);
    border-color: rgba(146, 206, 250, 0.28);
    background: rgba(146, 206, 250, 0.08);
    transform: translateX(2px);
  }

  .ice-extra:hover .ice-extra__price {
    transform: translateX(-2px);
  }

  .ice-extra:hover .ice-extra__price span {
    color: rgba(184, 224, 252, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ice-pricing__masthead.is-ready .ice-pricing__extras,
  .ice-extra {
    transition: none;
    animation: none;
  }

  .ice-extra::before {
    display: none;
  }
}

.ice-pricing__board {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
}

/* ── Rate row ── */
.ice-rate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "body"
    "action";
  gap: 0;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(146, 206, 250, 0.32);
  background: rgba(18, 20, 26, 0.78);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.18);
  transform: none;
}

.ice-rate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%);
  pointer-events: none;
  transition: opacity 0.55s var(--hover-ease), background 0.55s var(--hover-ease);
}

.ice-rate::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: var(--ice-noise);
  background-size: 100px 100px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ice-rate[data-pack-card]:not(.is-ready) {
  opacity: 0;
  pointer-events: none;
}

.ice-rate.is-ready {
  opacity: 1;
  transition:
    transform 0.55s var(--hover-ease),
    box-shadow 0.55s var(--hover-ease),
    border-color 0.55s var(--hover-ease);
}

.ice-rate--hero,
.ice-rate--short {
  border-color: rgba(146, 206, 250, 0.44);
}

.ice-rate__body,
.ice-rate__action {
  position: relative;
  z-index: 1;
}

.ice-rate__action {
  grid-area: action;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: end;
  align-content: center;
  gap: 0.35rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(146, 206, 250, 0.14);
}

@media (min-width: 768px) {
  .ice-rate {
    grid-template-columns: minmax(0, 1fr) 9.5rem;
    grid-template-areas: "body action";
    align-items: center;
    column-gap: 1.5rem;
    padding: 1.2rem 1.4rem;
  }

  .ice-rate__action {
    width: 9.5rem;
    justify-self: end;
    padding-top: 0;
    border-top: none;
  }
}

.ice-rate__body {
  grid-area: body;
  min-width: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ice-rate__body {
    margin-bottom: 0;
  }
}

.ice-rate__format {
  margin: 0 0 0.4rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(146, 206, 250, 0.65);
  transition: color 0.45s var(--hover-ease);
}

.ice-rate--short .ice-rate__format {
  color: rgba(146, 206, 250, 0.65);
}

.ice-rate__name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  transition: color 0.45s var(--hover-ease);
}

.ice-rate__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  max-width: 36ch;
  transition: color 0.45s var(--hover-ease);
}

@media (hover: hover) {
  .ice-rate.is-ready:hover {
    transform: translateY(-3px);
    border-color: rgba(146, 206, 250, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 22px 50px rgba(0, 0, 0, 0.24);
  }

  .ice-rate.is-ready:hover::before {
    background: linear-gradient(90deg, rgba(146, 206, 250, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  }

  .ice-rate:hover .ice-rate__format {
    color: rgba(146, 206, 250, 0.95);
  }

  .ice-rate:hover .ice-rate__name {
    color: #fff;
  }

  .ice-rate:hover .ice-rate__desc {
    color: rgba(255, 255, 255, 0.56);
  }

  .ice-rate:hover .ice-rate__duration {
    color: rgba(255, 255, 255, 0.48);
  }

  .ice-rate:hover .ice-rate__price span {
    color: rgba(184, 224, 252, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ice-rate.is-ready {
    transition: box-shadow 0.2s ease;
  }

  .ice-rate.is-ready:hover {
    transform: none;
  }

  .ice-rate::before {
    transition: none;
  }
}

.ice-rate__duration {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  text-align: right;
  transition: color 0.45s var(--hover-ease);
}

.ice-rate__price {
  margin: 0.15rem 0 0.25rem;
  width: 100%;
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  text-align: right;
  transition: transform 0.55s var(--hover-ease);
}

.ice-rate__price span {
  font-size: 0.42em;
  font-weight: 700;
  color: rgba(146, 206, 250, 0.85);
  transition: color 0.55s var(--hover-ease);
}

.ice-rate__cta {
  width: 100%;
  min-width: 0;
  justify-self: end;
  margin-top: 0.15rem;
}

.ice-rate__cta.btn-iridescent {
  padding: 0.48rem 0.75rem;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ice-rate__cta.btn-iridescent::before {
  opacity: 0.04;
}

.ice-rate__cta.btn-iridescent::after {
  opacity: 0.2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%);
}

@media (hover: hover) {
  .ice-rate__cta.btn-iridescent:hover {
    transform: none;
    border-color: rgba(146, 206, 250, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 768px) {
  .ice-rate__cta {
    width: 100%;
  }
}

.ice-pricing__trust {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 768px) {
  .ice-pricing__trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ice-pricing__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ice-pricing__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  line-height: 0;
}

.ice-pricing__trust-icon svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.ice-pricing__trust-copy strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.ice-pricing__trust-copy span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.36);
}

.ice-pricing__note {
  margin: 1.5rem 0 0;
  padding-top: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
}

.ice-pricing__note a {
  color: #92cefa;
  text-decoration: none;
}

.ice-pricing__note a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .ice-pricing__masthead[data-pack-header],
  .ice-rate[data-pack-card] {
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
}