/* ===========================================================
   Uncodemy — Recorded Courses
   Shared design system. Fully responsive.
   =========================================================== */

:root {
  /* Brand */
  --orange:      #ff6a1f;
  --orange-600:  #ea5a12;
  --orange-50:   #fff4ed;
  --orange-100:  #ffe4d3;

  --amber:       #fbbf24;

  /* Ink / surfaces */
  --navy-900:    #0a1628;
  --navy-800:    #0f2038;
  --navy-700:    #16304f;
  --ink:         #16233a;
  --body:        #4a5a70;
  --muted:       #8493a8;

  --line:        #e8ecf2;
  --line-soft:   #f1f4f8;
  --surface:     #ffffff;
  --tint:        #f7f9fc;

  --green:       #10b981;
  --green-50:    #ecfdf5;

  /* Shape */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(10,22,40,.06), 0 1px 3px rgba(10,22,40,.04);
  --sh:    0 2px 8px rgba(10,22,40,.06), 0 8px 24px rgba(10,22,40,.06);
  --sh-lg: 0 8px 24px rgba(10,22,40,.10), 0 24px 56px rgba(10,22,40,.12);

  --header-h: 68px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--body);
  background: var(--surface);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0; }

.uc-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 28px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.uc-topbar {
  background: var(--navy-900);
  color: #b9c6d8;
  font-size: 13px;
}
.uc-topbar .uc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  justify-content: center;
  align-items: center;
  padding-block: 9px;
}
.uc-topbar a { text-decoration: none; transition: color .15s; }
.uc-topbar a:hover { color: var(--orange); }
.uc-topbar .sep { color: #2c405c; }
@media (min-width: 780px) {
  .uc-topbar .uc-container { justify-content: flex-end; }
}

/* ============================================================
   HEADER
   ============================================================ */
.uc-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.uc-header .uc-container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.uc-logo {
  font-size: clamp(20px, 2.4vw, 23px);
  font-weight: 800;
  letter-spacing: -.5px;
  text-decoration: none;
  color: var(--navy-900);
  line-height: 1.15;
  white-space: nowrap;
}
.uc-logo span { color: var(--orange); }
.uc-logo small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.uc-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 15px;
  font-weight: 600;
}
.uc-nav a { text-decoration: none; color: var(--ink); transition: color .15s; }
.uc-nav a:hover { color: var(--orange); }
.uc-btn-fees {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,106,31,.32);
  transition: transform .15s, box-shadow .15s;
}
.uc-btn-fees:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,106,31,.42);
}
@media (min-width: 940px) { .uc-nav { display: flex; } }

/* ============================================================
   HERO
   ============================================================ */
.uc-hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(255,106,31,.18), transparent 62%),
    radial-gradient(700px 380px at 92% 8%, rgba(56,132,255,.16), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, #132845 100%);
  color: #dbe5f2;
  padding-block: clamp(36px, 6vw, 68px) clamp(48px, 8vw, 88px);
  overflow: hidden;
}
.uc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  opacity: .06;
  pointer-events: none;
}
.uc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 52px);
  align-items: start;
}
@media (min-width: 1000px) {
  .uc-hero-grid { grid-template-columns: minmax(0,1fr) 396px; }
}

.uc-badge-recorded {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,31,.14);
  color: #ffb185;
  border: 1px solid rgba(255,106,31,.32);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.1px;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.uc-badge-recorded::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,31,.28);
}

.uc-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 5.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 18px;
  max-width: 16ch;
}
.uc-hero .lead {
  font-size: clamp(1rem, 1.6vw, 1.09rem);
  color: #a9bcd4;
  margin: 0 0 30px;
  max-width: 56ch;
}

