/* ---- Scope everything under .wc-hero to avoid clashing with Elementor ---- */
  .wc-hero, .wc-hero * { box-sizing: border-box; }

  .wc-hero {
    --wc-blue:    #0a66c2;   /* cool / trust */
    --wc-blue-dk: #084a8c;
    --wc-red:     #e23636;   /* urgency / CTA */
    --wc-red-dk:  #c41f1f;
    --wc-orange:  #ff7a00;   /* warm accent */
    --wc-ink:     #16202c;   /* main text */
    --wc-ink-soft:#3a4756;
    --wc-amber:   #fff4e0;
    --wc-amber-bd:#f0c36d;

    background: #ffffff;
    color: var(--wc-ink);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 40px;
  }

  /* ---------- Top rating pill ---------- */
  .wc-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wc-amber);
    border: 1.5px solid var(--wc-amber-bd);
    color: #8a5a00;
    font-weight: 700;
    font-size: 16px;
    padding: 9px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
  }

  /* ---------- Layout grid ---------- */
  .wc-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
  }

  /* ---------- Headline ---------- */
  .wc-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    color: var(--wc-ink);
  }
  .wc-headline .hot { color: var(--wc-red); }

  /* ---------- Subheadline ---------- */
  .wc-sub {
    font-size: clamp(17px, 1.9vw, 20px);
    color: var(--wc-ink-soft);
    margin: 0 0 26px;
    max-width: 540px;
  }

  /* ---------- Product image ---------- */
  .wc-media {
    text-align: center;
  }
  .wc-media img,
  .wc-media-mobile img {
    width: 100%;
    height: auto;
    max-width: 560px;
    border-radius: 16px;
  }
  /* Mobile inline image hidden on desktop */
  .wc-media-mobile {
    display: none;
    text-align: center;
    margin: 4px 0 26px;
  }

  /* ---------- CTA button ---------- */
  .wc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--wc-red);
    color: #fff !important;
    text-decoration: none;
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 20px 24px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(226,54,54,.35);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  }
  .wc-cta:hover, .wc-cta:focus {
    background: var(--wc-red-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(226,54,54,.45);
    outline: 3px solid rgba(10,102,194,.4);
    outline-offset: 3px;
  }
  .wc-cta .dot {
    width: 12px; height: 12px;
    background: #fff;
    border-radius: 50%;
    flex: none;
    animation: wc-pulse 1.4s infinite;
  }
  @keyframes wc-pulse {
    0%,100% { opacity: 1;  transform: scale(1); }
    50%      { opacity: .5; transform: scale(.8); }
  }

  /* ---------- Reassurance row under CTA ---------- */
  .wc-trust {
    margin-top: 14px;
    font-size: 15px;
    color: var(--wc-ink-soft);
    font-weight: 600;
    text-align: center;
  }

  /* =================== MOBILE =================== */
  @media (max-width: 820px) {
    .wc-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    /* Desktop side image hidden; inline image shown in correct order */
    .wc-col-media { display: none; }
    .wc-media-mobile { display: block; }

    .wc-hero { padding: 20px 16px 32px; }
    .wc-headline { font-size: clamp(26px, 7vw, 34px); }
    .wc-sub { font-size: 18px; }       /* keep readable for 60+ */
    .wc-rating { font-size: 15px; }
  }@media (prefers-reduced-motion: reduce){
    .wc-cta, .wc-cta .dot { animation: none; transition: none; }}
.wc-pricebox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
  }
.wc-price-now {
    font-size: clamp(46px, 6vw, 60px);
    font-weight: 900;
    color: var(--wc-red);
    line-height: 1;
  }
.wc-price-old {
    font-size: clamp(24px, 3vw, 30px);
    color: var(--wc-ink-soft);
    text-decoration: line-through;
    font-weight: 600;
  }
.wc-badge {
    background: var(--wc-red);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(226,54,54,.28);
  }
.wc-save {
    font-size: 17px;
    font-weight: 700;
    color: var(--wc-blue);
    margin-bottom: 18px;
  }
.wc-scarcity {
    background: var(--wc-amber);
    border: 1.5px solid var(--wc-amber-bd);
    border-left: 6px solid var(--wc-orange);
    color: #6e4500;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
  }
.wc-headline .price-old { color: var(--wc-ink-soft); }

