@font-face {
  font-family: "DBAdmanX";
  src: url("fonts/DB-Adman-X.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DBAdmanX";
  src: url("fonts/DB-Adman-X-Li.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DBAdmanX";
  src: url("fonts/DB-Adman-X-Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI Local";
  src: url("fonts/Segoe-UI.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "DBAdmanX", "Sarabun", system-ui, sans-serif;
  --font-body: "Sarabun", "DBAdmanX", system-ui, sans-serif;
  --font-ui-latin: "Segoe UI Local", "Segoe UI", system-ui, sans-serif;
  --blue-950: #032a6b;
  --blue-900: #0a52c4;
  --blue-800: #1260d6;
  --blue-600: #1a6edc;
  --blue-100: #ccdeff;
  --blue-50: #e6f0ff;
  --white: #ffffff;
  --ink: #082242;
  --heading-color: var(--blue-900);
  --muted: #64748b;
  --line: rgba(14, 92, 205, 0.15);
  --shadow: 0 24px 80px rgba(2, 45, 112, 0.14);
  --page-max: 1120px;
  --page-gutter: clamp(20px, 4vw, 44px);
  --page-x: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--white), var(--blue-50) 42%, var(--white));
}

main {
  flex: 1 0 auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--page-x);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 24px);
  column-gap: clamp(12px, 2.2vw, 24px);
  padding: 4px 0;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.88;
}

.brand:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 4px;
}

.brand-logo {
  display: block;
  flex-shrink: 0;
  height: clamp(42px, 5vw, 54px);
  width: auto;
  max-width: min(300px, 58vw);
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  margin-inline-start: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.85vw, 1.58rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--blue-950);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.2vw, 1.2rem);
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue-600);
}

.site-nav a[aria-current="page"] {
  color: var(--heading-color);
}

.site-nav a:not(.nav-cta) {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

.nav-cta {
  padding: 11px 22px;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  color: var(--white) !important;
  background: var(--blue-900);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 999px;
}

.hero {
  --hero-ratio: 1922 / 818;
  position: relative;
  aspect-ratio: var(--hero-ratio);
  display: block;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue-50);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 26%,
      rgba(255, 255, 255, 0.62) 46%,
      rgba(255, 255, 255, 0.18) 66%,
      rgba(255, 255, 255, 0) 82%
    );
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, rgba(2, 45, 112, 0.02), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: var(--page-x);
  z-index: 3;
  width: min(580px, 48vw);
  transform: translateY(-50%);
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.55rem);
}

.hero h1 span {
  display: block;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 650ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-dots {
  position: absolute;
  right: var(--page-x);
  bottom: clamp(14px, 2.2vw, 26px);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 82, 196, 0.18);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(2, 45, 112, 0.12);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-dot[aria-current="true"] {
  width: 28px;
  background: var(--blue-900);
}

.hero-dot:hover {
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.1vw, 1.68rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.28;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h3 {
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 22px;
  color: #3a4a66;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: 0 16px 36px rgba(28, 100, 220, 0.24);
}

.button.secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 42px rgba(2, 45, 112, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-metrics div {
  position: relative;
  min-height: 92px;
  padding: 14px 14px 14px 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(230, 240, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
}

.hero-metrics div::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 64px;
  height: 64px;
  content: "";
  background: radial-gradient(circle, rgba(26, 110, 220, 0.14), transparent 68%);
}

.hero-metrics dt {
  display: inline-flex;
  min-width: 36px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(2, 45, 112, 0.16);
}

.hero-metrics dd {
  margin: 0;
  color: #334155;
  font-weight: 800;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 0 6% 4%;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 242, 255, 0.55)),
    url("data:image/svg+xml,%3Csvg width='720' height='900' viewBox='0 0 720 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='720' height='900' fill='%23f8fbff'/%3E%3Cpath d='M360 106c94 62 181 78 260 78v210c0 168-86 309-260 401C186 703 100 562 100 394V184c79 0 166-16 260-78Z' fill='%23e8f1ff'/%3E%3Cpath d='M360 170c69 44 134 57 195 59v162c0 124-63 228-195 300-132-72-195-176-195-300V229c61-2 126-15 195-59Z' fill='%23ffffff'/%3E%3Cpath d='M290 412l48 48 103-126' fill='none' stroke='%231f62c9' stroke-width='34' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='165' cy='735' r='84' fill='%23dbeafe'/%3E%3Ccircle cx='600' cy='690' r='116' fill='%23eef6ff'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  top: 8%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(28, 100, 220, 0.15);
}

.orb-two {
  left: -2%;
  bottom: 16%;
  width: 96px;
  height: 96px;
  background: rgba(10, 75, 185, 0.12);
}

.shield-card {
  position: absolute;
  right: 0;
  bottom: 14%;
  z-index: 3;
  width: min(270px, 72%);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 92, 205, 0.12);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(2, 45, 112, 0.14);
  backdrop-filter: blur(16px);
}

.shield-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--blue-600);
  border-radius: 16px;
}

.shield-card p {
  margin-bottom: 4px;
  color: var(--muted);
}

.shield-card strong {
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.intro,
.solutions,
.process,
.product-categories,
.testimonials,
.contact {
  padding: clamp(72px, 9vw, 128px) var(--page-x);
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(28, 100, 220, 0.08), transparent 52%),
    linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
  border-block: 1px solid var(--line);
}

.intro::before {
  position: absolute;
  top: -40%;
  left: -18%;
  width: 48%;
  height: 140%;
  content: "";
  background: radial-gradient(closest-side, rgba(28, 100, 220, 0.06), transparent 70%);
  pointer-events: none;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(8px, 2vw, 20px);
  align-items: stretch;
  max-width: var(--page-max);
  margin-inline: auto;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 48%, rgba(230, 240, 255, 0.54) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(14, 92, 205, 0.1),
    0 24px 54px rgba(2, 45, 112, 0.12);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}

