/* ==========================================================================
   ICE CLIM — Mobile Landing (V1)
   One-screen, mobile-only, zero external requests
   ========================================================================== *//* ---------- Reset ---------- */.iceclim-landing-shell *, .iceclim-landing-shell *::before, .iceclim-landing-shell *::after { box-sizing: border-box; }/* dropped: html,
body */
/* dropped: body */
.iceclim-landing-shell input, .iceclim-landing-shell select, .iceclim-landing-shell textarea, .iceclim-landing-shell button {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}.iceclim-landing-shell button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}.iceclim-landing-shell a { text-decoration: none; color: inherit; }.iceclim-landing-shell input::placeholder, .iceclim-landing-shell textarea::placeholder { color: #9CA3AF; }.iceclim-landing-shell textarea { resize: none; }.iceclim-landing-shell svg { display: block; flex-shrink: 0; }.iceclim-landing-shell img { max-width: 100%; display: block; }/* ---------- Design tokens ---------- */.iceclim-landing-shell {/* Responsive scale (defaults = 430 px width, tall screens) */
  --navy: #061827;
  --orange: #FF5A0A;
  --orange-soft: #FFF3EC;
  --orange-border: #FF9E6E;
  --orange-strong: #B34400;
  --green: #25D366;
  --bg: #F5F6F8;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --danger: #DC2626;

  --radius-card: 20px;
  --radius-input: 10px;
  --radius-btn: 12px;

  
  --pad-h: 20px;
  --pad-form: 16px;
  --h-input: 44px;
  --h-textarea: 62px;
  --h-hero-cta: 48px;
  --h-title: 32px;
  --h-subtitle: 15px;
  --field-gap: 10px;
  --hero-pad-top: 12px;
  --hero-pad-bot: 14px;
  --logo-h: 36px;
  --call-size: 46px;
}/* ==========================================================================
   PAGE SHELL
   ========================================================================== */.iceclim-landing-shell .page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  container-type: size;
  container-name: page;
}/* ==========================================================================
   HERO
   ========================================================================== */.iceclim-landing-shell .hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: var(--hero-pad-top) var(--pad-h) var(--hero-pad-bot);
  flex: 0 0 auto;
  overflow: hidden;
}.iceclim-landing-shell .hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.88) 42%, rgba(6, 24, 39, 0.45) 100%),
    url('../images/iceclim-hero-mobile-crop-860x480.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
}/* WebP if supported */@supports (background-image: image-set(url("data:image/webp;base64,UklGRhoAAABXRUJQVlA4TA0AAAAvAAAAEAcQERGIiP4HAA==") type("image/webp"))) {.iceclim-landing-shell .hero__bg {
    background-image:
      linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.88) 42%, rgba(6, 24, 39, 0.45) 100%),
      image-set(
        url('../images/iceclim-hero-mobile-crop-860x480.webp') type('image/webp'),
        url('../images/iceclim-hero-mobile-crop-860x480.jpg') type('image/jpeg')
      );
  }}.iceclim-landing-shell .hero__inner {
  position: relative;
  z-index: 1;
}.iceclim-landing-shell .hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}.iceclim-landing-shell .hero__logo {
  height: var(--logo-h);
  width: auto;
  display: block;
}.iceclim-landing-shell .hero__call {
  width: var(--call-size);
  height: var(--call-size);
  flex: 0 0 var(--call-size);
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 90, 10, 0.35);
  transition: transform 0.1s ease;
}.iceclim-landing-shell .hero__call:active { transform: scale(0.95); }.iceclim-landing-shell .hero__title {
  font-size: var(--h-title);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
  color: var(--white);
  text-wrap: balance;
}.iceclim-landing-shell .hero__subtitle {
  font-size: var(--h-subtitle);
  line-height: 1.35;
  color: #CBD5E1;
  margin: 0 0 12px;
  font-weight: 400;
}.iceclim-landing-shell .hero__cta {
  display: flex;
  gap: 8px;
}/* ==========================================================================
   BUTTONS
   ========================================================================== */.iceclim-landing-shell .btn {
  height: var(--h-hero-cta);
  border-radius: var(--radius-btn);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}.iceclim-landing-shell .btn:active { transform: scale(0.98); }.iceclim-landing-shell .btn--orange {
  background: var(--orange);
  flex: 1;
  box-shadow: 0 4px 12px rgba(255, 90, 10, 0.35);
}.iceclim-landing-shell .btn--green {
  background: var(--green);
  flex: 1;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}.iceclim-landing-shell .btn--submit {
  background: var(--orange);
  width: 100%;
  height: 48px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(255, 90, 10, 0.35);
  margin-top: auto;
}.iceclim-landing-shell .btn--submit:active {
  transform: scale(0.99);
  box-shadow: 0 3px 8px rgba(255, 90, 10, 0.35);
}/* ==========================================================================
   FORM
   ========================================================================== */.iceclim-landing-shell .form-wrap {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 10px 0;
  margin-top: -10px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}.iceclim-landing-shell .form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 12px var(--pad-form) 12px;
  display: flex;
  flex-direction: column;
  gap: var(--field-gap);
  box-shadow: 0 -6px 20px rgba(6, 24, 39, 0.06), 0 8px 24px rgba(6, 24, 39, 0.06);
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}.iceclim-landing-shell .form__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 2px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
}.iceclim-landing-shell .form__title svg { color: var(--orange); }.iceclim-landing-shell .field { margin: 0; }.iceclim-landing-shell .field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}.iceclim-landing-shell .req { color: var(--orange); }.iceclim-landing-shell .field__wrap {
  position: relative;
  display: block;
}.iceclim-landing-shell .field__wrap .field__icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  width: 16px;
  height: 16px;
}.iceclim-landing-shell .field__wrap .field__chevron {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  width: 16px;
  height: 16px;
}.iceclim-landing-shell .field__wrap input, .iceclim-landing-shell .field__wrap select, .iceclim-landing-shell .field__wrap textarea {
  width: 100%;
  height: var(--h-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--white);
  padding: 0 12px 0 34px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}.iceclim-landing-shell .field__wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
}.iceclim-landing-shell .field__wrap select:required:invalid { color: #9CA3AF; }.iceclim-landing-shell .field__wrap select option { color: var(--text); }.iceclim-landing-shell .field__wrap select option:first-child { color: #9CA3AF; }.iceclim-landing-shell .field__wrap--textarea .field__icon {
  top: 12px;
  transform: none;
}.iceclim-landing-shell .field__wrap textarea {
  height: var(--h-textarea);
  min-height: var(--h-textarea);
  padding: 10px 12px 10px 34px;
  line-height: 1.4;
  display: block;
}.iceclim-landing-shell .field__wrap input:focus, .iceclim-landing-shell .field__wrap select:focus, .iceclim-landing-shell .field__wrap textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 10, 0.15);
}.iceclim-landing-shell .field__error {
  color: var(--danger);
  font-size: 11px;
  line-height: 1.2;
  margin: 2px 0 0;
}.iceclim-landing-shell .field__error:empty {
  display: none;
  margin: 0;
}/* Localisation row */.iceclim-landing-shell .field--loc .field__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}.iceclim-landing-shell .field--loc .field__wrap {
  flex: 1 1 auto;
  min-width: 0;
}.iceclim-landing-shell .field--loc .field__wrap input {
  padding-right: 8px;
  font-size: 13px;
  text-overflow: ellipsis;
}.iceclim-landing-shell .btn-maps {
  flex: 0 0 auto;
  height: var(--h-input);
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  transition: transform 0.1s ease, border-color 0.15s ease;
}.iceclim-landing-shell .btn-maps:active { transform: scale(0.98); }.iceclim-landing-shell .btn-maps:hover { border-color: #D1D5DB; }.iceclim-landing-shell .btn-maps__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}.iceclim-landing-shell .btn-maps__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}.iceclim-landing-shell .btn-maps__sub {
  font-size: 10px;
  color: var(--muted);
}/* Photo note */.iceclim-landing-shell .photo-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--orange-soft);
  border: 1.5px dashed var(--orange-border);
  border-radius: 10px;
}.iceclim-landing-shell .photo-note__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}.iceclim-landing-shell .photo-note__text {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
}.iceclim-landing-shell .photo-note__text strong { color: var(--orange-strong); font-weight: 700; }.iceclim-landing-shell .photo-note__long { display: inline; }.iceclim-landing-shell .photo-note__short { display: none; }/* Trust row (inside form) */.iceclim-landing-shell .trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #F1F2F4;
}.iceclim-landing-shell .trust-row__item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}.iceclim-landing-shell .trust-row__item svg {
  color: var(--orange);
  width: 18px;
  height: 18px;
}.iceclim-landing-shell .trust-row__item span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}.iceclim-landing-shell .trust-row__item strong {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
}.iceclim-landing-shell .trust-row__item em {
  font-style: normal;
  font-size: 9.5px;
  color: var(--muted);
}/* ==========================================================================
   LOWER SECTION (outside form card, appears on tall screens)
   ========================================================================== */.iceclim-landing-shell .lower {
  flex: 0 0 auto;
  display: none;
  margin: 8px 10px 10px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(6, 24, 39, 0.06);
  height: 130px;
}.iceclim-landing-shell .lower__text {
  flex: 0 0 50%;
  padding: 10px 6px 10px 12px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  align-items: center;
}.iceclim-landing-shell .lower__item {
  display: flex;
  align-items: center;
  gap: 8px;
}.iceclim-landing-shell .lower__item svg {
  color: var(--orange);
  width: 20px;
  height: 20px;
}.iceclim-landing-shell .lower__item span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}.iceclim-landing-shell .lower__item strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
}.iceclim-landing-shell .lower__item em {
  font-style: normal;
  font-size: 9.5px;
  color: var(--muted);
}.iceclim-landing-shell .lower__img {
  flex: 0 0 50%;
  background-image: url('../images/iceclim-ac-default-480.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}/* ==========================================================================
   BOTTOM CTA BAR (only very tall/wide screens)
   ========================================================================== */.iceclim-landing-shell .bottom-cta {
  flex: 0 0 auto;
  display: none;
  padding: 0 0 env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 1px solid #EEF0F3;
}.iceclim-landing-shell .bottom-cta__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  color: var(--white);
  transition: filter 0.1s ease;
}.iceclim-landing-shell .bottom-cta__btn:active { filter: brightness(0.9); }.iceclim-landing-shell .bottom-cta__btn--call { background: var(--orange); }.iceclim-landing-shell .bottom-cta__btn--wa { background: var(--green); }.iceclim-landing-shell .bottom-cta__btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}.iceclim-landing-shell .bottom-cta__btn strong { font-size: 14px; font-weight: 800; letter-spacing: 0.04em; }.iceclim-landing-shell .bottom-cta__btn em { font-style: normal; font-size: 11px; font-weight: 500; opacity: 0.9; }/* ==========================================================================
   RESPONSIVE — WIDTH BREAKPOINTS (cascade down from 430)
   ========================================================================== *//* 414 */@container page (max-width: 429px) {.iceclim-landing-shell .page > * {
    --pad-h: 20px;
    --pad-form: 15px;
    --h-input: 44px;
    --h-textarea: 60px;
    --h-hero-cta: 48px;
    --h-title: 30px;
    --h-subtitle: 15px;
    --field-gap: 10px;
    --logo-h: 34px;
  }}/* 390 */@container page (max-width: 413px) {.iceclim-landing-shell .page > * {
    --pad-h: 18px;
    --pad-form: 14px;
    --h-input: 42px;
    --h-textarea: 58px;
    --h-hero-cta: 46px;
    --h-title: 28px;
    --h-subtitle: 14px;
    --field-gap: 8px;
    --logo-h: 32px;
  }.iceclim-landing-shell .form__title { font-size: 15px; }}/* 375 */@container page (max-width: 389px) {.iceclim-landing-shell .page > * {
    --pad-h: 16px;
    --pad-form: 13px;
    --h-input: 40px;
    --h-textarea: 52px;
    --h-hero-cta: 42px;
    --h-title: 26px;
    --h-subtitle: 13px;
    --field-gap: 7px;
    --logo-h: 30px;
    --call-size: 44px;
    --hero-pad-top: 10px;
    --hero-pad-bot: 12px;
  }.iceclim-landing-shell .form__title { font-size: 14px; }.iceclim-landing-shell .btn--submit { height: 46px; font-size: 14px; }.iceclim-landing-shell .lower { display: none !important; }}/* 360 — critical, per user spec */@container page (max-width: 374px) {.iceclim-landing-shell .page > * {
    --pad-h: 14px;
    --pad-form: 10px;
    --h-input: 36px;
    --h-textarea: 42px;
    --h-hero-cta: 38px;
    --h-title: 24px;
    --h-subtitle: 12px;
    --field-gap: 5px;
    --logo-h: 28px;
    --call-size: 40px;
    --hero-pad-top: 8px;
    --hero-pad-bot: 8px;
  }.iceclim-landing-shell .hero__title { margin: 5px 0 3px; line-height: 1.05; }.iceclim-landing-shell .hero__subtitle {
    margin: 0 0 8px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }.iceclim-landing-shell .form { padding: 10px; }.iceclim-landing-shell .form__title { font-size: 13px; padding: 0; }.iceclim-landing-shell .form__title svg { width: 14px; height: 14px; }.iceclim-landing-shell .field label { font-size: 11px; margin-bottom: 3px; }.iceclim-landing-shell .field__wrap input, .iceclim-landing-shell .field__wrap select, .iceclim-landing-shell .field__wrap textarea { font-size: 13px; padding-left: 32px; padding-right: 10px; }.iceclim-landing-shell .field__wrap .field__icon { width: 15px; height: 15px; left: 10px; }.iceclim-landing-shell .field__wrap .field__chevron { width: 15px; height: 15px; right: 10px; }.iceclim-landing-shell .field--loc .field__wrap input { font-size: 12px; }.iceclim-landing-shell .btn-maps { padding: 0 8px; gap: 5px; }.iceclim-landing-shell .btn-maps__title { font-size: 11px; }.iceclim-landing-shell .btn-maps__sub { font-size: 9px; }.iceclim-landing-shell .btn { font-size: 13px; gap: 6px; }.iceclim-landing-shell .btn svg { width: 15px; height: 15px; }.iceclim-landing-shell .photo-note { padding: 6px 8px; gap: 8px; }.iceclim-landing-shell .photo-note__icon { width: 30px; height: 30px; }.iceclim-landing-shell .photo-note__icon svg { width: 15px; height: 15px; }.iceclim-landing-shell .photo-note__text { font-size: 10.5px; line-height: 1.3; }.iceclim-landing-shell .btn--submit { height: 42px; font-size: 13px; }.iceclim-landing-shell .btn--submit svg { width: 16px; height: 16px; }/* Compact-mode: submit sits right below photo (no auto stretch) */.iceclim-landing-shell .form { flex: 0 1 auto; }.iceclim-landing-shell .btn--submit { margin-top: 6px; }.iceclim-landing-shell .trust-row { display: none !important; }.iceclim-landing-shell .lower { display: none !important; }.iceclim-landing-shell .bottom-cta { display: none !important; }}/* 320 — ultra-compact, per user spec */@container page (max-width: 340px) {.iceclim-landing-shell .page > * {
    --pad-h: 12px;
    --pad-form: 8px;
    --h-input: 34px;
    --h-textarea: 38px;
    --h-hero-cta: 36px;
    --h-title: 22px;
    --h-subtitle: 11px;
    --field-gap: 4px;
    --logo-h: 24px;
    --call-size: 36px;
    --hero-pad-top: 6px;
    --hero-pad-bot: 6px;
  }.iceclim-landing-shell .hero__header { min-height: 40px; }.iceclim-landing-shell .hero__title { margin: 4px 0 2px; line-height: 1.05; }.iceclim-landing-shell .hero__subtitle { display: none; }.iceclim-landing-shell .form { padding: 8px; }.iceclim-landing-shell .form__title { font-size: 12px; padding: 0; gap: 6px; }.iceclim-landing-shell .form__title svg { width: 13px; height: 13px; }.iceclim-landing-shell .field label { font-size: 10.5px; margin-bottom: 2px; }.iceclim-landing-shell .field__wrap input, .iceclim-landing-shell .field__wrap select, .iceclim-landing-shell .field__wrap textarea { font-size: 12.5px; padding-left: 30px; padding-right: 10px; }.iceclim-landing-shell .field__wrap .field__icon { width: 14px; height: 14px; left: 9px; }.iceclim-landing-shell .field__wrap .field__chevron { width: 14px; height: 14px; right: 9px; }.iceclim-landing-shell .field--loc .field__wrap input { font-size: 11.5px; padding-left: 28px; }.iceclim-landing-shell .btn-maps { padding: 0 6px; gap: 4px; }.iceclim-landing-shell .btn-maps svg { width: 14px; height: 18px; }.iceclim-landing-shell .btn-maps__title { font-size: 10.5px; }.iceclim-landing-shell .btn-maps__sub { font-size: 8.5px; }.iceclim-landing-shell .btn { font-size: 12px; gap: 5px; }.iceclim-landing-shell .btn svg { width: 13px; height: 13px; }.iceclim-landing-shell .photo-note { padding: 5px 7px; gap: 7px; }.iceclim-landing-shell .photo-note__icon { width: 26px; height: 26px; border-radius: 6px; }.iceclim-landing-shell .photo-note__icon svg { width: 13px; height: 13px; }.iceclim-landing-shell .photo-note__text { font-size: 10px; line-height: 1.3; }.iceclim-landing-shell .photo-note__long { display: none; }.iceclim-landing-shell .photo-note__short { display: inline; }.iceclim-landing-shell .btn--submit { height: 40px; font-size: 12px; }.iceclim-landing-shell .btn--submit svg { width: 14px; height: 14px; }/* Compact-mode: submit sits right below photo (no auto stretch) */.iceclim-landing-shell .form { flex: 0 1 auto; }.iceclim-landing-shell .btn--submit { margin-top: 6px; }.iceclim-landing-shell .trust-row { display: none !important; }.iceclim-landing-shell .lower { display: none !important; }.iceclim-landing-shell .bottom-cta { display: none !important; }}/* ==========================================================================
   RESPONSIVE — HEIGHT BREAKPOINTS
   ========================================================================== *//* Show lower section only when width AND height allow it */@container page (min-width: 390px) and (min-height: 680px) {.iceclim-landing-shell .lower { display: flex; }.iceclim-landing-shell .trust-row { display: none; }}/* Show bottom CTA only on very tall + wide */@container page (min-width: 414px) and (min-height: 880px) {.iceclim-landing-shell .bottom-cta { display: flex; }}/* Short screens — nudge things tighter */@container page (max-height: 670px) {.iceclim-landing-shell .lower { display: none !important; }.iceclim-landing-shell .trust-row { display: grid; }}@container page (max-height: 700px) {.iceclim-landing-shell .page > * {
    --h-hero-cta: 42px;
    --h-title: 25px;
    --field-gap: 6px;
    --hero-pad-top: 8px;
    --hero-pad-bot: 10px;
  }.iceclim-landing-shell .form__title { font-size: 13.5px; padding: 0 0 2px; }}@container page (max-height: 640px) {.iceclim-landing-shell .page > * {
    --h-input: 36px;
    --h-textarea: 42px;
    --h-hero-cta: 38px;
    --h-title: 24px;
    --h-subtitle: 12px;
    --field-gap: 5px;
    --pad-form: 10px;
    --hero-pad-top: 8px;
    --hero-pad-bot: 8px;
    --logo-h: 28px;
    --call-size: 40px;
  }.iceclim-landing-shell .form { padding: 10px; }.iceclim-landing-shell .form__title { font-size: 13px; padding: 0; }.iceclim-landing-shell .field label { font-size: 11px; margin-bottom: 3px; }.iceclim-landing-shell .btn--submit { height: 42px; font-size: 13px; }/* Short screens: submit anchored right below photo */.iceclim-landing-shell .form { flex: 0 1 auto; }.iceclim-landing-shell .btn--submit { margin-top: 6px; }.iceclim-landing-shell .trust-row { display: none !important; }.iceclim-landing-shell .lower { display: none !important; }.iceclim-landing-shell .bottom-cta { display: none !important; }}@container page (max-height: 580px) {.iceclim-landing-shell .page > * {
    --h-input: 34px;
    --h-textarea: 38px;
    --h-hero-cta: 36px;
    --h-title: 22px;
    --field-gap: 4px;
    --pad-form: 8px;
    --hero-pad-top: 6px;
    --hero-pad-bot: 6px;
    --logo-h: 24px;
    --call-size: 36px;
  }.iceclim-landing-shell .hero__subtitle { display: none; }.iceclim-landing-shell .form { padding: 8px; }.iceclim-landing-shell .form__title { font-size: 12px; }.iceclim-landing-shell .field label { font-size: 10.5px; margin-bottom: 2px; }.iceclim-landing-shell .btn--submit { height: 40px; font-size: 12px; }/* Short screens: submit anchored right below photo */.iceclim-landing-shell .form { flex: 0 1 auto; }.iceclim-landing-shell .btn--submit { margin-top: 6px; }.iceclim-landing-shell .photo-note__long { display: none; }.iceclim-landing-shell .photo-note__short { display: inline; }.iceclim-landing-shell .photo-note { padding: 5px 7px; gap: 7px; }.iceclim-landing-shell .photo-note__icon { width: 26px; height: 26px; }.iceclim-landing-shell .photo-note__icon svg { width: 13px; height: 13px; }.iceclim-landing-shell .photo-note__text { font-size: 10px; }}/* ==========================================================================
   DESKTOP CENTERING (mobile page displayed centered)
   ========================================================================== */@media (min-width: 431px) {/* dropped: body */
.iceclim-landing-shell .page {
    box-shadow: 0 20px 60px rgba(6, 24, 39, 0.10);
    border-radius: 24px;
    height: min(100dvh, 900px);
    max-height: 900px;
    margin: max(20px, calc((100dvh - 900px) / 2)) auto;
  }}