:root {
  --blue: #147db3;
  --blue-dark: #0d527d;
  --navy: #102a43;
  --navy-2: #163b5c;
  --teal: #1fa7a0;
  --green: #2e8b57;
  --amber: #f2a93b;
  --ink: #17212b;
  --muted: #5b6b7a;
  --line: #d8e3ea;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 42, 67, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 42, 67, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 14% 10%, rgba(31, 167, 160, 0.08), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(20, 125, 179, 0.12), transparent 36%);
  overflow-x: hidden;
}

body.ambient-bg {
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(255, 255, 255, 0.99)),
    radial-gradient(circle at 12% 14%, rgba(31, 167, 160, 0.09), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(20, 125, 179, 0.11), transparent 36%),
    linear-gradient(rgba(20, 125, 179, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 179, 0.028) 1px, transparent 1px);
  background-size:
    auto,
    1100px 760px,
    980px 680px,
    72px 72px,
    72px 72px;
  background-position:
    0 0,
    0 0,
    100% 0,
    0 0,
    0 0;
  animation: ambient-claim-flow 34s ease-in-out infinite alternate;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 169, 59, 0.95);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.offer-bar {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
}

.offer-bar-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.offer-bar p {
  margin: 0;
}

.offer-bar a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 234, 0.75);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  width: 230px;
  max-width: 38vw;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #314457;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue-dark);
  background: rgba(20, 125, 179, 0.08);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 0 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.16);
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: clamp(640px, 84svh, 800px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 44%, rgba(255, 255, 255, 0.52) 70%, rgba(255, 255, 255, 0.04) 100%),
    url("assets/united-pmb-hero.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(248, 251, 253, 0.98));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(20, 125, 179, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 179, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  animation: grid-drift 18s linear infinite;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.trial-panel h2,
.results-band h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.25rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #304557;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-width: 204px;
  padding: 0 18px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 36px rgba(20, 125, 179, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 125, 179, 0.22);
}

.hero-metrics {
  width: min(720px, 100%);
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 227, 234, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  color: var(--blue-dark);
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.trial-panel {
  width: min(1180px, calc(100% - 40px));
  margin: -72px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(216, 227, 234, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trial-copy h2 {
  font-size: 2.35rem;
}

.trial-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.fine-print {
  padding: 14px 16px;
  background: rgba(242, 169, 59, 0.13);
  border: 1px solid rgba(242, 169, 59, 0.32);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trial-steps article {
  min-height: 230px;
  padding: 22px;
  background: linear-gradient(180deg, #f8fbfd, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trial-steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  font-weight: 850;
}

.trial-steps h3 {
  margin: 34px 0 0;
  color: var(--navy);
  line-height: 1.2;
}

.trial-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  font-size: 2.75rem;
}

.section-heading p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(16, 59, 92, 0.94));
  box-shadow: 0 0 0 100vmax rgba(16, 42, 67, 0.96);
  clip-path: inset(0 -100vmax);
}

.services .eyebrow,
.services h2,
.services .section-heading p {
  color: var(--white);
}

.service-grid,
.choose-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.choose-item,
.quote-card,
.blog-card,
.lead-form,
.playbook-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 227, 234, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 292px;
  padding: 24px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(20, 125, 179, 0.10), rgba(31, 167, 160, 0.12));
  border: 1px solid rgba(20, 125, 179, 0.14);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.blog-card h3,
.quote-card strong,
.trial-steps h3 {
  color: var(--navy);
}

.service-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.blog-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 125, 179, 0.12), rgba(31, 167, 160, 0.08)),
    url("assets/united-pmb-hero.jpg") center / cover no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.68), rgba(16, 42, 67, 0.18));
}

.experience-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 190px;
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-badge strong {
  color: var(--blue);
  font-size: 3.4rem;
  line-height: 1;
}