.zt-order-section,
  .zt-order-section * { box-sizing: border-box; }

  .zt-order-section {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 16px;
    text-align: center;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    background: #ffffff;
  }

  /* ---------- Title ---------- */
  .zt-order-title {
    margin: 0 0 12px;
    font-size: clamp(24px, 4.6vw, 34px);
    line-height: 1.18;
    font-weight: 900;
    color: #1a232e;
    letter-spacing: -0.01em;
  }
  .zt-order-title__icon { margin-right: 6px; }
  .zt-hl { color: #e23636; }

  .zt-order-text {
    margin: 0 auto 26px;
    max-width: 620px;
    font-size: clamp(16px, 2.1vw, 19px);
    line-height: 1.55;
    color: #51606f;
  }

  /* ---------- White form card ---------- */
  .zt-form-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
    padding: 30px 22px 26px;
    max-width: 540px;
    margin: 0 auto;
  }

  .zt-card-title {
    margin: 0 0 12px;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #1a232e;
  }
  .zt-card-sub {
    margin: 0 auto 22px;
    max-width: 420px;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.55;
    color: #51606f;
  }

  /* ---------- Payment pill ---------- */
  .zt-order-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    flex-wrap: wrap;
  }
  .zt-order-pill__icon { font-size: 18px; line-height: 1; }

  /* ---------- CTA ---------- */
  .zt-order-cta-wrap { width: 100%; }
  .zt-order-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    min-height: 58px;
    padding: 18px 22px;
    text-decoration: none;
    border-radius: 14px;
    font-size: clamp(17px, 2.4vw, 21px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(135deg, #e23636, #c41f1f);
    box-shadow: 0 14px 28px rgba(226, 54, 54, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .zt-order-cta:hover, .zt-order-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(226, 54, 54, 0.45);
    outline: 3px solid rgba(10, 102, 194, 0.4);
    outline-offset: 3px;
  }

  /* =================== DESKTOP =================== */
  @media (min-width: 768px) {
    .zt-order-section { padding: 40px 22px; }
  }

  /* =================== SMALL PHONES =================== */
  @media (max-width: 480px) {
    .zt-form-card { padding: 24px 16px 22px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .zt-order-cta { transition: none; }
  }

.wcp, .wcp * { box-sizing: border-box; }

  .wcp {
    --red:    #e23636;
    --red-dk: #c41f1f;
    --blue:   #0a66c2;
    --orange: #ff7a00;
    --ink:    #16202c;
    --ink-soft:#51606f;
    --navy:   #0e1726;
    --soft-bg:#fff5f3;

    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
  }

  /* ---------- Shared section spacing ---------- */
  .wcp-sec  { padding: 44px 18px; }
  .wcp-soft { padding: 44px 18px; background: var(--soft-bg); border-radius: 22px; margin: 18px 0; }

  /* ---------- Headings ---------- */
  .wcp-h2 {
    font-size: clamp(24px, 3.6vw, 34px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    color: var(--ink);
  }
  .wcp-h2--light { color: #fff; }
  .wcp-center { text-align: center; }
  .wcp-red    { color: var(--red); }
  .wcp-orange { color: var(--orange); }

  .wcp-lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 760px;
  }
  .wcp-center.wcp-lead { margin-left: auto; margin-right: auto; }

  /* ---------- 1. Feature cards ---------- */
  .wcp-feat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .wcp-feat-card {
    background: #f6f9fc;
    border: 1px solid #e7eef5;
    border-radius: 16px;
    padding: 22px 20px;
  }
  .wcp-feat-ico {
    display: inline-flex;
    width: 52px; height: 52px;
    align-items: center; justify-content: center;
    font-size: 26px;
    background: #e8f1fb;
    border-radius: 50%;
    margin-bottom: 12px;
  }
  .wcp-feat-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: .02em;
  }
  .wcp-feat-card p {
    margin: 0;
    font-size: 16px;
    color: var(--ink-soft);
  }

  /* ---------- 2. Dark "secret" section ---------- */
  .wcp-dark {
    background: var(--navy);
    color: #d8e0ea;
    padding: 46px 22px;
    border-radius: 22px;
    margin: 18px 0;
    text-align: center;
  }
  .wcp-x { color: var(--red); margin-right: 6px; }
  .wcp-dark-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: #c3cdd9;
    max-width: 760px;
    margin: 0 auto 18px;
  }
  .wcp-dark-lead strong { color: #fff; }
  .wcp-dark-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: left;
    max-width: 760px;
    margin: 14px auto 0;
  }
  .wcp-dark-ico { font-size: 26px; display: block; margin-bottom: 10px; }
  .wcp-dark-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .03em;
  }
  .wcp-dark-card p { margin: 0; font-size: 16px; color: #c3cdd9; }

  /* ---------- 3. Tech ---------- */
  .wcp-tech-img { text-align: center; margin-bottom: 26px; }
  .wcp-tech-img img {
    width: 100%;
    max-width: 620px;
    height: auto;
    border-radius: 16px;
  }
  .wcp-table {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid #e7eef5;
    border-radius: 16px;
    overflow: hidden;
  }
  .wcp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 16px;
  }
  .wcp-row:nth-child(odd) { background: #f6f9fc; }
  .wcp-row span { color: var(--ink-soft); }
  .wcp-row strong { color: var(--ink); text-align: right; }

  /* ---------- 4. Cosa ricevi ---------- */
  .wcp-incl { max-width: 760px; margin: 0 auto; }
  .wcp-incl-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
  }
  .wcp-check {
    flex: none;
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #e6f6ec; color: #1e9e54;
    border-radius: 50%;
    font-weight: 900; font-size: 15px;
  }
  .wcp-incl-txt { flex: 1; font-size: 16px; font-weight: 600; }
  .wcp-tag {
    flex: none;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* ---------- 5. Reviews ---------- */
  .wcp-rate {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .wcp-rate-stars { color: #f5a623; font-size: 28px; letter-spacing: 2px; }
  .wcp-rate-num   { font-size: 28px; font-weight: 900; }

  .wcp-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 18px;
  }
  .wcp-rev {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
  }
  .wcp-rev-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    object-position: center;}
  .wcp-rev-body { padding: 18px 20px 20px; }
  .wcp-rev-stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
  .wcp-rev-body h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
  }
  .wcp-rev-body p {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--ink-soft);
  }
  .wcp-rev-name { font-size: 14px; font-weight: 700; color: #8a96a3; }

  /* ---------- 6. FAQ ---------- */
  .wcp-faq { max-width: 760px; margin: 0 auto; }
  .wcp-faq-item {
    background: #fff;
    border: 1px solid #e7eef5;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .wcp-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    position: relative;
    padding-right: 46px;
  }
  .wcp-faq-item summary::-webkit-details-marker { display: none; }
  .wcp-faq-item summary::after {
    content: "⌄";
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-60%);
    font-size: 22px;
    color: var(--ink-soft);
    transition: transform .2s ease;
  }
  .wcp-faq-item[open] summary::after { transform: translateY(-30%) rotate(180deg); }
  .wcp-faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 16px;
    color: var(--ink-soft);
  }

  /* ---------- 7. Final urgency ---------- */
  .wcp-final {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 50px 22px;
    border-radius: 22px;
    margin: 18px 0 0;
  }
  .wcp-final-h {
    font-size: clamp(24px, 3.6vw, 32px);
    font-weight: 900;
    margin: 0 0 16px;
  }
  .wcp-final-sub {
    font-size: clamp(15px, 2vw, 17px);
    color: #c3cdd9;
    margin: 0 0 24px;
  }
  .wcp-final-trust { margin: 16px 0 0; font-size: 15px; color: #9aa6b3; }

  /* ---------- CTA (shared) ---------- */
  .wcp-cta-wrap { text-align: center; margin-top: 30px; }
  .wcp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 440px;
    min-height: 58px;
    padding: 18px 26px;
    text-decoration: none;
    border-radius: 14px;
    font-size: clamp(17px, 2.4vw, 21px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--red), var(--red-dk));
    box-shadow: 0 14px 28px rgba(226,54,54,.35);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .wcp-cta:hover, .wcp-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(226,54,54,.45);
    outline: 3px solid rgba(10,102,194,.4);
    outline-offset: 3px;
  }
  .wcp-cta--xl { max-width: 560px; }

  /* =================== MOBILE =================== */
  @media (max-width: 760px) {
    .wcp-feat { grid-template-columns: 1fr; }
    .wcp-reviews { grid-template-columns: 1fr; }
    .wcp-sec, .wcp-soft { padding: 34px 16px; }
    .wcp-dark, .wcp-final { padding: 36px 16px; }
    .wcp-row { font-size: 15px; padding: 14px 16px; }
    .wcp-lead { font-size: 17px; }   /* leggibile per 60+ */
  }

  @media (prefers-reduced-motion: reduce) {
    .wcp-cta, .wcp-faq-item summary::after { transition: none; }
  }

