:root {
  --red: #ff1738;
  --red-soft: rgba(255,23,56,.12);
  --bg: #080a0c;
  --bg-soft: #0d0f12;
  --ink: #f6f5f2;
  --muted: rgba(255,255,255,.60);
  --muted-2: rgba(255,255,255,.42);
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.13);
  --content: 1672px;
  --gutter: clamp(32px, 4.2vw, 80px);
  --heading: "Prata", Georgia, "Times New Roman", serif;
  --sans: "Geologica", Arial, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse at 83% 18%, rgba(222,103,42,.11), transparent 28%),
    radial-gradient(circle at 8% 62%, rgba(255,23,56,.045), transparent 22%),
    linear-gradient(180deg, #090b0d 0%, #080a0c 100%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.online-shell { min-height: 100vh; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.online-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px var(--gutter) 0;
  pointer-events: none;
}

.online-header__inner {
  position: relative;
  width: min(100%, var(--content));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,20,23,.93), rgba(8,10,12,.88));
  box-shadow: 0 18px 45px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  pointer-events: auto;
}

.online-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.online-brand__mark {
  width: 47px;
  flex: 0 0 47px;
  color: #fff;
}
.online-brand__mark svg { display: block; width: 100%; height: auto; }

.online-brand__dash {
  width: 30px;
  height: 2px;
  margin: 0 20px 0 22px;
  flex: 0 0 auto;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255,23,56,.26);
}

.online-brand__copy { display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.online-brand__copy strong { font-size: 16px; line-height: 1.2; font-weight: 300; }
.online-brand__copy small { color: rgba(255,255,255,.62); font-size: 10.5px; font-weight: 300; }

.online-header__actions { display: flex; align-items: center; gap: 10px; }
.online-header__phone {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.92);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.online-header__phone > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255,23,56,.55);
}
.online-header__phone strong { font-size: 13px; font-weight: 500; letter-spacing: .015em; }
.online-header__phone:hover { border-color: rgba(255,23,56,.22); background: rgba(255,255,255,.04); transform: translateY(-1px); }

.online-header__back {
  min-height: 42px;
  padding: 0 16px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #f4f3ef;
  color: #101216;
  font-size: 12.5px;
  font-weight: 500;
  transition: transform .22s ease, background .22s ease;
}
.online-header__back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.online-header__back:hover { transform: translateY(-1px); background: #fff; }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.online-main { position: relative; }
.online-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.online-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.online-hero::after {
  content: "ONLINE";
  position: absolute;
  z-index: -2;
  right: -28px;
  top: 96px;
  color: rgba(255,255,255,.018);
  font-family: var(--heading);
  font-size: clamp(150px, 17vw, 320px);
  line-height: .8;
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
}
.online-hero__atmosphere {
  position: absolute;
  z-index: -1;
  width: min(900px, 68vw);
  height: 700px;
  right: -160px;
  top: -110px;
  background:
    radial-gradient(ellipse at 42% 50%, rgba(244,147,69,.15), rgba(197,70,36,.065) 40%, transparent 70%),
    radial-gradient(circle at 76% 42%, rgba(255,23,56,.07), transparent 40%);
  filter: blur(30px);
  pointer-events: none;
}

.online-hero__inner {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 116px var(--gutter) 102px;
}

.online-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 980px) minmax(280px, 1fr);
  gap: clamp(64px, 7vw, 128px);
  align-items: end;
}

.online-kicker,
.widget-head__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.online-kicker::before,
.widget-head__eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  flex: 0 0 46px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255,23,56,.30);
}

.online-intro h1 {
  max-width: 1060px;
  margin: 0;
  font-family: var(--heading);
  font-size: 70px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.online-title-accent,
.widget-title-accent {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-bottom: .04em;
}
.online-title-accent::after,
.widget-title-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -.10em;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,23,56,.16), var(--red) 18%, #ff526b 76%, rgba(255,23,56,.14));
  box-shadow: 0 0 13px rgba(255,23,56,.28);
  transform: rotate(-1.1deg);
}

.online-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.61);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 300;
}

.online-intro__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.online-primary-link,
.online-help-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
}
.online-primary-link__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,23,56,.76);
  border-radius: 50%;
  color: var(--red);
  transition: transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}