.experience-badge span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.playbook-card {
  position: relative;
  width: min(82%, 440px);
  padding: 26px;
  margin-top: 120px;
}

.playbook-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.playbook-card li {
  position: relative;
  padding-left: 28px;
  color: #314457;
  font-weight: 650;
}

.playbook-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(31, 167, 160, 0.12);
}

.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.65rem;
  font-weight: 850;
  line-height: 1.08;
}

.choose-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.choose-item {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.choose-item:nth-child(3n + 2),
.choose-item:nth-child(3n + 3) {
  border-left: 1px solid var(--line);
}

.choose-item:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.choose-item strong {
  color: var(--blue);
  font-size: 2.4rem;
  line-height: 1;
}

.choose-item span {
  max-width: 220px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.results-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.86)),
    url("assets/united-pmb-hero.jpg") center / cover no-repeat;
}

.results-band-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.results-intro {
  grid-column: 1 / -1;
  max-width: 840px;
}

.results-intro h2,
.results-intro .eyebrow {
  color: var(--white);
}

.results-intro p:not(.eyebrow),
.goal-stat p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.goal-stat {
  min-height: 286px;
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 44px rgba(5, 24, 43, 0.22);
}

.progress-ring {
  --value: 96;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(16, 42, 67, 0.84) 0 54%, transparent 55%),
    conic-gradient(var(--teal) calc(var(--value) * 1%), rgba(255, 255, 255, 0.22) 0);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.86),
    0 0 26px rgba(31, 167, 160, 0.48),
    inset 0 0 22px rgba(255, 255, 255, 0.08);
  animation: ring-glow 2.2s ease-in-out infinite alternate;
}

.progress-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid transparent;
  border-top-color: rgba(78, 220, 199, 0.96);
  border-right-color: rgba(78, 220, 199, 0.34);
  filter: drop-shadow(0 0 8px rgba(78, 220, 199, 0.72));
  animation: ring-orbit 2.4s linear infinite;
}

.progress-ring strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 2rem;
}

.goal-stat span {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
}

.testimonials {
  width: 100%;
  padding-inline: 0;
}

.testimonials .section-heading {
  width: min(1180px, calc(100% - 40px));
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 20px;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: testimonial-scroll 42s linear infinite;
}

.quote-card {
  width: 360px;
  min-height: 260px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.94), rgba(22, 59, 92, 0.90)),
    linear-gradient(135deg, rgba(20, 125, 179, 0.35), transparent);
  border-color: rgba(255, 255, 255, 0.20);
}

.quote-card span {
  display: block;
  color: var(--amber);
  font-weight: 850;
}

.quote-card p {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-card strong,
.quote-card em {
  display: block;
  color: var(--white);
}

.quote-card em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.70);
  font-style: normal;
}

.blogs {
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card > div:last-child {
  padding: 24px;
}

.blog-image {
  min-height: 210px;
  overflow: hidden;
  background: #f8fbfd;
}

.blog-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.045);
}