.intro-inner::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 8% 10%, rgba(28, 100, 220, 0.12), transparent 30%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.35) 0%, transparent 46%, rgba(28, 100, 220, 0.05) 100%);
  pointer-events: none;
}

.intro-inner > * {
  position: relative;
  z-index: 1;
}

.intro-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(22px, 4vw, 34px);
  min-height: 100%;
  padding: clamp(28px, 5vw, 46px) clamp(24px, 4vw, 40px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.intro-heading {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  align-items: flex-start;
}

.intro-accent {
  flex-shrink: 0;
  width: 5px;
  min-height: 120px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-600));
  box-shadow: 0 8px 24px rgba(28, 100, 220, 0.25);
}

.intro-heading-copy {
  min-width: 0;
}

.intro-heading-copy h2 {
  margin-bottom: 0;
  line-height: 1.12;
}

.intro-image {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.intro-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(2, 45, 112, 0.08));
  pointer-events: none;
}

.intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.intro-panel {
  position: relative;
  padding-top: clamp(18px, 3vw, 26px);
  border-top: 1px solid rgba(14, 92, 205, 0.14);
}

.intro-panel::after {
  display: none;
}

.intro-panel > * {
  position: relative;
  z-index: 1;
}

.intro-lead {
  margin: 0 0 clamp(18px, 3vw, 24px);
  color: #475569;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.9;
}

.intro-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-tag {
  display: grid;
  grid-template-columns: clamp(88px, 18vw, 112px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-width: 0;
  min-height: clamp(76px, 12vw, 98px);
  padding: 0;
  overflow: hidden;
  color: var(--heading-color);
  background: var(--white);
  border: 1px solid rgba(14, 92, 205, 0.14);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.intro-tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 100%;
  margin: 0;
  color: var(--blue-600);
  background: linear-gradient(180deg, rgba(230, 240, 255, 0.98), rgba(214, 232, 255, 0.92));
  border-radius: 20px 0 0 20px;
}

.intro-tag-icon svg {
  display: block;
  width: min(68%, 50px);
  height: auto;
}

.intro-tag-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 2vw, 14px) clamp(14px, 2.4vw, 18px) clamp(10px, 2vw, 14px) clamp(12px, 2vw, 16px);
}

.intro-tag-title {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 12% 35%, rgba(28, 100, 220, 0.07), transparent 52%),
    radial-gradient(70% 50% at 100% 80%, rgba(28, 100, 220, 0.05), transparent 45%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 45%, var(--blue-50) 100%);
}

.solutions-inner {
  max-width: var(--page-max);
  margin-inline: auto;
}

.solutions .section-heading {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.home-articles-lead {
  max-width: none;
  margin: clamp(12px, 2vw, 16px) 0 0;
  color: #475569;
  font-size: clamp(0.95rem, 1.45vw, 1.1rem);
  line-height: 1.5;
}

@media (min-width: 900px) {
  .home-articles-lead {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .home-articles-lead {
    white-space: normal;
    line-height: 1.75;
  }
}

.home-articles-more {
  margin: clamp(28px, 4vw, 40px) 0 0;
  text-align: center;
}

.home-articles + .home-careers {
  padding-top: clamp(32px, 5vw, 56px);
}

.news-articles .article-grid-controls {
  margin-top: 0;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.news-articles .article-grid-filterbar {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px) max-content;
  width: 100%;
}

.news-articles .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 24px);
}

.news-articles .article-grid .solution-item {
  flex: none;
  width: auto;
  min-width: 0;
}

.news-articles .article-grid .solution-item[hidden] {
  display: none;
}

.news-articles .article-grid .solution-media {
  aspect-ratio: auto;
  height: auto;
  overflow: hidden;
}

.news-articles .article-grid .solution-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.news-articles .article-grid .solution-item:hover .solution-media img {
  transform: none;
}

@media (max-width: 980px) {
  .news-articles .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-articles .section-heading {
    text-align: center;
  }

  .news-articles .section-heading h2 {
    text-wrap: balance;
  }

  .news-articles .article-grid-filterbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "search search"
      "filter clear";
    gap: 10px;
    width: 100%;
  }

  .news-articles .article-grid-filterbar .carousel-search {
    grid-area: search;
  }

  .news-articles .article-grid-filterbar .carousel-filter {
    grid-area: filter;
    min-width: 0;
  }

  .news-articles .article-grid-filterbar .carousel-clear {
    grid-area: clear;
    justify-self: stretch;
    width: auto;
    min-width: 0;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .news-articles .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-articles .article-grid .solution-item {
    padding: 10px;
    border-radius: 16px;
    row-gap: 8px;
  }

  .news-articles .article-grid .solution-media {
    margin: -10px -10px 0;
    border-radius: 14px 14px 0 0;
  }

  .news-articles .article-grid .solution-item h3 {
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    margin-bottom: 4px;
    line-height: 1.35;
  }

  .news-articles .article-grid .solution-item p {
    font-size: 0.75rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-articles .article-grid .solution-item > div {
    padding-top: 2px;
  }

  .news-articles .carousel-empty {
    grid-column: 1 / -1;
    padding: 16px;
    font-size: 0.92rem;
  }
}

.insurance-catalog {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 12% 35%, rgba(28, 100, 220, 0.07), transparent 52%),
    radial-gradient(70% 50% at 100% 80%, rgba(28, 100, 220, 0.05), transparent 45%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 45%, var(--blue-50) 100%);
}

.insurance-catalog-inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 88px) var(--page-x) clamp(72px, 9vw, 120px);
}

.insurance-catalog .section-heading {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.insurance-catalog-lead {
  margin: 12px 0 0;
  max-width: 62ch;
  color: #475569;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.insurance-plan-group {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.insurance-plan-group:last-of-type {
  margin-bottom: 0;
}

.insurance-plan-group-title {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.1vw, 1.58rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--heading-color);
}

.insurance-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 24px);
}

@media (max-width: 1080px) {
  .insurance-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .insurance-plan-grid {
    grid-template-columns: 1fr;
  }
}