.online-primary-link__icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.online-primary-link:hover .online-primary-link__icon {
  transform: translateY(2px);
  color: #fff;
  background: var(--red);
  box-shadow: 0 0 25px rgba(255,23,56,.26);
}
.online-help-link { color: rgba(255,255,255,.62); }
.online-help-link span { color: var(--red); transition: transform .2s ease; }
.online-help-link:hover { color: #fff; }
.online-help-link:hover span { transform: translate(2px,-2px); }

.online-help {
  position: relative;
  max-width: 360px;
  padding: 28px 0 8px 28px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.online-help::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 62px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255,23,56,.42);
}
.online-help__eyebrow { color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.online-help strong {
  display: block;
  margin-top: 13px;
  font-family: var(--heading);
  font-size: 24px;
  line-height: 1.32;
  font-weight: 400;
}
.online-help p { margin: 12px 0 20px; color: var(--muted-2); font-size: 12.5px; line-height: 1.65; font-weight: 300; }
.online-help a { display: inline-flex; gap: 9px; align-items: center; font-size: 13px; font-weight: 500; }
.online-help a span { color: var(--red); }

.online-points {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.online-point {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 28px 30px 26px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,23,56,.055), transparent 31%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.online-point::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(180px circle at 50% 0%, rgba(255,72,92,.18), transparent 62%);
  transition: opacity .28s ease;
}
.online-point__number {
  display: block;
  color: var(--red);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
}
.online-point strong {
  display: block;
  margin-top: 38px;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.015em;
}
.online-point small {
  display: block;
  max-width: 330px;
  margin-top: 10px;
  color: rgba(255,255,255,.43);
  font-size: 11.5px;
  line-height: 1.6;
  font-weight: 300;
}

@media (hover:hover) and (pointer:fine) {
  .online-point:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.14);
    background:
      radial-gradient(circle at 88% 12%, rgba(255,23,56,.075), transparent 34%),
      linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  }
  .online-point:hover::after { opacity: 1; }
}

/* ------------------------------------------------------------
   Widget section
   ------------------------------------------------------------ */
.widget-section {
  position: relative;
  padding: 72px var(--gutter) 104px;
  background:
    radial-gradient(ellipse at 78% 30%, rgba(232,104,34,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.008), transparent 28%);
}
.widget-section::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.09) 15%, rgba(255,255,255,.09) 85%, transparent);
}
.widget-section__inner { width: min(100%, var(--content)); margin: 0 auto; }

.widget-head {
  padding: 0 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 64px;
}
.widget-head__eyebrow { margin-bottom: 20px; }
.widget-head h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--heading);
  font-size: 68px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.018em;
}
.widget-head > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 300;
  text-align: right;
}

.widget-shell {
  position: relative;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 76% -15%, rgba(255,23,56,.075), transparent 28%),
    linear-gradient(180deg, #111418, #0a0c0f);
  box-shadow: 0 34px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.035);
}
.widget-shell::before {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,23,56,.76) 28%, rgba(255,82,107,.38) 72%, transparent);
  box-shadow: 0 0 14px rgba(255,23,56,.24);
}

.widget-toolbar {
  min-height: 58px;
  padding: 0 10px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.widget-toolbar__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .035em;
}
.widget-toolbar__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 11px rgba(255,23,56,.54);
}
.widget-toolbar__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.48);
  font-size: 10.5px;
  transition: color .2s ease;
}
.widget-toolbar__open span { color: var(--red); }
.widget-toolbar__open:hover { color: #fff; }

.widget-frame {
  position: relative;
  min-height: 650px;
  padding-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(0,0,0,.22);
}
.pampadu-widget {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 650px;
  min-width: 320px;
  border: 0;
  background: #fff;
}
.widget-frame__loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #101317, #0a0c0f);
  color: #fff;
  transition: opacity .35s ease, visibility .35s ease;
}
.widget-frame.is-loaded .widget-frame__loading { opacity: 0; visibility: hidden; pointer-events: none; }
.widget-frame__loading-state,
.widget-frame__timeout-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.widget-frame__timeout-state { display: none; max-width: 430px; padding: 30px; }
.widget-frame.is-timeout .widget-frame__loading-state { display: none; }
.widget-frame.is-timeout .widget-frame__timeout-state { display: flex; }
.widget-frame__timeout-state strong { font-size: 15px; font-weight: 500; }
.widget-frame__timeout-state small { color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.6; }
.widget-frame__timeout-state a {
  margin-top: 10px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #f5f4f1;
  color: #111317;
  font-size: 12px;
  font-weight: 500;
}
.widget-frame__timeout-state a span { color: var(--red); }
.widget-loader {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: var(--red);
  box-shadow: 0 0 14px rgba(255,23,56,.12);
  animation: online-spin .85s linear infinite;
}
.widget-frame__loading strong { font-size: 13px; font-weight: 500; }
.widget-frame__loading small { color: rgba(255,255,255,.42); font-size: 10.5px; }
@keyframes online-spin { to { transform: rotate(360deg); } }

