  /* ============================================================
     CLOSING: dark cinematic finale (mirrors hero)
     ============================================================ */
  .closing {
    background: var(--navy-deeper);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 15vh, 180px) 0;
  }
  .closing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 800px 500px at 25% 20%, rgba(252, 181, 73, 0.14), transparent 60%),
      radial-gradient(ellipse 700px 500px at 80% 80%, rgba(216, 35, 205, 0.16), transparent 60%),
      radial-gradient(ellipse 900px 500px at 50% 50%, rgba(230, 70, 68, 0.08), transparent 60%);
  }
  .closing .container { position: relative; z-index: 1; }
  .closing-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }
  .closing-inner .kicker {
    margin-bottom: 28px;
  }
  .closing-headline {
    font-size: clamp(44px, 7vw, 104px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 28px;
  }
  .closing-headline .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .closing-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }
  .btn-xl {
    padding: 22px 40px;
    font-size: 18px;
    border-radius: 14px;
    box-shadow: 0 24px 56px -12px rgba(230, 70, 68, 0.6);
  }

  .closing-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 88px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
  }
  .closing-timeline-label {
    width: 100%;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .tl-step {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    min-width: 180px;
    transition: border-color 0.3s, background 0.3s;
  }
  .tl-step:hover {
    border-color: rgba(255, 179, 217, 0.3);
    background: rgba(255, 255, 255, 0.06);
  }
  .tl-step--clickable {
    cursor: pointer;
  }
  .tl-step--clickable:hover {
    border-color: rgba(255, 179, 217, 0.5);
    background: rgba(255, 179, 217, 0.06);
  }
  .tl-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--pink-soft);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .tl-body { display: flex; flex-direction: column; gap: 2px; }
  .tl-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .tl-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }
  .tl-arrow {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 20px;
    font-weight: 300;
  }

  .closing-contact {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .cc-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .cc-lab {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    flex: 1 0 0;
    min-width: 0;
    text-align: right;
  }
  .cc-phone {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    transition: color 0.2s;
  }
  .cc-phone:hover { color: var(--pink-soft); }
  .cc-hours {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex: 1 0 0;
    min-width: 0;
    text-align: left;
  }
  .cc-support {
    text-align: center;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
  }
  .cc-support-link {
    color: var(--pink-soft);
    font-weight: 600;
    text-decoration: none;
    margin-left: 6px;
    border-bottom: 1px dashed rgba(255, 179, 217, 0.4);
    transition: color 0.2s, border-color 0.2s;
  }
  .cc-support-link:hover {
    color: #fff;
    border-bottom-color: #fff;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer.foot {
    background: var(--navy-deeper);
    color: rgba(255, 255, 255, 0.72);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .foot-brand p {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
  }
  .foot-social {
    display: flex;
    gap: 10px;
  }
  .foot-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
  }
  .foot-social a:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
  }
  .foot-social svg { width: 16px; height: 16px; }
  .foot-brand { display: flex; flex-direction: column; align-items: flex-start; }
  .foot-google-source { display: inline-block; margin-top: auto; padding-top: 18px; }
  .foot-google-source img { display: block; width: 200px; max-width: 100%; height: auto; }
  .foot-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.18s;
  }
  .foot-col a:hover { color: var(--pink-soft); }
  .foot-contact-line {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
  }
  .foot-contact-line a { color: inherit; transition: color 0.18s; }
  .foot-contact-line a:hover { color: var(--pink-soft); }

  .foot-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .foot-cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 22px 20px;
  }
  .foot-cta-card h5 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .foot-cta-card p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
  }
  .foot-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.005em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 22px -8px rgba(230, 70, 68, 0.55);
  }
  .foot-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.7);
  }

  .foot-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }
  .foot-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
  }
  .foot-legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.18s;
  }
  .foot-legal a:hover { color: var(--pink-soft); }