.zt-order-section,
  .zt-order-section * { box-sizing: border-box; }

  .zt-order-section {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 16px;
    text-align: center;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    background: #ffffff;
  }

  /* ---------- Title ---------- */
  .zt-order-title {
    margin: 0 0 12px;
    font-size: clamp(24px, 4.6vw, 34px);
    line-height: 1.18;
    font-weight: 900;
    color: #1a232e;
    letter-spacing: -0.01em;
  }
  .zt-order-title__icon { margin-right: 6px; }
  .zt-hl { color: #e23636; }

  .zt-order-text {
    margin: 0 auto 26px;
    max-width: 620px;
    font-size: clamp(16px, 2.1vw, 19px);
    line-height: 1.55;
    color: #51606f;
  }

  /* ---------- White form card ---------- */
  .zt-form-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
    padding: 30px 22px 26px;
    max-width: 540px;
    margin: 0 auto;
  }

  .zt-card-title {
    margin: 0 0 12px;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #1a232e;
  }
  .zt-card-sub {
    margin: 0 auto 22px;
    max-width: 420px;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.55;
    color: #51606f;
  }

  /* ---------- Payment pill ---------- */
  .zt-order-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    flex-wrap: wrap;
  }
  .zt-order-pill__icon { font-size: 18px; line-height: 1; }

  /* ---------- CTA ---------- */
  .zt-order-cta-wrap { width: 100%; }
  .zt-order-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    min-height: 58px;
    padding: 18px 22px;
    text-decoration: none;
    border-radius: 14px;
    font-size: clamp(17px, 2.4vw, 21px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(135deg, #e23636, #c41f1f);
    box-shadow: 0 14px 28px rgba(226, 54, 54, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .zt-order-cta:hover, .zt-order-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(226, 54, 54, 0.45);
    outline: 3px solid rgba(10, 102, 194, 0.4);
    outline-offset: 3px;
  }

  /* =================== DESKTOP =================== */
  @media (min-width: 768px) {
    .zt-order-section { padding: 40px 22px; }
  }

  /* =================== SMALL PHONES =================== */
  @media (max-width: 480px) {
    .zt-form-card { padding: 24px 16px 22px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .zt-order-cta { transition: none; }
  }

/* Adrice form inside UltraClima card */
.zt-form-card .tm-order-form { text-align: left; margin-top: 8px; }
.zt-form-card .tm-order-form label {
  display: block; font-size: 14px; font-weight: 700; margin: 0 0 6px; color: #1a232e;
}
.zt-form-card .tm-order-form input[type="text"],
.zt-form-card .tm-order-form input[type="tel"] {
  width: 100%; padding: 14px 14px; margin-bottom: 12px;
  border: 1px solid #e7eef5; border-radius: 12px; font-size: 16px;
  font-family: inherit; background: #fff;
}
.zt-form-card .tm-order-form input:focus { outline: none; border-color: #0a66c2; }
.zt-form-card .tm-order-form br { display: none; }
.zt-form-card .tm-order-form button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 100%; min-height: 58px; padding: 18px 22px;
  border: none; border-radius: 14px; cursor: pointer;
  font-size: clamp(17px, 2.4vw, 21px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .3px;
  color: #fff; background: linear-gradient(135deg, #e23636, #c41f1f);
  box-shadow: 0 14px 28px rgba(226,54,54,.35);
  font-family: inherit;
}
.zt-form-card .tm-order-form button:hover { transform: translateY(-2px); }
.zt-form-note { margin-top: 12px; font-size: 13px; color: #51606f; font-weight: 600; text-align: center; }
body.ultraclima { margin: 0; background: #fff; }
.site-footer{background:#0f172a;color:#cbd5e1;padding:2.5rem 0 1.5rem;font-size:.875rem;font-family:'Montserrat','Inter',Arial,sans-serif}
.site-footer .container{width:min(100% - 2rem,1100px);margin-inline:auto}
.site-footer .site-logo{display:inline-flex;align-items:center;text-decoration:none}
.site-footer .site-logo__text{font-weight:900;font-size:1.5rem;letter-spacing:-.04em;text-transform:lowercase;line-height:1}
.site-footer .site-logo__text-primary{color:#fff}
.site-footer .site-logo__text-accent{background:linear-gradient(135deg,#fdba74 0%,#f97316 100%);-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-fill-color:transparent}
.site-footer__grid{display:grid;gap:2rem;grid-template-columns:1fr;margin-bottom:2rem}
@media (min-width:768px){.site-footer__grid{grid-template-columns:1.2fr 1fr 1fr}}
.site-footer__heading{font-weight:700;color:#fff;margin-bottom:.75rem;font-size:1rem}
.site-footer__list{list-style:none;display:flex;flex-direction:column;gap:.5rem;padding:0;margin:0}
.site-footer__list a{color:#cbd5e1;text-decoration:none}
.site-footer__list a:hover{color:#fff}
.site-footer__blurb{margin-top:1rem;max-width:340px;color:#94a3b8;line-height:1.5}
.site-footer__bottom{border-top:1px solid #334155;padding-top:1rem;text-align:center;font-size:.75rem;color:#94a3b8}
.site-footer__bottom strong{color:#cbd5e1}
.site-footer__bottom a{color:#cbd5e1;text-decoration:none;font-weight:700}