.insurance-plan-grid .solution-item {
  flex: none;
  min-width: 0;
  width: 100%;
}

.insurance-plan-grid .solution-item > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.insurance-plan-grid .solution-item .solution-plan-kind {
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 12px;
  color: var(--heading-color);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(10, 82, 196, 0.08);
  border: 1px solid rgba(10, 82, 196, 0.12);
  border-radius: 999px;
}

.insurance-plan-grid .solution-item h4 {
  margin-top: 0;
}

.insurance-plan-grid .solution-item .tax-plan-detail {
  align-self: flex-start;
  margin-top: 14px;
}

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

.insurance-plan-grid--solo .solution-item {
  grid-column: 1 / -1;
  max-width: min(440px, 100%);
  justify-self: center;
}

.solution-carousel {
  --carousel-gap: clamp(18px, 2.2vw, 24px);
  --carousel-columns: 3;
  position: relative;
}

.carousel-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: calc(clamp(28px, 4vw, 48px) * -0.55);
  margin-bottom: 20px;
}

.carousel-filterbar {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(150px, 190px) max-content;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.carousel-search,
.carousel-filter {
  display: block;
  min-width: 0;
}

.carousel-search input,
.carousel-filter select {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(2, 45, 112, 0.1);
  outline: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.carousel-filter select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, var(--heading-color) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--heading-color) 50%, transparent 50%) calc(100% - 17px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.72);
}

.carousel-search input::placeholder {
  color: rgba(8, 34, 66, 0.52);
}

.carousel-search input:focus,
.carousel-filter select:focus {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 82, 196, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 4px rgba(10, 82, 196, 0.09),
    0 14px 30px rgba(2, 45, 112, 0.12);
}

.carousel-filter select:focus {
  background:
    linear-gradient(45deg, transparent 50%, var(--heading-color) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--heading-color) 50%, transparent 50%) calc(100% - 17px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.92);
}

.carousel-empty {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}

.carousel-clear {
  justify-self: start;
  white-space: nowrap;
  min-height: 46px;
  padding: 0 16px;
  color: var(--heading-color);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(2, 45, 112, 0.08);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-clear:hover {
  background: rgba(255, 255, 255, 0.88);
}

.carousel-empty {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
}

.carousel-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(2, 45, 112, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.carousel-button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.solution-viewport {
  overflow: hidden;
  margin: -6px -12px -28px;
  padding: 6px 12px 28px;
}

.solution-list {
  display: flex;
  gap: var(--carousel-gap);
  border: 0;
  padding: 4px 0 18px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.solution-item {
  position: relative;
  display: grid;
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-columns) - 1))) / var(--carousel-columns));
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: clamp(16px, 2vw, 20px);
  align-items: start;
  padding: clamp(14px, 2vw, 18px) clamp(18px, 2.8vw, 24px) clamp(20px, 3vw, 28px);
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.3) 48%,
    rgba(230, 240, 255, 0.45) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 24px 34px -28px rgba(2, 45, 112, 0.22);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.solution-item::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.3) 0%, transparent 42%);
  pointer-events: none;
}

.solution-item > * {
  position: relative;
  z-index: 1;
}

.solution-media {
  display: block;
  grid-column: 1 / -1;
  grid-row: 1;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: calc(clamp(14px, 2vw, 18px) * -1) calc(clamp(18px, 2.8vw, 24px) * -1) 0;
  border-radius: 26px 26px 0 0;
  background: var(--blue-50);
}

.solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.solution-item:hover .solution-media img {
  transform: scale(1.035);
}

.solution-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-width: 2.75rem;
  height: 2.75rem;
  margin-top: 2px;
  padding: 0 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(28, 100, 220, 0.28);
  grid-column: 1;
  grid-row: 2;
}

.solution-item > div {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.solution-item h3,
.solution-item h4 {
  margin: 0 0 10px;
  font-size: clamp(1.22rem, 2.1vw, 1.68rem);
  line-height: 1.28;
}

.solution-item h3 a,
.solution-item h4 a {
  color: inherit;
  transition: color 180ms ease;
}

.solution-item h3 a:hover,
.solution-item h4 a:hover {
  color: var(--blue-600);
}

.solution-item p {
  margin-bottom: 0;
  color: #475569;
  line-height: 1.85;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: clamp(8px, 2vw, 14px);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(10, 82, 196, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.carousel-dot:hover,
.carousel-dot[aria-current="true"] {
  width: 28px;
  background: var(--heading-color);
  transform: translateY(-1px);
}

.trust-item p,
.step p,
.contact-copy p {
  color: #475569;
  line-height: 1.85;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 92% 84%, rgba(26, 110, 220, 0.24), transparent 34%),
    linear-gradient(135deg, #052760 0%, var(--blue-950) 46%, #021a46 100%);
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.process-panel,
.process-steps {
  position: relative;
  z-index: 1;
}

.process-panel {
  align-self: start;
  position: sticky;
  top: 118px;
}

.process-panel h2,
.process-panel .eyebrow {
  color: var(--white);
}

.process-panel .eyebrow {
  opacity: 0.75;
}

.process-copy {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.85;
}

.process-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--blue-950);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.process-steps {
  display: grid;
  gap: 18px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 24px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.step::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.step:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.28);
}

.step span,
.step div {
  position: relative;
  z-index: 1;
}

.step span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.product-categories {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.product-categories::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(26, 110, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 110, 220, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.product-categories-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
}

.product-categories-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product-categories-head {
  max-width: 860px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.product-categories-head h2 {
  margin-bottom: 0;
}

.product-plan-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.product-plan-chip {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-height: 210px;
  padding: clamp(22px, 3vw, 28px) 16px 22px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 15px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-plan-chip:hover {
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 16px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.product-plan-chip-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.1));
}

.product-plan-chip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-plan-chip-label {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 12em;
  color: #1f2937;
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1.12vw, 0.98rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.product-plan-chip-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  align-self: end;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(2, 45, 112, 0.2);
  transition: transform 180ms ease;
}

.product-plan-chip:hover .product-plan-chip-arrow {
  transform: translateX(3px);
}

.tax-plans {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) var(--page-x);
  background:
    radial-gradient(90% 55% at 8% 12%, rgba(28, 100, 220, 0.08), transparent 48%),
    linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.tax-plans-inner {
  max-width: var(--page-max);
  margin-inline: auto;
}

.insurance-type-plans .insurance-type-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6.5vw, 72px);
  margin-top: clamp(8px, 2vw, 16px);
}

.insurance-type-plans .insurance-type-block {
  min-width: 0;
}

.insurance-type-grid.tax-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .insurance-type-grid.tax-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .insurance-type-grid.tax-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tax-plans .section-heading {
  max-width: 900px;
}

.tax-plan-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}