.blog-meta {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.read-link {
  min-height: 44px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: #61420f;
  background: rgba(242, 169, 59, 0.14);
  border: 1px solid rgba(242, 169, 59, 0.34);
  border-radius: var(--radius);
  font-weight: 650;
}

.response-note {
  padding: 16px 18px;
  color: var(--blue-dark);
  background: rgba(20, 125, 179, 0.08);
  border: 1px solid rgba(20, 125, 179, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkbox-field {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(31, 167, 160, 0.08);
  border: 1px solid rgba(31, 167, 160, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

.checkbox-field span {
  color: var(--navy);
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
  border: 1px solid #c9d8e2;
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b95b20;
  box-shadow: 0 0 0 3px rgba(242, 169, 59, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 750;
}

.site-footer {
  margin-top: 0;
  color: #526676;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 30px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(140px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: 292px;
  max-width: 100%;
  height: auto;
}

.footer-brand p,
.footer-bottom p {
  margin: 12px 0 0;
  color: #526676;
  font-size: 0.92rem;
}

.footer-email {
  min-height: 34px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 850;
}

.footer-group h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-group a {
  min-height: 30px;
  display: flex;
  align-items: center;
  color: #526676;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-group a:hover,
.legal-row a:hover,
.footer-email:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-page {
  background: var(--soft);
}

.article-page.ambient-bg {
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(255, 255, 255, 0.99)),
    radial-gradient(circle at 12% 14%, rgba(31, 167, 160, 0.09), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(20, 125, 179, 0.11), transparent 36%),
    linear-gradient(rgba(20, 125, 179, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 179, 0.028) 1px, transparent 1px);
  background-size:
    auto,
    1100px 760px,
    980px 680px,
    72px 72px,
    72px 72px;
  animation: ambient-claim-flow 34s ease-in-out infinite alternate;
}

.article-header {
  width: min(960px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-shell h1 {
  margin: 0;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1.08;
}

.article-hero-image {
  width: 100%;
  max-height: 360px;
  margin-top: 28px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.article-lede {
  margin: 24px 0 34px;
  color: #304557;
  font-size: 1.15rem;
}

.article-shell section {
  margin-top: 30px;
}

.article-shell h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.article-shell p {
  color: var(--muted);
}

.article-shell .button {
  width: fit-content;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 58px 58px, 58px 58px;
  }
}

@keyframes ring-glow {
  from {
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.82),
      0 0 20px rgba(31, 167, 160, 0.36),
      inset 0 0 18px rgba(255, 255, 255, 0.06);
  }
  to {
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.96),
      0 0 36px rgba(78, 220, 199, 0.62),
      inset 0 0 26px rgba(78, 220, 199, 0.10);
  }
}

@keyframes ring-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ambient-claim-flow {
  to {
    background-position:
      0 0,
      56px 34px,
      calc(100% - 48px) 42px,
      36px 36px,
      36px 36px;
  }
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .trial-panel,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-band-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .offer-bar-inner,
  .nav-shell,
  .hero-content,
  .trial-panel,
  .section,
  .footer-inner,
  .footer-bottom,
  .results-band-inner,
  .testimonials .section-heading {
    width: min(100% - 28px, 1180px);
  }

  .offer-bar-inner {
    min-height: 58px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
  }

  .offer-bar a {
    min-height: 30px;
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    width: 190px;
    max-width: 58vw;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .nav-cta svg {
    display: none;
  }

  .hero {
    min-height: 540px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.66) 100%),
      url("assets/united-pmb-hero.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    padding: 38px 0 66px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-metrics,
  .trial-steps,
  .service-grid,
  .choose-grid,
  .blog-grid,
  .lead-form,
  .results-band-inner,
  .article-header {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .trial-panel {
    margin-top: -42px;
    padding: 18px;
  }

  .trial-copy h2,
  .section h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .trial-steps article {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .about-visual {
    min-height: 470px;
  }

  .experience-badge {
    top: 20px;
    left: 20px;
  }

  .playbook-card {
    width: calc(100% - 40px);
  }

  .choose-item,
  .choose-item:nth-child(3n + 2),
  .choose-item:nth-child(3n + 3),
  .choose-item:nth-child(n + 4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .choose-item:first-child {
    border-top: 0;
  }

  .results-band-inner {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .goal-stat {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-row {
    justify-content: flex-start;
  }

  .quote-card {
    width: 310px;
  }

  .article-header {
    width: min(100% - 28px, 960px);
    min-height: 76px;
  }

  .article-shell {
    width: min(100% - 28px, 860px);
    padding: 28px 20px;
    margin-bottom: 54px;
  }

  .article-shell h1 {
    font-size: 2.1rem;
  }

  .article-shell .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 156px;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .nav-cta span {
    font-size: 0;
  }

  .nav-cta span::after {
    content: "Call";
    font-size: 0.84rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-metrics {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