.uc-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.uc-ratings > div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  display: flex;
  gap: 7px;
  align-items: center;
}
.uc-ratings span { color: #8fa4c0; font-weight: 500; }

.uc-ratebox {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r);
  padding: 14px 22px;
}
.uc-stars { color: var(--amber); font-size: 19px; letter-spacing: 3px; }
.uc-ratebox b { display: block; font-size: 16px; color: #fff; }
.uc-ratebox small { color: #8fa4c0; font-size: 12.5px; }

/* ============================================================
   BUY / OFFER CARD
   ============================================================ */
.uc-offer {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
@media (min-width: 1000px) {
  .uc-offer { position: sticky; top: calc(var(--header-h) + 18px); }
}
.uc-offer-tag {
  background: linear-gradient(90deg, var(--orange), #ff8b45);
  color: #fff;
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.3px;
  padding: 10px;
}
.uc-offer-body { padding: clamp(22px, 4vw, 28px); }
.uc-offer-body h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.uc-offer-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 18px;
}
.uc-mrp {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.uc-mrp s { text-decoration-thickness: 1.5px; }
.uc-paynow {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 6px;
}
.uc-price-pill {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.uc-save {
  display: block;
  text-align: center;
  background: var(--green-50);
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 14px;
  width: fit-content;
  margin: 0 auto 20px;
}

.uc-perks {
  list-style: none;
  margin: 0 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.uc-perks li {
  padding: 5px 0 5px 26px;
  position: relative;
  font-weight: 500;
}
.uc-perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}

/* ---------- Form ---------- */
.uc-field { margin-bottom: 14px; }
.uc-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 6px;
  color: var(--ink);
}
.uc-field input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}
.uc-field input::placeholder { color: #b4c0cf; }
.uc-field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,31,.13);
}
.uc-field .hint { font-size: 11.5px; color: var(--muted); margin: 5px 0 0; line-height: 1.5; }
.uc-field.readonly input {
  background: var(--tint);
  color: var(--body);
  border-style: dashed;
  cursor: default;
  font-weight: 600;
}

#buyBtn {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: var(--r-sm);
  background: linear-gradient(180deg, #ff7a33, var(--orange-600));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(255,106,31,.34);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
#buyBtn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255,106,31,.44);
}
#buyBtn:active:not(:disabled) { transform: translateY(0); }
#buyBtn:disabled {
  background: #c3ccd8;
  box-shadow: none;
  cursor: not-allowed;
}

.uc-seats {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-600);
  margin: 14px 0 0;
}
.uc-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  line-height: 1.55;
}
.uc-status--success { display:block; background:var(--green-50); color:#065f46; border:1px solid #a7f3d0; }
.uc-status--error   { display:block; background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }

.uc-secure {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11.8px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.uc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
  margin-block: clamp(-32px, -3vw, -26px) clamp(44px, 7vw, 66px);
  position: relative;
  z-index: 5;
}
.uc-features > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: var(--sh);
}
.uc-features b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.uc-features small { color: var(--body); font-size: 13.2px; line-height: 1.6; display: block; }

/* ============================================================
   SECTIONS
   ============================================================ */
.uc-section { padding-block: clamp(46px, 7vw, 78px); }
.uc-section--soft {
  background: var(--tint);
  border-block: 1px solid var(--line);
}

.uc-h2 {
  font-size: clamp(1.45rem, 3.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  text-align: center;
}
.uc-h2-sub {
  text-align: center;
  color: var(--body);
  margin: 0 auto clamp(30px, 5vw, 46px);
  max-width: 62ch;
  font-size: 15.5px;
}
.uc-h3 {
  font-size: 1.16rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* stats */
.uc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 14px;
}
.uc-stats > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 14px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .18s, box-shadow .18s;
}
.uc-stats > div:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.uc-stats b {
  display: block;
  font-size: clamp(1.6rem, 3.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--orange), #ff9a5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}
.uc-stats small { color: var(--body); font-size: 13px; }

/* two column */
.uc-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 26px);
}
@media (min-width: 860px) { .uc-2col { grid-template-columns: 1fr 1fr; } }

.uc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 30px);
  box-shadow: var(--sh-sm);
}

/* check list */
.uc-check { list-style: none; margin: 0; padding: 0; }
.uc-check li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink);
}
.uc-check li:last-child { border-bottom: 0; padding-bottom: 0; }
.uc-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* detail rows */
.uc-detail { list-style: none; margin: 0; padding: 0; }
.uc-detail li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.uc-detail li:last-child { border-bottom: 0; padding-bottom: 0; }
.uc-detail b { flex: 0 0 auto; min-width: 170px; color: var(--ink); font-weight: 700; }
.uc-detail span { flex: 1 1 200px; }

/* ============================================================
   CURRICULUM ACCORDION
   ============================================================ */
.uc-modules { max-width: 880px; margin-inline: auto; }
.uc-module {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .18s, border-color .18s;
}
.uc-module[open] { border-color: var(--orange-100); box-shadow: var(--sh); }
.uc-module summary {
  cursor: pointer;
  padding: 17px clamp(16px, 3vw, 22px);
  font-weight: 700;
  font-size: clamp(14.5px, 2vw, 15.5px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  transition: background .15s;
}
.uc-module summary::-webkit-details-marker { display: none; }
.uc-module summary::after {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a1f' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .22s;
}
.uc-module[open] summary::after { transform: rotate(135deg); }
.uc-module summary:hover { background: var(--orange-50); }
.uc-module-body {
  padding: 0 clamp(16px, 3vw, 22px) 22px;
}
.uc-module-body ul {
  margin: 0;
  padding: 18px 0 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 4px 26px;
  font-size: 14.2px;
  color: var(--body);
}
.uc-module-body li {
  position: relative;
  padding: 5px 0 5px 18px;
}
.uc-module-body li::before {
  content: "";
  position: absolute;
  left: 2px; top: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .55;
}

/* ============================================================
   TOOLS
   ============================================================ */
.uc-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.uc-tools span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 19px;
  font-size: 13.8px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: transform .15s, border-color .15s, color .15s;
}
.uc-tools span:hover {
  transform: translateY(-2px);
  border-color: var(--orange-100);
  color: var(--orange-600);
}

/* ============================================================
   PLACEMENTS
   ============================================================ */