.tax-plan-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 22px 46px rgba(2, 45, 112, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tax-plan-sidebar p {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.tax-plan-tab {
  display: block;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  color: #475569;
  text-align: left;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tax-plan-tab:hover,
.tax-plan-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: 0 14px 28px rgba(2, 45, 112, 0.16);
  transform: translateY(-1px);
}

.tax-plan-main {
  min-width: 0;
}

.tax-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.tax-plan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 22px 46px rgba(2, 45, 112, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tax-plan-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 56px rgba(2, 45, 112, 0.14);
}

.tax-plan-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--blue-50);
}

.tax-plan-card[data-tax-plan-category="child"] .tax-plan-media {
  aspect-ratio: 16 / 9;
}

.tax-plan-card[data-tax-plan-category="senior"] .tax-plan-media {
  aspect-ratio: 3 / 2;
}

.tax-plan-card[data-tax-plan-category="health"] .tax-plan-media {
  aspect-ratio: 16 / 9;
}

.tax-plan-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.tax-plan-card:hover .tax-plan-media img {
  transform: scale(1.035);
}

.tax-plan-content {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px);
  text-align: left;
}

.tax-plan-content::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 2.4vw, 24px);
  left: clamp(18px, 2.4vw, 24px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(10, 82, 196, 0.18), transparent);
}

.tax-plan-content p {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  color: var(--heading-color);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(10, 82, 196, 0.08);
  border: 1px solid rgba(10, 82, 196, 0.12);
  border-radius: 999px;
}

.tax-plan-content h3 {
  margin: 0;
  padding-bottom: 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  line-height: 1.22;
  border-bottom: 1px dashed rgba(10, 82, 196, 0.26);
}

.tax-plan-content h3 a {
  color: inherit;
}

.tax-plan-content span {
  display: block;
  margin-top: 2px;
  color: #475569;
  line-height: 1.75;
}

.tax-plan-detail {
  display: inline-flex;
  min-width: 132px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 8px;
  padding: 10px 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(2, 45, 112, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tax-plan-detail::after {
  margin-left: 8px;
  content: "→";
  transition: transform 180ms ease;
}

.tax-plan-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 45, 112, 0.22);
}

.tax-plan-detail:hover::after {
  transform: translateX(3px);
}

.tax-plan-empty {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(2, 45, 112, 0.1);
}

.tax-plan-empty h3 {
  margin-bottom: 12px;
}

.tax-plan-empty p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: #475569;
  line-height: 1.8;
}

.tax-plan-more {
  display: flex;
  width: fit-content;
  margin: clamp(24px, 4vw, 34px) auto 0;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f4f7fb 0%, #e8f0fb 48%, #f8fafc 100%);
}

.testimonials-inner {
  max-width: var(--page-max);
  margin-inline: auto;
}

.testimonials-head {
  margin: 0 0 clamp(32px, 5vw, 48px);
  text-align: center;
}

.testimonials-head h2 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.testimonials-head p {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.testimonial-carousel {
  --carousel-gap: clamp(16px, 2.2vw, 24px);
  --carousel-columns: 3;
  position: relative;
}

.testimonial-carousel .solution-viewport {
  margin: 0;
  padding: 0 0 4px;
}

.testimonial-carousel .solution-list {
  align-items: stretch;
  padding-bottom: 8px;
}

.testimonial-carousel .testimonial-card {
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-columns) - 1))) / var(--carousel-columns));
  min-height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 2.8vw, 28px);
  border: 0;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(2, 45, 112, 0.07);
  transition: box-shadow 0.2s ease;
}

.testimonial-carousel .testimonial-card:hover {
  box-shadow: 0 16px 36px rgba(2, 45, 112, 0.1);
}

.testimonial-stars {
  color: var(--blue-600);
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.testimonial-quote {
  flex: 1;
  margin: 0;
  color: #334155;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-style: normal;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  display: grid;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(10, 82, 196, 0.25);
}

.testimonial-author-text cite {
  display: block;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.testimonial-author-text p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

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

.trust-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 60px rgba(2, 45, 112, 0.06);
}

.trust-item h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.about-grid .trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-grid .trust-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-grid .trust-item-icon {
  display: grid;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(145deg, rgba(230, 240, 255, 0.98), rgba(214, 232, 255, 0.88));
  border: 1px solid rgba(14, 92, 205, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(2, 45, 112, 0.06);
}

.about-grid .trust-item-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.about-grid .trust-item h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.about-grid .trust-item p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(234, 242, 255, 0.86), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 90% 12%, rgba(28, 100, 220, 0.16), transparent 28%);
}

.contact-copy {
  position: sticky;
  top: 128px;
}

.contact-copy p {
  max-width: 610px;
  font-size: 1.08rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(14, 92, 205, 0.16);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(2, 45, 112, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 92, 205, 0.28);
  box-shadow: 0 14px 36px rgba(2, 45, 112, 0.12);
}

.contact-chip-icon {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(145deg, rgba(230, 240, 255, 0.98), rgba(214, 232, 255, 0.88));
  border: 1px solid rgba(14, 92, 205, 0.12);
  border-radius: 14px;
}