.widget-noscript {
  margin: 16px 4px 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.6;
}
.widget-noscript a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.widget-support {
  margin-top: 18px;
  padding: 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.widget-support__copy { display: flex; flex-direction: column; gap: 5px; }
.widget-support__copy strong { font-size: 11.5px; font-weight: 500; }
.widget-support__copy span { color: rgba(255,255,255,.36); font-size: 10.5px; line-height: 1.5; }
.widget-support > a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.68); font-size: 11px; white-space: nowrap; }
.widget-support > a span { color: var(--red); }
.widget-support > a:hover { color: #fff; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.online-footer {
  width: min(calc(100% - 2 * var(--gutter)), var(--content));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.38);
  font-size: 10px;
}
.online-footer__legal { margin-left: auto; }
.online-footer a { color: rgba(255,255,255,.65); transition: color .2s ease; }
.online-footer a:hover { color: #fff; }


/* ------------------------------------------------------------
   Motion system
   Reuses the restrained timing/easing language of the main site.
   ------------------------------------------------------------ */
:root {
  --motion-ease: cubic-bezier(.22,.72,.2,1);
  --motion-duration: 875ms;
}

/* Opening sequence: same principles/timings as the main hero. */
html.motion-ready .online-header__inner {
  opacity: 0;
  animation: hero-topbar-in 735ms var(--motion-ease) 70ms both;
}

html.motion-ready .online-intro {
  animation: hero-copy-lift 1010ms var(--motion-ease) 150ms both;
}

html.motion-ready .online-kicker,
html.motion-ready .online-intro h1,
html.motion-ready .online-lead,
html.motion-ready .online-intro__actions {
  opacity: 0;
  animation: hero-fade-in 780ms ease-out both;
}

html.motion-ready .online-kicker { animation-delay: 150ms; }
html.motion-ready .online-intro h1 { animation-delay: 230ms; }
html.motion-ready .online-lead { animation-delay: 370ms; }
html.motion-ready .online-intro__actions { animation-delay: 510ms; }

html.motion-ready .online-help {
  opacity: 0;
  animation: hero-accent-in 875ms var(--motion-ease) 440ms both;
}

html.motion-ready .online-point {
  opacity: 0;
  animation: hero-card-in 780ms ease-out both;
}
html.motion-ready .online-point:nth-child(1) { animation-delay: 650ms; }
html.motion-ready .online-point:nth-child(2) { animation-delay: 735ms; }
html.motion-ready .online-point:nth-child(3) { animation-delay: 820ms; }

@keyframes hero-topbar-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-copy-lift {
  from { transform: translateY(18px); }
  to   { transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-accent-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-card-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Shared scroll reveal copied from the main page motion system. */
html.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(var(--motion-distance, 22px));
  transition:
    opacity var(--motion-duration) ease-out var(--motion-delay, 0ms),
    transform var(--motion-duration) var(--motion-ease) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}
html.motion-ready .motion-reveal.motion-reveal--soft {
  --motion-distance: 14px;
}
html.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready .motion-fade {
  opacity: 0;
  transition: opacity 715ms ease-out var(--motion-delay, 0ms);
}
html.motion-ready .motion-fade.is-visible {
  opacity: 1;
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Desktop scene alignment
   The main site uses a 1672px working artboard inside the 1920px scene.
   On /online/ the hero previously applied --gutter a second time inside
   that artboard, reducing the real desktop content width to ~1512px.
   Keep the full 1672px artboard on desktop; tablet/mobile retain their
   existing responsive geometry below 1200px.
   ------------------------------------------------------------ */
@media (min-width: 1201px) {
  .online-hero__inner {
    width: min(calc(100% - (2 * var(--gutter))), var(--content));
    padding-left: 0;
    padding-right: 0;
  }

  .online-help {
    width: 100%;
    justify-self: end;
  }
}

@media (max-width: 1200px) {
  :root { --gutter: clamp(28px, 4.7vw, 56px); }
  .widget-frame { padding-top: 24px; }
  .online-hero__inner { padding-top: 98px; }
  .online-hero__top { grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; }
  .online-intro h1 { font-size: clamp(52px, 5.2vw, 62px); }
  .widget-head h2 { font-size: clamp(52px, 5.2vw, 62px); }
}

@media (max-width: 1020px) {
  .online-header__phone { display: none; }
  .online-hero__top { grid-template-columns: 1fr; gap: 42px; }
  .online-help { max-width: 560px; }
  .online-points { margin-top: 58px; }
  .widget-head { align-items: start; }
}

@media (max-width: 900px) {
  :root { --gutter: 28px; }
  .online-hero__inner { padding: 84px var(--gutter) 78px; }
  .online-intro h1 { font-size: clamp(48px, 7.3vw, 58px); }
  .widget-head h2 { font-size: clamp(48px, 7.3vw, 58px); }
  .online-points { gap: 12px; }
  .online-point { min-height: 150px; padding: 22px 22px 20px; }
  .online-point strong { margin-top: 28px; font-size: 18px; }
  .widget-head { display: block; }
  .widget-head > p { max-width: 620px; margin-top: 20px; text-align: left; }
}

@media (max-width: 700px) {
  :root { --gutter: 18px; }
  .online-header { padding-top: 10px; }
  .online-header__inner { min-height: 68px; padding-inline: 12px; border-radius: 16px; }
  .online-brand__mark { width: 40px; flex-basis: 40px; }
  .online-brand__dash { width: 18px; margin-inline: 14px; }
  .online-brand__copy strong { font-size: 13px; }
  .online-brand__copy small { font-size: 9px; }
  .online-header__back { width: 42px; height: 42px; min-height: 42px; padding: 0; justify-content: center; }
  .online-header__back span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .online-header__back svg { width: 20px; height: 20px; }

  .online-hero::after { right: -8px; top: 110px; font-size: 120px; }
  .online-hero__inner { padding: 68px var(--gutter) 62px; }
  .online-kicker, .widget-head__eyebrow { margin-bottom: 22px; }
  .online-kicker::before, .widget-head__eyebrow::before { width: 34px; flex-basis: 34px; }
  .online-intro h1 { font-size: clamp(39px, 10.8vw, 50px); line-height: 1.08; }
  .online-lead { margin-top: 26px; font-size: 14px; line-height: 1.68; }
  .online-intro__actions { margin-top: 28px; gap: 20px; }
  .online-help { padding: 22px 0 2px 20px; }
  .online-help strong { font-size: 21px; }
  .online-points { margin-top: 46px; grid-template-columns: 1fr; gap: 12px; }
  .online-point { min-height: 122px; padding: 22px; border-radius: 16px; }
  .online-point strong { margin-top: 20px; font-size: 18px; }

  .widget-section { padding: 56px var(--gutter) 72px; }
  .widget-head { padding-bottom: 28px; }
  .widget-head h2 { font-size: clamp(39px, 10.8vw, 50px); }
  .widget-shell { padding: 8px; border-radius: 20px; }
  .widget-shell::before { left: 24px; right: 24px; }
  .widget-toolbar { min-height: 52px; padding-inline: 8px; }
  .widget-toolbar__open { font-size: 0; gap: 0; }
  .widget-toolbar__open span { font-size: 14px; }
  .widget-frame {
    padding-top: 18px;
    border-radius: 14px;
  }
  .widget-support { align-items: flex-start; }
  .widget-support__copy span { max-width: 300px; }
  .online-footer { padding: 24px 0 34px; flex-wrap: wrap; gap: 10px 18px; }
  .online-footer__legal { order: 3; width: 100%; margin-left: 0; }
}

@media (max-width: 420px) {
  :root { --gutter: 14px; }
  .online-header { padding-inline: 10px; }
  .online-brand__dash { width: 14px; margin-inline: 10px; }
  .online-brand__copy strong { font-size: 11.5px; }
  .online-brand__copy small { font-size: 8.5px; }
  .online-hero__inner { padding-inline: 16px; }
  .online-intro h1 { font-size: clamp(37px, 10.5vw, 43px); }
  .widget-head h2 { font-size: clamp(37px, 10.5vw, 43px); }
  .online-primary-link { width: 100%; }

  .widget-section { padding-left: 0; padding-right: 0; }
  .widget-head, .widget-support { margin-inline: 16px; }
  .widget-shell { padding-left: max(0px, calc((100vw - 320px) / 2)); padding-right: max(0px, calc((100vw - 320px) / 2)); border-left: 0; border-right: 0; border-radius: 0; }
  .widget-toolbar { margin-inline: 8px; }
  .widget-frame {
    padding-top: 14px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .pampadu-widget { min-width: 320px; }
  .widget-support { display: grid; gap: 14px; }
  .online-footer { width: auto; margin-inline: 16px; }
}

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

  html.motion-ready .online-header__inner,
  html.motion-ready .online-intro,
  html.motion-ready .online-kicker,
  html.motion-ready .online-intro h1,
  html.motion-ready .online-lead,
  html.motion-ready .online-intro__actions,
  html.motion-ready .online-help,
  html.motion-ready .online-point,
  html.motion-ready .motion-reveal,
  html.motion-ready .motion-fade {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