.uc-placed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr));
  gap: 14px;
}
.uc-placed > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.uc-placed > div::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), #ff9a5c);
}
.uc-placed > div:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.uc-placed b { display: block; font-size: 15px; color: var(--ink); font-weight: 700; }
.uc-placed small { color: var(--muted); font-size: 12.8px; display: block; margin-bottom: 8px; }
.uc-placed .pkg {
  display: inline-block;
  background: var(--green-50);
  color: #047857;
  border-radius: 999px;
  padding: 3px 12px;
  font-weight: 800;
  font-size: 13px;
}

/* ============================================================
   TRAINERS
   ============================================================ */
.uc-trainers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}
.uc-trainers > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
  transition: transform .18s, box-shadow .18s;
}
.uc-trainers > div:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.uc-trainers b { color: var(--ink); font-size: 15.5px; font-weight: 700; }
.uc-trainers em {
  display: block;
  color: var(--orange-600);
  font-size: 12.6px;
  font-style: normal;
  font-weight: 600;
  margin: 4px 0 10px;
}
.uc-trainers small { color: var(--body); font-size: 13.2px; line-height: 1.65; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.uc-faq { max-width: 840px; margin-inline: auto; }
.uc-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.uc-faq details[open] { border-color: var(--orange-100); }
.uc-faq summary {
  cursor: pointer;
  padding: 17px clamp(16px, 3vw, 22px);
  font-weight: 700;
  font-size: 15.2px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.uc-faq summary::-webkit-details-marker { display: none; }
.uc-faq summary::after {
  content: "";
  flex: 0 0 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a1f' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/11px no-repeat;
  transition: transform .22s;
}
.uc-faq details[open] summary::after { transform: rotate(135deg); }
.uc-faq summary:hover { background: var(--orange-50); }
.uc-faq p {
  margin: 0;
  padding: 0 clamp(16px, 3vw, 22px) 20px;
  color: var(--body);
  font-size: 14.8px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.uc-cta {
  position: relative;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(255,106,31,.22), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  padding: clamp(46px, 8vw, 76px) clamp(16px, 4vw, 28px);
}
.uc-cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.uc-cta p { margin: 0 auto 28px; color: #a9bcd4; font-size: 15.5px; max-width: 52ch; }
.uc-cta a {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a33, var(--orange-600));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 16px;
  box-shadow: 0 8px 26px rgba(255,106,31,.4);
  transition: transform .15s, box-shadow .15s;
}
.uc-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(255,106,31,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.uc-footer {
  background: var(--navy-900);
  color: #8ba0bb;
  font-size: 14px;
  padding-top: clamp(40px, 6vw, 56px);
}
.uc-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.uc-footer a { color: #8ba0bb; text-decoration: none; transition: color .15s; }
.uc-footer a:hover { color: var(--orange); }
.uc-foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
@media (min-width: 760px) {
  .uc-foot-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
}
.uc-foot-grid ul { list-style: none; margin: 0; padding: 0; }
.uc-foot-grid li { margin-bottom: 9px; }
.uc-copy {
  border-top: 1px solid #1a2b45;
  padding-block: 20px;
  text-align: center;
  font-size: 13px;
  color: #5f7391;
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.uc-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--navy-900);
  border-top: 1px solid #1a2b45;
  display: none;
  z-index: 90;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.uc-sticky a {
  flex: 1;
  text-align: center;
  color: #b9c6d8;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: var(--r-sm);
}
.uc-sticky a.primary {
  flex: 1.6;
  background: linear-gradient(180deg, #ff7a33, var(--orange-600));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(255,106,31,.36);
}
@media (max-width: 999px) {
  .uc-sticky { display: flex; }
  body { padding-bottom: 68px; }
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.ty-wrap {
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 60px) clamp(16px, 4vw, 28px);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,106,31,.07), transparent 65%),
    var(--tint);
}
.ty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(30px, 6vw, 48px) clamp(22px, 5vw, 42px);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.ty-tick {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  font-size: 40px;
  line-height: 78px;
  margin: 0 auto 22px;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(16,185,129,.09);
}
.ty-card h1 {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}
.ty-card p.sub { color: var(--body); margin: 0 0 28px; font-size: 15.5px; }
.ty-rows {
  text-align: left;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-bottom: 26px;
  font-size: 14px;
}
.ty-rows > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 6px 0;
}
.ty-rows > div + div { border-top: 1px solid var(--line-soft); }
.ty-rows span { color: var(--muted); }
.ty-rows b { color: var(--ink); text-align: right; word-break: break-word; }
.ty-btn {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #ff7a33, var(--orange-600));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--r-sm);
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255,106,31,.36);
  transition: transform .15s, box-shadow .15s;
}
.ty-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255,106,31,.46); }
.ty-count { font-size: 13.5px; color: var(--muted); margin: 18px 0 0; }
.ty-note {
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-left: 3px solid var(--orange);
  padding: 13px 15px;
  font-size: 13.2px;
  color: #9a3d0c;
  text-align: left;
  border-radius: var(--r-sm);
  margin-top: 22px;
  line-height: 1.65;
}
.ty-spinner {
  width: 38px; height: 38px;
  margin: 0 auto 20px;
  border: 3px solid var(--line);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: ty-spin .8s linear infinite;
}
@keyframes ty-spin { to { transform: rotate(360deg); } }

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