.contact-chip-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-chip-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.contact-chip-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.contact-chip-meta {
  font-size: 0.92rem;
  font-weight: 700;
  color: #475569;
}

.contact-chip--line .contact-chip-icon {
  color: #06c755;
}

.contact-chip--facebook .contact-chip-icon {
  color: #1877f2;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-form .contact-field {
  display: grid;
  gap: 10px;
}

.contact-form-label {
  font-family: "DBAdmanX", "Sarabun", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue-900);
}

.contact-field:has(:required) .contact-form-label::after {
  content: " *";
  color: var(--blue-600);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--blue-50);
  border: 1px solid rgba(14, 92, 205, 0.14);
  border-radius: 16px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(28, 100, 220, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-field--plan[hidden] {
  display: none;
}

.contact-field--plan .contact-plan-link {
  margin-top: 10px;
}

.contact-plan-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--blue-600);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-plan-link:hover {
  color: var(--blue-900);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding-block: 14px;
}

.page-hero {
  padding: clamp(72px, 9vw, 128px) var(--page-x);
  background:
    radial-gradient(circle at 88% 16%, rgba(28, 100, 220, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #e6f0ff 54%, #ccdeff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
}

.page-hero.detail-hero h1,
.page-hero.page-hero--article h1 {
  max-width: none;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

@media (min-width: 900px) {
  .page-hero.detail-hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .page-hero.detail-hero h1 {
    white-space: normal;
    line-height: 1.2;
  }
}

.page-hero--article {
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: none;
}

.page-hero--article .eyebrow,
.page-hero--article h1 {
  max-width: var(--page-max);
  margin-inline: auto;
}

.page-hero.page-hero--article h1 {
  white-space: normal;
  text-wrap: balance;
}

.page-hero--article .article-hero-lead {
  max-width: min(62ch, 100%);
  margin: 0;
  margin-inline: 0;
  color: #475569;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.75;
  text-align: left;
}

main:has(> .article-layout) {
  background:
    linear-gradient(180deg, #eef4ff 0%, #f6f9ff 18%, #ffffff 42%);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(32px, 4vw, 48px) var(--page-gutter) clamp(72px, 9vw, 112px);
}

.article-main {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 48px rgba(2, 45, 112, 0.08);
}

.article-featured {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.article-featured img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-layout:has(.article-related-careers) .article-featured img {
  aspect-ratio: 32 / 9;
}

.article-body {
  padding: clamp(24px, 3.5vw, 36px);
  background: transparent;
  border: none;
  border-radius: 0;
}

.article-body p {
  margin: 0 0 1.15em;
  color: #475569;
  font-size: clamp(1.02rem, 1.55vw, 1.1rem);
  line-height: 1.88;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  margin: 1.6em 0 0.65em;
  color: var(--blue-950);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.35;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0 clamp(24px, 3.5vw, 36px) clamp(24px, 3.5vw, 32px);
}

.article-sidebar,
.article-related-careers {
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 40px rgba(2, 45, 112, 0.06);
}

.article-sidebar {
  position: static;
  align-self: stretch;
}

.article-sidebar h2,
.article-related-careers h2 {
  margin: 0 0 clamp(20px, 3vw, 28px);
  color: var(--blue-950);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  text-align: center;
}

.article-sidebar-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sidebar-link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-sidebar-link:hover {
  border-color: rgba(10, 82, 196, 0.22);
  box-shadow: 0 10px 28px rgba(2, 45, 112, 0.1);
  transform: translateY(-2px);
}

.article-sidebar-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.article-sidebar-link span {
  padding: clamp(12px, 1.8vw, 16px);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.article-sidebar-all {
  display: block;
  margin-top: clamp(18px, 2.5vw, 24px);
  text-align: center;
}

.article-related-careers .career-grid--related {
  margin-bottom: 0;
}

.article-related-careers .article-related-all {
  margin: clamp(18px, 2.5vw, 24px) 0 0;
  text-align: center;
}

@media (max-width: 960px) {
  .article-sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .article-sidebar-list {
    grid-template-columns: 1fr;
  }
}

.page-hero p:not(.eyebrow):not(.about-hero-followup):not(.article-hero-lead) {
  max-width: 780px;
  margin-bottom: 0;
  color: #475569;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.85;
}

@media (min-width: 900px) {
  .page-hero--articles p:not(.eyebrow) {
    max-width: none;
    white-space: nowrap;
    line-height: 1.5;
  }
}

.page-hero--about {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(26, 110, 220, 0.11), transparent 55%),
    radial-gradient(ellipse 70% 55% at 100% 15%, rgba(10, 82, 196, 0.07), transparent 50%),
    linear-gradient(180deg, #fbfcff 0%, #eef4ff 48%, #ffffff 100%);
  border-bottom: none;
}

.page-hero-about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
}

.page-hero--about .page-hero-intro {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.page-hero--about .eyebrow {
  display: inline-block;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  padding: 8px 14px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 82, 196, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(2, 45, 112, 0.06);
}

.page-hero--about h1 {
  max-width: none;
  margin-inline: 0;
  margin-bottom: clamp(18px, 2.8vw, 24px);
  color: var(--blue-950);
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

@media (min-width: 768px) {
  .page-hero--about h1 {
    white-space: nowrap;
  }
}

.page-hero--about .page-hero-lead {
  max-width: 52ch;
  margin: 0;
  color: #4b5f78;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.82;
}

.about-hero-slider {
  position: relative;
  width: 100%;
  margin: clamp(36px, 5vw, 52px) 0 0;
  overflow: hidden;
  border-radius: clamp(22px, 3.2vw, 32px);
  background: var(--blue-950);
  box-shadow:
    0 2px 4px rgba(2, 45, 112, 0.04),
    0 20px 50px -16px rgba(2, 45, 112, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  isolation: isolate;
}

.about-hero-slider::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(to top, rgba(3, 42, 107, 0.55) 0%, rgba(3, 42, 107, 0.12) 55%, transparent 100%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.about-hero-slider-viewport {
  position: relative;
  width: 100%;
  height: clamp(220px, 28vw, 347px);
  overflow: hidden;
  border-radius: inherit;
  background: var(--blue-900);
}

.about-hero-slider .hero-slides,
.about-hero-slider .hero-slide {
  position: absolute;
  inset: 0;
}

.about-hero-slider .hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-slider .hero-slide.is-active {
  opacity: 1;
}

.about-hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-slider .hero-slide.is-active img {
  transform: scale(1.06);
}

.about-hero-slider .about-hero-dots {
  position: absolute;
  right: 0;
  bottom: clamp(16px, 2.4vw, 24px);
  left: 0;
  z-index: 2;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding: 8px 14px;
}

.about-hero-slider .hero-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-hero-slider .hero-dot[aria-current="true"] {
  width: 32px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
}

.about-hero-slider .hero-dot:hover {
  background: rgba(255, 255, 255, 0.78);
}

.page-hero--about p.about-hero-followup {
  width: 100%;
  max-width: 100%;
  margin: clamp(32px, 4.5vw, 44px) 0 0;
  padding: clamp(22px, 3.2vw, 30px) clamp(24px, 3.5vw, 34px);
  box-sizing: border-box;
  color: #475569;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.88;
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--blue-600);
  border-radius: clamp(18px, 2.6vw, 24px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 40px -20px rgba(2, 45, 112, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 640px) {
  .page-hero--about h1 {
    white-space: normal;
  }

  .about-hero-slider-viewport {
    height: clamp(200px, 52vw, 280px);
  }

  .page-hero--about p.about-hero-followup {
    padding: 20px 20px 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-slider .hero-slide,
  .about-hero-slider .hero-slide img {
    transition: none;
  }

  .about-hero-slider .hero-slide img,
  .about-hero-slider .hero-slide.is-active img {
    transform: none;
  }
}

.detail-hero .hero-actions {
  margin-top: 30px;
  margin-bottom: 0;
}

.product-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(72px, 9vw, 128px) var(--page-x);
}

.product-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(2, 45, 112, 0.06);
}

.product-card span,
.story-item span {
  color: var(--heading-color);
  font-family: var(--font-display);
  font-weight: 800;
}

.product-card h2 {
  margin-top: auto;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
}

.product-card p {
  color: #475569;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--heading-color);
  font-family: var(--font-display);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 9vw, 128px) var(--page-x);
}

.detail-summary {
  position: sticky;
  top: 122px;
  align-self: start;
  padding: 30px;
  background: var(--blue-950);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-summary h2,
.detail-summary p {
  color: var(--white);
}

.detail-summary p {
  margin-bottom: 0;
  opacity: 0.78;
  line-height: 1.85;
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-block {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.detail-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
}

.detail-block p {
  margin-bottom: 0;
  color: #475569;
  line-height: 1.9;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #475569;
  line-height: 1.75;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  content: "✓";
  background: var(--blue-600);
  border-radius: 999px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(72px, 9vw, 128px) var(--page-x);
}

.agent-section {
  padding: clamp(56px, 7vw, 96px) var(--page-x) 0;
}

.agent-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 32px);
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

.agent-profile-panel {
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 48px rgba(2, 45, 112, 0.08);
}

.agent-profile-media {
  display: flex;
  min-width: 0;
  min-height: 100%;
}

.agent-profile-content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 24px);
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
}

.agent-profile-panel .agent-profile-meta {
  min-width: 0;
  padding-bottom: clamp(18px, 2.5vw, 22px);
  margin-bottom: clamp(4px, 1vw, 8px);
  border-bottom: 1px solid rgba(14, 92, 205, 0.08);
}

.agent-profile-panel .agent-profile-meta .eyebrow {
  margin-bottom: 8px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.agent-profile-panel .agent-profile-meta h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.agent-nickname {
  display: inline-block;
  color: var(--blue-600);
  font-weight: 800;
}

.agent-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-profile-panel .agent-contact-list {
  margin-top: clamp(14px, 2vw, 18px);
}

.agent-contact-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(230, 240, 255, 0.45);
}

.agent-contact-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.agent-contact-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.agent-contact-value {
  color: var(--blue-950);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.agent-contact-value a {
  color: var(--blue-600);
}

.agent-intro-copy {
  display: grid;
  gap: 12px;
  flex: 1;
}

.agent-intro-lead {
  margin: 0;
  color: #334155;
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 600;
  line-height: 1.75;
}

.agent-intro-copy p:not(.agent-intro-lead) {
  margin: 0;
  color: #64748b;
  font-size: clamp(0.92rem, 1.02vw, 0.98rem);
  line-height: 1.72;
}

.agent-card:not(.agent-card--photo) {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 36px);
  align-items: start;
  padding: clamp(22px, 3.5vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(2, 45, 112, 0.06);
}

.agent-card-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue-50);
  aspect-ratio: 3 / 4;
  width: 100%;
}

.agent-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.agent-card-photo--panel {
  flex: 1;
  width: 100%;
  min-height: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  height: 100%;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(160deg, var(--blue-50) 0%, #dce9ff 100%);
  box-shadow: none;
}

.agent-card-body {
  min-width: 0;
  padding-top: clamp(4px, 1vw, 8px);
}

.agent-card-body .eyebrow {
  margin-bottom: 10px;
}

.agent-card h2 {
  margin: 0 0 20px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.agent-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.agent-card dl div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.agent-card dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.agent-dt-icon {
  display: grid;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-600);
  background: rgba(10, 82, 196, 0.08);
  border: 1px solid rgba(10, 82, 196, 0.12);
  border-radius: 10px;
}

.agent-dt-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.agent-card dd {
  margin: 4px 0 0;
  color: var(--blue-950);
  font-family: var(--font-body);
  font-weight: 800;
}

.agent-card a {
  color: var(--blue-600);
}

@media (max-width: 900px) {
  .agent-profile-panel {
    grid-template-columns: 1fr;
  }

  .agent-card-photo--panel {
    border-radius: 28px 28px 0 0;
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .agent-card:not(.agent-card--photo) {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .agent-profile-panel .agent-profile-meta {
    text-align: left;
  }

  .agent-card-photo {
    max-width: 280px;
    width: 100%;
    margin-inline: auto;
    aspect-ratio: 4 / 3;
  }
}

.story-copy {
  position: sticky;
  top: 122px;
  align-self: start;
}

.story-list {
  display: grid;
  gap: 18px;
}

.story-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.story-item h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.story-item p {
  margin-bottom: 0;
  color: #475569;
  line-height: 1.85;
}

.about-grid {
  padding: 0 var(--page-x) clamp(72px, 9vw, 128px);
}

.promo-duo {
  padding: 0 var(--page-x) clamp(40px, 5vw, 56px);
}

.promo-duo-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

.promo-duo-card {
  display: block;
  overflow: hidden;
  line-height: 0;
  border-radius: clamp(18px, 2.5vw, 24px);
  background: var(--blue-50);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 42px rgba(2, 45, 112, 0.1);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}

.promo-duo-card:hover {
  transform: translateY(-6px) scale(1.018);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 56px rgba(10, 82, 196, 0.18);
  filter: brightness(1.03) saturate(1.03);
}

.promo-duo-card:focus-visible {
  outline: 3px solid rgba(10, 82, 196, 0.45);
  outline-offset: 4px;
}

.promo-duo-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .promo-duo-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.5vw, 14px);
  }
}

@media (max-width: 480px) {
  .promo-duo-inner {
    grid-template-columns: 1fr;
  }
}

.cta-band {
  margin: clamp(48px, 6vw, 88px) var(--page-x) clamp(72px, 9vw, 128px);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 4vw, 36px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    var(--shadow);
}

.cta-band-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.cta-band-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2.2vw, 18px);
}

.cta-band-title-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  text-align: left;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.cta-band-title-wrap::-webkit-scrollbar {
  display: none;
  height: 0;
}

.cta-band .eyebrow {
  margin: 0;
  color: var(--white);
  opacity: 0.82;
  letter-spacing: 0.11em;
}

.cta-band h2 {
  display: inline-block;
  margin: 0;
  max-width: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  white-space: nowrap;
}

.cta-band-copy > p:last-of-type {
  margin: 0;
  max-width: 52ch;
  color: var(--white);
  opacity: 0.82;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.cta-band .button {
  flex-shrink: 0;
  margin: 0;
}

.cta-band .button.primary {
  padding-inline: clamp(20px, 3vw, 28px);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 32px rgba(0, 12, 40, 0.22);
}

.cta-band .button.primary:hover {
  background: var(--white);
}

@media (max-width: 800px) {
  .cta-band-inner {
    text-align: center;
  }

  .cta-band-copy {
    align-items: center;
  }

  .cta-band-title-wrap {
    text-align: center;
  }

  .cta-band .button.primary {
    width: fit-content;
  }
}

.benefit-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.benefit-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
}

.benefit-table div:nth-child(odd) {
  background: var(--blue-50);
}

.benefit-table span {
  color: #475569;
}

.benefit-table strong {
  color: var(--heading-color);
  font-family: var(--font-display);
  text-align: right;
}

.page-contact {
  min-height: calc(100svh - 96px);
}

.page-contact h1 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.contact-legal-notes {
  display: grid;
  gap: 22px;
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.contact-legal-block {
  scroll-margin-top: 110px;
}

.contact-legal-block h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.contact-legal-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer {
  margin-top: auto;
  padding: clamp(48px, 6vw, 72px) var(--page-x) clamp(24px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  background: #0b1a33;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand-logo {
  display: none;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.footer-desc {
  margin: 0 0 18px;
  max-width: 42ch;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-meta-label {
  color: rgba(255, 255, 255, 0.55);
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-meta a:hover {
  color: var(--white);
}

.footer-col-title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease, opacity 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-info-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-info-label {
  display: block;
  margin-bottom: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.footer-info-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.footer-base {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 20px;
  padding-top: clamp(20px, 2.5vw, 26px);
}

.footer-copy {
  margin: 0;
  justify-self: start;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.footer-legal-link {
  grid-row: 1;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: color 160ms ease;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal-link:not(.footer-legal-link--end) {
  grid-column: 2;
  justify-self: center;
}

.footer-legal-link--end {
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-base {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .footer-legal-link {
    justify-self: start;
  }

  .footer-legal-link--end {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .intro-inner,
  .process,
  .contact,
  .detail-layout,
  .article-layout,
  .story-section {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .intro-heading {
    flex-direction: column;
    gap: 14px;
  }

  .intro-accent {
    width: min(160px, 42%);
    min-height: 5px;
    margin-top: 0;
  }

  .intro-inner {
    border-radius: 28px;
  }

  .intro-copy {
    padding: clamp(24px, 5vw, 34px);
  }

  .intro-image {
    grid-column: 1;
    grid-row: auto;
    display: block;
    min-height: 0;
    align-self: stretch;
  }

  .intro-image img {
    display: block;
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: unset;
    object-position: center;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    --carousel-columns: 1;
  }

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

  .product-plan-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tax-plan-layout {
    grid-template-columns: 1fr;
  }

  .tax-plan-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tax-plan-sidebar p {
    grid-column: 1 / -1;
  }

  .product-index {
    grid-template-columns: 1fr;
  }

  .solution-carousel {
    --carousel-columns: 2;
  }

  .testimonial-carousel {
    --carousel-columns: 2;
  }

  .carousel-controls {
    margin-top: 0;
  }

  .carousel-filterbar {
    grid-template-columns: minmax(320px, 1fr) minmax(150px, 190px) max-content;
  }

  .product-card {
    min-height: auto;
  }

  .contact-copy,
  .process-panel,
  .detail-summary,
  .story-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px var(--page-gutter);
  }

  .brand {
    gap: clamp(10px, 3vw, 18px);
    column-gap: clamp(10px, 3vw, 18px);
  }

  .brand-logo {
    height: clamp(36px, 11vw, 44px);
    max-width: min(240px, 72vw);
  }

  .brand-name {
    font-size: clamp(1rem, 4.5vw, 1.28rem);
    letter-spacing: -0.025em;
  }

  .hero-content {
    left: 18px;
    width: min(260px, 62vw);
  }

  /* จัดแถวค้นหา / หมวด+ลูกศร / ล้างค้นหา ให้เต็มความกว้างและไม่ชนกัน */
  .carousel-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "carouselSearch carouselSearch"
      "carouselFilter carouselArrows"
      "carouselClear carouselClear";
    align-items: center;
    gap: 10px 12px;
    margin-top: 0;
  }

  .carousel-filterbar {
    display: contents;
  }

  .carousel-search {
    grid-area: carouselSearch;
  }

  .carousel-filter {
    grid-area: carouselFilter;
    min-width: 0;
  }

  .carousel-arrows {
    grid-area: carouselArrows;
    justify-self: end;
    align-self: center;
    gap: 8px;
  }

  .carousel-clear {
    grid-area: carouselClear;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .carousel-button,
  .carousel-search input,
  .carousel-filter select {
    height: 42px;
  }

  .carousel-button {
    width: 42px;
  }

  h1 {
    font-size: clamp(2.05rem, 13vw, 3.3rem);
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(1.12rem, 6vw, 1.55rem);
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: clamp(1rem, 4.5vw, 1.22rem);
  }

  .hero-copy,
  .hero-actions,
  .hero-metrics {
    display: none;
  }

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

  .product-plan-chip {
    min-height: 168px;
    padding: 16px 12px 16px;
    gap: 10px;
  }

  .product-plan-chip-icon {
    width: 60px;
    height: 60px;
  }

  .product-plan-chip-label {
    font-size: 0.8rem;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .intro-inner {
    border-radius: 22px;
  }

  .intro-image {
    min-height: 0;
  }

  .intro-image img {
    min-height: 0;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual::before {
    inset: 4% 0 4% 0;
    border-radius: 30px;
  }

  .shield-card {
    right: 10px;
    bottom: 6%;
    padding: 18px;
  }

  .solution-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .solution-carousel,
  .testimonial-carousel {
    --carousel-columns: 1;
  }

  .solution-media {
    grid-column: 1;
    grid-row: 1;
  }

  .solution-item span {
    grid-column: 1;
    grid-row: 2;
  }

  .solution-item > div {
    grid-column: 1;
    grid-row: 3;
  }

  .trust-item {
    min-height: auto;
  }

  .page-hero,
  .insurance-catalog-inner,
  .product-index,
  .detail-layout,
  .story-section,
  .tax-plans {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .tax-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.8vw, 14px);
  }

  .tax-plan-card {
    border-radius: 18px;
  }

  .tax-plan-content {
    gap: 8px;
    padding: 12px 10px 14px;
  }

  .tax-plan-content::before {
    right: 10px;
    left: 10px;
  }

  .tax-plan-content p {
    max-width: 100%;
    font-size: 0.68rem;
    padding: 5px 8px;
  }

  .tax-plan-content h3 {
    padding-bottom: 8px;
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    line-height: 1.3;
  }

  .tax-plan-content span {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .tax-plan-detail {
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .tax-plan-sidebar {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-bottom: 54px;
    border-radius: 28px;
  }

  .benefit-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .benefit-table strong {
    text-align: left;
  }
}

/* Careers — hero, grid, homepage preview */
.career-hero {
  padding: clamp(48px, 7vw, 88px) var(--page-x) clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 72%);
}

.career-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

.career-hero-copy h1 {
  margin: 0 0 clamp(14px, 2vw, 20px);
  color: var(--blue-900);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.career-hero-copy p {
  margin: 0 0 clamp(20px, 3vw, 28px);
  color: #475569;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.85;
}

.career-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(2, 45, 112, 0.12);
}

.career-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.careers-list {
  padding: clamp(48px, 6vw, 80px) var(--page-x);
}

.careers-list-inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

.careers-list .section-heading {
  text-align: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.careers-list .section-heading h2 {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: var(--blue-900);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.home-careers .section-heading {
  text-align: center;
  width: 100%;
  max-width: none;
}

.home-careers .section-heading h2 {
  text-align: center;
  margin-inline: auto;
}

.home-careers .career-grid--preview {
  margin-bottom: 0;
}

.home-careers .career-card-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.22rem, 2.1vw, 1.68rem);
  line-height: 1.28;
}

.home-careers .career-card-body h3 a {
  color: inherit;
}

.home-careers .career-card-body h3 a:hover {
  color: var(--blue-600);
}

.home-careers .career-card-body p {
  color: #475569;
  line-height: 1.85;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.career-grid--preview {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.career-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(2, 45, 112, 0.08);
}

.career-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-50);
}

.career-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.career-card:hover .career-card-media img {
  transform: scale(1.04);
}

.career-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px) clamp(18px, 2.4vw, 24px);
}

.career-card-body h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.35;
}

.career-card-body h3 a {
  color: var(--blue-900);
  transition: color 180ms ease;
}

.career-card-body h3 a:hover {
  color: var(--blue-600);
}

.career-card-body p {
  flex: 1;
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
}

.career-card-link {
  align-self: flex-end;
  margin-top: 4px;
  color: var(--blue-600);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.career-card-link:hover {
  color: var(--blue-900);
}

@media (max-width: 960px) {
  .career-hero-inner {
    grid-template-columns: 1fr;
  }

  .career-hero-media {
    order: -1;
  }

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

@media (max-width: 640px) {
  .career-grid,
  .career-grid--preview {
    grid-template-columns: 1fr;
  }
}
