:root {
  --blue: #0294dd;
  --deep-blue: #154580;
  --text: #242b32;
  --muted: #67727d;
  --line: #dce6ec;
  --soft: #eef5f8;
  --panel: #f5fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
}

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

.page-width {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}

.help-strip {
  height: 24px;
  display: grid;
  place-items: center;
  background: #d7ebf5;
  color: #12649b;
  font-size: 11px;
  font-weight: 700;
}

.header-main {
  min-height: 154px;
  padding: 18px 0 18px;
  display: grid;
  grid-template-columns: 292px minmax(280px, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.brand img {
  width: 272px;
  height: auto;
}

.search {
  display: flex;
  height: 42px;
  border: 1px solid #d9e3ea;
  border-radius: 2px;
  overflow: hidden;
}

.search input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  color: #7c8791;
  outline: 0;
}

.search button,
.cart {
  border: 0;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
}

.search button {
  width: 52px;
  display: grid;
  place-items: center;
}

.search button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  min-width: 230px;
}

.sparkle-mark {
  width: 40px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-right: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.sparkle-mark svg {
  width: 34px;
  height: 29px;
  fill: var(--blue);
}

.sparkle-mark:hover,
.sparkle-mark:focus-visible {
  background: rgba(15, 160, 210, .1);
  box-shadow: 0 0 0 4px rgba(15, 160, 210, .14);
  outline: none;
  transform: translateY(-1px);
}

.header-divider {
  width: 1px;
  height: 29px;
  background: #8bb9d2;
  margin: 0 2px 0 3px;
}

.cart {
  width: 24px;
  height: 29px;
  border-radius: 1px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.cart svg {
  width: 19px;
  height: 19px;
  fill: var(--blue);
}

.mobile-menu-toggle,
.mobile-overlay,
.mobile-drawer,
.cart-count {
  display: none;
}

.main-nav {
  height: 62px;
  border-top: 1px solid #e9eef2;
  border-bottom: 1px solid #e9eef2;
  background: #fff;
}

.main-nav .page-width {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
}

.main-nav .products-link {
  color: #ec2835;
}

.main-nav .products-dropdown .products-link {
  color: black;
}

.products-dropdown .nav-dropdown-menu {
  min-width: 238px;
  left: -18px;
  padding: 12px 14px;
}

.products-dropdown .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--blue);
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}

.products-dropdown .nav-dropdown-menu a {
  gap: 10px;
  min-height: 36px;
  padding-inline: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #172530;
}

.products-dropdown .nav-dropdown-menu a::before {
  content: "›";
  color: #223240;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.main-nav .services-dropdown .services-link {
  color: #000;
  text-transform: none;
}

.services-dropdown .nav-dropdown-menu {
  min-width: 205px;
  left: -18px;
  padding: 12px 14px;
}

.services-dropdown .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--blue);
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}

.services-dropdown .nav-dropdown-menu a {
  gap: 10px;
  min-height: 36px;
  padding-inline: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #172530;
}

.services-dropdown .nav-dropdown-menu a::before {
  content: "›";
  color: #223240;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  color: #1f2a33;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 70;
  min-width: 250px;
  display: grid;
  padding: 10px;
  border: 1px solid #dce8ef;
  border-top: 3px solid var(--blue);
  border-radius: 0 0 6px 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(20, 45, 62, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.custom-quote-dropdown .nav-dropdown-menu {
  min-width: 285px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  color: #223240;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--blue);
  background: #eef8fd;
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 246px;
  height: 62px;
  margin-top: 0;
  color: #fff;
  background: var(--deep-blue);
  border-radius: 4px 4px 0 0;
  font-size: 14px;
}

.hero {
  background: #f6efe7;
  overflow: hidden;
}

.hero img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.category-strip {
  padding: 28px 0 50px;
}

.review-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0 0 32px;
  white-space: nowrap;
}

.eyebrow {
  color: #a8b3bc;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #798590;
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
}

.rating img {
  width: 210px;
  opacity: .6;
  flex: 0 0 auto;
}

.category-strip h1,
.section-heading h2,
.process-band h2,
.signup h2,
.design-path h2,
.service-proof h2,
.seo-copy h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.category-strip h1 span,
.section-heading h2 {
  color: #0c6ea8;
}

.category-strip p,
.section-heading span,
.process-band p,
.signup p,
.service-proof p,
.seo-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.category-row {
  display: grid;
  grid-template-columns: 34px repeat(6, minmax(0, 1fr)) 34px;
  gap: clamp(10px, 1.8vw, 28px);
  align-items: center;
  margin-top: 32px;
}

.category-circle {
  width: clamp(96px, 10.5vw, 150px);
  height: clamp(96px, 10.5vw, 150px);
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(20, 68, 96, .08);
  overflow: hidden;
  margin: auto;
  aspect-ratio: 1 / 1;
  flex: 0 0 clamp(96px, 10.5vw, 150px);
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-circle img.fit-contain {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.category-row button {
  width: 34px;
  height: 34px;
  border: 1px solid #dbe5ec;
  border-radius: 50%;
  color: #b8c2ca;
  background: #fff;
  font-size: 28px;
}

.product-section {
  position: relative;
  padding: 42px 0;
  border-top: 1px solid #edf2f5;
}

.product-section:before,
.product-section:after {
  position: absolute;
  top: calc(50% + 28px);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe5ec;
  border-radius: 50%;
  color: #b8c2ca;
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 12px rgba(28, 50, 67, .08);
  font-size: 30px;
  line-height: 1;
}

.product-section:before {
  content: "<";
  left: -20px;
}

.product-section:after {
  content: ">";
  right: -20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading p {
  display: inline;
  margin: 0 4px 0 0;
  color: #343c44;
  font-weight: 800;
}

.section-heading a {
  min-width: 158px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #1f3444;
  border-radius: 2px;
  color: #1e2c35;
  font-size: 12px;
  font-weight: 800;
}

.product-grid,
.wedding-grid,
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  display: block;
  min-height: 348px;
  padding: 0 18px 18px;
  background: #fff;
  border: 1px solid #cddce5;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(28, 50, 67, .08);
  overflow: hidden;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: #96cbe5;
  box-shadow: 0 14px 24px rgba(28, 50, 67, .13);
  outline: none;
  transform: translateY(-2px);
}

.product-card img {
  max-width: none;
  width: calc(100% + 36px);
  height: 220px;
  margin-left: -18px;
  display: block;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #eaf2f6;
  border-bottom: 1px solid #dfe9ef;
}

.product-card h3,
.wedding-grid h3 {
  margin: 16px 0 6px;
  font-size: 14px;
}

.product-card small {
  color: #53606a;
}

.product-card p {
  display: flex;
  justify-content: space-between;
  color: #7c8791;
  font-size: 12px;
}

.product-card b {
  color: var(--blue);
}

.sale:before {
  content: "SALE";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 5px 9px;
  color: #fff;
  background: #f42137;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
}

.wedding-band {
  padding: 52px 0 62px;
  background: #eaf3f7;
}

.wedding-grid article {
  background: #fff;
  border: 1px solid #cddce5;
  border-radius: 4px;
  overflow: hidden;
}

.wedding-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wedding-grid h3,
.wedding-grid p {
  padding-inline: 16px;
}

.wedding-grid p {
  min-height: 42px;
  color: var(--muted);
  font-size: 12px;
}

.wedding-grid a {
  float: right;
  margin: 0 16px 16px;
  padding: 7px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
}

.process-band {
  background: #28aee4;
  color: #fff;
}

.process-content {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 44px;
  align-items: center;
}

.process-band p {
  color: rgba(255,255,255,.85);
}

.process-content ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-content li {
  position: relative;
  text-align: center;
}

.process-content li + li:before {
  content: "---->";
  position: absolute;
  top: 30px;
  left: -44px;
  color: #fff;
  letter-spacing: 3px;
}

.process-content span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #0c9dcc;
  font-size: 25px;
}

.process-content svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.process-content b,
.process-content small {
  display: block;
}

.process-content small {
  margin-top: 6px;
  color: rgba(255,255,255,.78);
}

.signup {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.signup img {
  width: 520px;
}

.signup form {
  max-width: 500px;
}

.signup input {
  width: 100%;
  height: 44px;
  border: 1px solid #cfdbe3;
  padding: 0 16px;
  margin: 14px 0 12px;
}

.signup small {
  display: block;
  color: #8b969f;
  line-height: 1.5;
}

.signup button,
.path-grid a {
  border: 0;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.signup button {
  width: 130px;
  height: 34px;
  margin-top: 16px;
}

.design-path {
  padding: 54px 0;
  border-top: 1px solid #edf2f5;
}

.design-path h2 {
  margin-bottom: 34px;
  text-align: center;
  font-size: 18px;
}

.path-grid article {
  min-height: 360px;
  padding: 18px;
  border: 1px solid #d6e2e9;
  background: #fff;
  text-align: center;
}

.path-grid img {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.path-grid p {
  min-height: 74px;
  color: #5d6872;
  line-height: 1.45;
}

.path-grid a {
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  height: 28px;
  border-radius: 2px;
  font-size: 10px;
  text-transform: uppercase;
}

.service-proof {
  padding: 76px 0 0;
}

.proof-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-proof h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.14;
}

.service-proof > p {
  max-width: 680px;
  margin-top: 12px;
  font-size: 16px;
}

.proof-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid #d8ebf4;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fdff 0%, #eef7fb 100%);
}

.proof-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(4, 153, 198, .22);
  font-size: 12px;
  font-weight: 800;
}

.proof-card > div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #d8ebf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 63, 89, .08);
  text-align: left;
}

.proof-card > div:hover {
  border-color: #b7d9e8;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 63, 89, .12);
}

.proof-card b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.design-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 34px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(135deg, #079dcc 0%, #0b84b9 100%);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(4, 153, 198, .18);
}

.design-service span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.design-service h3,
.design-service p {
  margin: 0;
  color: #fff;
}

.design-service p {
  margin-top: 8px;
  max-width: 640px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.design-service a {
  min-width: 150px;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.seo-copy {
  padding: 76px 0 86px;
  text-align: center;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-copy h2 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.14;
}

.seo-intro {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 16px;
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.seo-copy-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #d8ebf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 63, 89, .08);
}

.seo-copy-grid span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.seo-copy-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
}

.seo-copy-grid p {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .seo-copy-grid {
    grid-template-columns: 1fr;
  }

  .seo-copy-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .seo-copy {
    padding: 54px 0 62px;
  }

  .seo-copy h2 {
    font-size: 28px;
  }

  .seo-intro {
    font-size: 15px;
  }

  .seo-copy-grid article {
    padding: 20px;
  }
}

/* Home page motion layer */
body:has(.hero) .hero img {
  animation: home-hero-zoom 8s ease-out both;
  transform-origin: center;
}

body:has(.hero) .review-meta,
body:has(.hero) .category-strip h1,
body:has(.hero) .category-strip > p,
body:has(.hero) .section-heading,
body:has(.hero) .process-content,
body:has(.hero) .signup,
body:has(.hero) .design-path,
body:has(.hero) .service-proof,
body:has(.hero) .seo-copy {
  animation: home-rise .7s ease both;
}

body:has(.hero) .category-strip h1 {
  animation-delay: .08s;
}

body:has(.hero) .category-strip > p {
  animation-delay: .14s;
}

body:has(.hero) .category-circle {
  animation: home-pop .62s cubic-bezier(.2, .8, .2, 1) both, home-soft-float 5.2s ease-in-out infinite;
  transition: transform .24s ease, box-shadow .24s ease;
}

body:has(.hero) .category-circle:nth-of-type(2) { animation-delay: .04s, .8s; }
body:has(.hero) .category-circle:nth-of-type(3) { animation-delay: .1s, 1.1s; }
body:has(.hero) .category-circle:nth-of-type(4) { animation-delay: .16s, 1.4s; }
body:has(.hero) .category-circle:nth-of-type(5) { animation-delay: .22s, 1.7s; }
body:has(.hero) .category-circle:nth-of-type(6) { animation-delay: .28s, 2s; }
body:has(.hero) .category-circle:nth-of-type(7) { animation-delay: .34s, 2.3s; }

body:has(.hero) .category-circle:hover {
  box-shadow: 0 18px 34px rgba(20, 68, 96, .16);
  transform: translateY(-6px) scale(1.03);
}

body:has(.hero) .category-row button,
body:has(.hero) .section-heading a,
body:has(.hero) .design-service a,
body:has(.hero) .path-grid a,
body:has(.hero) .wedding-grid article a,
body:has(.hero) .signup button {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

body:has(.hero) .category-row button:hover,
body:has(.hero) .section-heading a:hover,
body:has(.hero) .design-service a:hover,
body:has(.hero) .path-grid a:hover,
body:has(.hero) .wedding-grid article a:hover,
body:has(.hero) .signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(28, 50, 67, .12);
}

body:has(.hero) .product-section {
  animation: home-rise .72s ease both;
}

body:has(.hero) .product-section:nth-of-type(3) { animation-delay: .08s; }
body:has(.hero) .product-section:nth-of-type(4) { animation-delay: .14s; }
body:has(.hero) .product-section:nth-of-type(5) { animation-delay: .2s; }

body:has(.hero) .product-card,
body:has(.hero) .wedding-grid article,
body:has(.hero) .path-grid article,
body:has(.hero) .proof-card > div {
  animation: home-card-in .58s cubic-bezier(.2, .8, .2, 1) both;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body:has(.hero) .product-card:nth-child(2),
body:has(.hero) .wedding-grid article:nth-child(2),
body:has(.hero) .path-grid article:nth-child(2),
body:has(.hero) .proof-card > div:nth-child(2) {
  animation-delay: .06s;
}

body:has(.hero) .product-card:nth-child(3),
body:has(.hero) .wedding-grid article:nth-child(3),
body:has(.hero) .path-grid article:nth-child(3),
body:has(.hero) .proof-card > div:nth-child(3) {
  animation-delay: .12s;
}

body:has(.hero) .product-card:nth-child(4),
body:has(.hero) .wedding-grid article:nth-child(4),
body:has(.hero) .path-grid article:nth-child(4),
body:has(.hero) .proof-card > div:nth-child(4) {
  animation-delay: .18s;
}

body:has(.hero) .product-card img,
body:has(.hero) .wedding-grid article img,
body:has(.hero) .path-grid img {
  transition: transform .42s ease;
}

body:has(.hero) .product-card:hover img,
body:has(.hero) .product-card:focus-visible img,
body:has(.hero) .wedding-grid article:hover img,
body:has(.hero) .path-grid article:hover img {
  transform: scale(1.045);
}

body:has(.hero) .wedding-grid article:hover,
body:has(.hero) .path-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(28, 50, 67, .12);
}

body:has(.hero) .proof-card span {
  animation: home-pulse 2.8s ease-in-out infinite;
}

@keyframes home-hero-zoom {
  from {
    opacity: .92;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-soft-float {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@keyframes home-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(43, 193, 233, .25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(43, 193, 233, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:has(.hero) .hero img,
  body:has(.hero) .review-meta,
  body:has(.hero) .category-strip h1,
  body:has(.hero) .category-strip > p,
  body:has(.hero) .section-heading,
  body:has(.hero) .process-content,
  body:has(.hero) .signup,
  body:has(.hero) .design-path,
  body:has(.hero) .service-proof,
  body:has(.hero) .seo-copy,
  body:has(.hero) .category-circle,
  body:has(.hero) .product-section,
  body:has(.hero) .product-card,
  body:has(.hero) .wedding-grid article,
  body:has(.hero) .path-grid article,
  body:has(.hero) .proof-card > div,
  body:has(.hero) .proof-card span {
    animation: none;
  }

  body:has(.hero) .category-circle,
  body:has(.hero) .category-row button,
  body:has(.hero) .section-heading a,
  body:has(.hero) .design-service a,
  body:has(.hero) .path-grid a,
  body:has(.hero) .wedding-grid article a,
  body:has(.hero) .signup button,
  body:has(.hero) .product-card,
  body:has(.hero) .wedding-grid article,
  body:has(.hero) .path-grid article,
  body:has(.hero) .proof-card > div,
  body:has(.hero) .product-card img,
  body:has(.hero) .wedding-grid article img,
  body:has(.hero) .path-grid img {
    transition: none;
  }
}

.product-page {
  background: #fff;
}

.product-detail {
  padding: 58px 0 42px;
}

.product-title {
  max-width: 650px;
  margin-bottom: 34px;
}

.product-title h1 {
  margin: 0 0 18px;
  color: #282f36;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.product-title p {
  margin: 0;
  color: #404951;
  font-size: 15px;
  line-height: 1.45;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(360px, 430px);
  gap: 40px;
  justify-content: space-between;
  align-items: start;
}

.product-media {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  max-width: 660px;
}

.thumbs {
  display: grid;
  gap: 24px;
  align-content: start;
}

.thumbs button {
  width: 126px;
  height: 126px;
  padding: 0;
  border: 1px solid #dce8ef;
  background: #f3f8fb;
  cursor: pointer;
}

.thumbs button.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 148, 221, .12);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-product-image {
  height: clamp(320px, 34vw, 430px);
  min-height: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7f9fb 0%, #d8d8d8 100%);
  border: 1px solid #d7e2e9;
  overflow: hidden;
}

.main-product-image img {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
}

.product-points {
  grid-column: 1 / -1;
  margin: 28px 0 0 6px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #26313b;
  font-size: 13px;
  font-weight: 700;
}

.product-points li {
  position: relative;
  padding-left: 26px;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #79bd43;
  border-bottom: 2px solid #79bd43;
  transform: rotate(-45deg);
}

.product-price-note {
  grid-column: 1 / -1;
  margin: 8px 0 0 42px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.calculator-panel {
  margin-top: -130px;
  background: #f2f7fb;
  border: 1px solid #dce9f1;
}

.calculator-panel h4 {
  margin: 0;
  padding: 13px 12px;
  color: #fff;
  background: #079bd8;
  text-align: center;
  font-size: clamp(15px, 1.55vw, 20px) !important;
  line-height: 1.25 !important;
  white-space: nowrap;
}

.calculator-panel form {
  display: grid;
  gap: 16px;
  padding: 22px 20px 16px;
}

.calculator-panel label,
.calculator-panel fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  color: #4b5862;
  font-size: 12px;
  font-weight: 800;
}

.calculator-panel select,
.shipping-box select,
.shipping-box input {
  width: 100%;
  height: 42px;
  margin-top: 4px;
  padding: 0 38px 0 14px;
  border: 2px solid #14a7e8;
  border-radius: 2px;
  background: #fff;
  color: #38444d;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.calculator-panel fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.calculator-panel legend,
.shipping-box legend {
  margin-bottom: 6px;
}

.calculator-panel fieldset label,
.shipping-box fieldset label {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 2px solid #14a7e8;
  background: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
}

.calculator-panel input[type="radio"],
.shipping-box input[type="radio"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: #079bd8;
}

.calculator-panel select:focus,
.shipping-box select:focus,
.shipping-box input:focus,
.calculator-panel input[type="radio"]:focus-visible,
.shipping-box input[type="radio"]:focus-visible {
  outline: 3px solid rgba(7, 155, 216, .18);
  outline-offset: 2px;
}

.calculator-panel .product-calculator-custom-size {
  width: 100%;
  gap: 14px;
  margin: -2px 0 0;
  padding: 22px 16px 24px;
  border-color: #dfe8f2;
  box-shadow: none;
}

.large-format-product .calculator-size-native {
  display: block;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-title {
  min-height: 48px;
  padding: 0 16px;
  font-size: 18px !important;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-help {
  font-size: 16px !important;
  text-align: center;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-grid {
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-field span {
  font-size: 15px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-field input {
  height: 50px;
  padding-right: 62px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-field em {
  right: 10px;
  bottom: 15px;
  font-size: 14px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-x {
  margin-bottom: 14px;
  font-size: 28px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-guides {
  gap: 36px;
  padding: 0 28px 16px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-guides .width-guide {
  width: 86px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-total strong {
  font-size: 32px;
}

.calculator-panel .product-calculator-custom-size .franchise-custom-size-stepper {
  width: 160px;
}

.calculator-panel .product-calculator-custom-size > button {
  min-width: 190px;
  min-height: 56px;
}

.native-select-hidden {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  margin-top: 4px;
}

.custom-select-button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 2px solid #14a7e8;
  border-radius: 2px;
  color: #38444d;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.custom-select-button::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-right: 2px solid #263946;
  border-bottom: 2px solid #263946;
  transform: rotate(45deg) translateY(-2px);
}

.custom-select.open .custom-select-button::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 35;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #14a7e8;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(20, 54, 74, .18);
}

.custom-select.open .custom-select-options {
  display: grid;
}

.custom-select-option {
  min-height: 38px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid #e2edf3;
  color: #2c3942;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: #eef8fd;
  outline: none;
}

.calculator-panel fieldset label + label,
.shipping-box fieldset label + label {
  border-left: 0;
}

.subtotal {
  margin: 0 20px 22px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid #cfd8dd;
  background: #fff;
  color: #313b43;
  font-weight: 900;
}

.shipping-box {
  margin: 0 20px 24px;
  padding: 18px 20px 20px;
  border: 1px solid #cfd8dd;
  background: #fff;
}

.shipping-box #shipping-country {
  position: static;
  width: 100% !important;
  height: 48px;
  opacity: 1;
  pointer-events: auto;
  appearance: auto;
}

.shipping-box .custom-select {
  display: none !important;
}

.shipping-box h3 {
  margin: 0 0 16px;
  color: #4b5862;
  font-size: 14px;
}

.shipping-box fieldset {
  margin: 16px 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.zip-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 16px;
}

.shipping-total {
  margin: 14px 0 0;
  color: #33414c;
  font-size: 13px;
  font-weight: 800;
}

.shipping-total b {
  color: #079bd8;
}

.zip-row button,
.product-actions button {
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.product-actions button {
  min-width: 126px;
  height: 40px;
}

.later-link {
  margin: 0 20px 28px;
  color: #009ade;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}

.later-link a {
  text-decoration: underline;
}

.frequently-viewed {
  padding: 0 0 70px;
}

.frequently-viewed h2 {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 0 0 18px 160px;
  color: #009ade;
  font-size: 18px;
}

.frequently-viewed h2 a {
  color: #ff2f45;
  font-size: 13px;
  text-decoration: underline;
}

.viewed-grid {
  width: min(690px, 100%);
  margin-left: 160px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.viewed-grid article {
  background: #fff;
}

.viewed-grid img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.viewed-grid b {
  display: block;
  min-height: 28px;
  padding: 8px 4px 4px;
  color: #1f2c35;
  font-size: 10px;
}

.viewed-grid span {
  display: block;
  padding: 7px 4px;
  color: #fff;
  background: #17255d;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.info-tabs {
  width: min(690px, 100%);
  margin: 36px 0 14px 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-tabs button {
  min-height: 48px;
  border: 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.info-tabs button:nth-child(1) { background: #4778ff; }
.info-tabs button:nth-child(2) { background: #10b7c7; }
.info-tabs button:nth-child(3) { background: #2ecc71; }
.info-tabs button:nth-child(4) { background: #943cff; }
.info-tabs button:nth-child(5) { background: #e01f11; }
.info-tabs button:nth-child(6) { background: #cf2ea0; }

.template-table {
  width: min(690px, 100%);
  margin-left: 160px;
  border-collapse: collapse;
  color: #6b747c;
  font-size: 12px;
}

.template-table th {
  padding: 10px;
  color: #fff;
  background: #142760;
  text-align: left;
}

.template-table td {
  padding: 18px 10px;
  background: #ececec;
  border-bottom: 1px solid #fff;
}

.detail-design-service {
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.service-page {
  background: #fff;
}

.service-listing-page {
  min-height: 800px;
}

.service-breadcrumb {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 38px 0 10px;
  color: #1e1f20;
  font-size: 18px;
  font-weight: 800;
}

.service-breadcrumb a {
  color: inherit;
}

.service-breadcrumb span {
  margin: 0;
}

.service-title-band {
  padding: 52px 0 58px;
  background: #d8eaf5;
}

.service-title-band h1 {
  margin: 0 0 18px;
  color: #2a3137;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.05;
}

.service-title-band p {
  margin: 0;
  color: #333c44;
  font-size: 25px;
}

.service-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 48px;
  padding: 48px 0 120px;
}

.service-product-card {
  display: block;
  overflow: hidden;
  border: 1px solid #d9e3ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(22, 42, 55, .16);
  color: inherit;
}

.service-product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #f3f0ed;
  border-bottom: 1px solid #e5edf2;
}

.service-product-card h2 {
  margin: 18px 16px 20px;
  color: #2a3137;
  font-size: 14px;
  font-weight: 900;
}

.service-product-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 0 16px 24px;
  color: #a0aab2;
  font-size: 13px;
  font-weight: 700;
}

.service-product-card b {
  color: var(--blue);
  font-size: 20px;
  white-space: nowrap;
}

.service-copy {
  padding: 0 48px 130px;
}

.service-copy p {
  margin: 0;
  color: #2f363d;
  font-size: 15px;
  line-height: 1.45;
}

/* Full color listing aligned with custom quote aesthetic */
.full-color-modern {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.full-color-modern .service-breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
  color: #526979;
  font-size: 14px;
  font-weight: 800;
}

.full-color-modern .service-title-band {
  padding: 0;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.full-color-modern .full-color-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 60px;
}

.full-color-modern .service-title-band h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.full-color-modern .service-title-band p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.full-color-modern .full-color-hero-art {
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.full-color-modern .full-color-hero-art img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.full-color-modern .full-color-hero-card {
  align-self: center;
}

.full-color-modern .service-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 44px;
}

.full-color-modern .service-product-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.full-color-modern .service-product-card:hover,
.full-color-modern .service-product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(4, 127, 191, .28);
  box-shadow: 0 22px 54px rgba(18, 63, 112, .14);
}

.full-color-modern .service-product-card img {
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 16px;
  object-fit: contain;
  background: #f7fbfd;
}

.full-color-modern .service-products-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.full-color-modern .service-products-head h2 {
  margin: 0;
  color: #123f70;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 950;
  line-height: 1.12;
}

.full-color-modern .service-product-card h3 {
  min-height: 42px;
  margin: 18px 18px 8px;
  color: #123f70;
  font-size: 17px !important;
  font-weight: 950;
  line-height: 1.2;
}

.full-color-modern .service-product-card p {
  align-self: end;
  margin: 0;
  padding: 0 18px 20px;
  color: #047fbf;
  font-size: 14px !important;
  font-weight: 900;
}

.full-color-modern .service-copy {
  padding: 0;
}

.full-color-modern .service-copy p {
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  color: #526979;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .full-color-modern .full-color-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }

  .full-color-modern .service-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .full-color-modern {
    padding-bottom: 56px;
  }

  .full-color-modern .full-color-hero-inner,
  .full-color-modern .service-products {
    grid-template-columns: 1fr !important;
  }

  .full-color-modern .full-color-hero-inner {
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .full-color-modern .service-title-band h1 {
    font-size: 38px !important;
  }

  .full-color-modern .service-title-band p {
    font-size: 16px !important;
  }

  .full-color-modern .service-products {
    gap: 18px;
  }
}

/* Large format listing polish */
.large-format-modern .service-title-band {
  background:
    radial-gradient(circle at 84% 20%, rgba(226, 20, 131, .12), transparent 28%),
    linear-gradient(135deg, rgba(2, 148, 221, .15), rgba(255, 255, 255, .82) 54%, rgba(18, 63, 112, .07)),
    #f4fbfe;
}

.large-format-modern .large-format-hero-art {
  min-height: 310px;
  overflow: hidden;
}

.large-format-modern .large-format-hero-art picture {
  display: grid;
  place-items: center;
  width: 100%;
}

.large-format-modern .large-format-hero-art img {
  max-width: 420px;
  filter: drop-shadow(0 18px 24px rgba(18, 63, 112, .18));
}

.large-format-modern .service-product-card h2 {
  min-height: 42px;
  margin: 18px 18px 8px;
  color: #123f70;
  font-size: 17px !important;
  font-weight: 950;
  line-height: 1.2;
}

.large-format-modern .service-product-card p {
  align-self: end;
  display: block;
  padding: 0 18px 20px;
  color: #526979;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.4;
}

.large-format-modern .service-product-card b {
  color: #047fbf;
  font-size: 18px;
  font-weight: 950;
}

.large-format-modern .service-copy p {
  border-left: 6px solid #08a7d8;
}

@media (max-width: 760px) {
  .large-format-modern .large-format-hero-art {
    min-height: 220px;
  }
}

/* Stands and displays listing polish */
.stands-displays-modern .service-title-band {
  background:
    radial-gradient(circle at 12% 22%, rgba(226, 20, 131, .1), transparent 30%),
    linear-gradient(135deg, rgba(18, 63, 112, .08), rgba(255, 255, 255, .84) 50%, rgba(2, 148, 221, .16)),
    #f4fbfe;
}

.stands-displays-modern .stands-displays-hero-art {
  min-height: 310px;
  overflow: hidden;
}

.stands-displays-modern .stands-displays-hero-art picture {
  display: grid;
  place-items: center;
  width: 100%;
}

.stands-displays-modern .stands-displays-hero-art img {
  max-width: 420px;
  filter: drop-shadow(0 18px 24px rgba(18, 63, 112, .18));
}

.stands-displays-modern .service-product-card h2 {
  min-height: 42px;
  margin: 18px 18px 8px;
  color: #123f70;
  font-size: 17px !important;
  font-weight: 950;
  line-height: 1.2;
}

.stands-displays-modern .service-product-card p {
  align-self: end;
  padding: 0 18px 20px;
  color: #047fbf;
  font-size: 14px !important;
  font-weight: 900;
}

.stands-displays-modern .service-copy p {
  border-left: 6px solid #08a7d8;
}

@media (max-width: 760px) {
  .stands-displays-modern .stands-displays-hero-art {
    min-height: 220px;
  }
}

/* Packaging listing polish */
.packaging-listing-modern .service-title-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 20, 131, .12), transparent 30%),
    linear-gradient(135deg, rgba(2, 148, 221, .12), rgba(255, 255, 255, .86) 52%, rgba(18, 63, 112, .08)),
    #f4fbfe;
}

.packaging-listing-modern .packaging-listing-hero-art {
  min-height: 310px;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.packaging-listing-modern .packaging-listing-hero-art img {
  width: 100%;
  max-width: 430px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(18, 63, 112, .14));
}

.packaging-listing-modern .service-product-card h2 {
  min-height: 42px;
  margin: 18px 18px 8px;
  color: #123f70;
  font-size: 17px !important;
  font-weight: 950;
  line-height: 1.2;
}

.packaging-listing-modern .service-product-card p {
  align-self: end;
  padding: 0 18px 20px;
  color: #047fbf;
  font-size: 14px !important;
  font-weight: 900;
}

.packaging-listing-modern .service-copy p {
  border-left: 6px solid #08a7d8;
}

@media (max-width: 760px) {
  .packaging-listing-modern .packaging-listing-hero-art {
    min-height: 220px;
  }
}

.business-services-page {
  background: #fff;
}

.business-title-band {
  padding: 44px 0 48px;
}

.business-title-band h1 {
  max-width: 520px;
  margin-bottom: 0;
}

.business-intro {
  padding: 34px 0 10px;
  color: #252d34;
  font-size: 14px;
  line-height: 1.55;
}

.business-intro p {
  max-width: 1080px;
  margin: 0 0 8px;
}

.business-benefits {
  padding: 0 0 42px;
}

.business-benefits h2 {
  margin: 30px 0 34px;
  color: #ec1687;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

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

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

.industry-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  color: #20282f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  color: var(--icon-color, #11a4df);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.eddm-copy {
  padding: 14px 0 92px;
}

.eddm-copy h2 {
  margin: 0 0 8px;
  color: #182129;
  font-size: 16px;
  font-weight: 900;
}

.eddm-copy p {
  margin: 0;
  color: #20282f;
  font-size: 13px;
  line-height: 1.45;
}

.contact-page {
  background: #fff;
}

.contact-hero {
  background: #d8eaf5;
}

.contact-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  min-height: 210px;
}

.contact-hero h1 {
  margin: 0;
  color: #2a3137;
  font-size: 26px;
  font-weight: 800;
}

.contact-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 210px;
}

.contact-hero-art img {
  width: min(100%, 470px);
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.contact-cube {
  position: absolute;
  top: 34px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
}

.contact-cube:nth-child(1) {
  left: 92px;
}

.contact-cube:nth-child(2) {
  left: 195px;
  top: 48px;
  transform: rotate(8deg);
}

.contact-cube:nth-child(3) {
  left: 304px;
  top: 32px;
  transform: rotate(18deg);
}

.contact-cube svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 13px rgba(20, 53, 88, .28));
}

.contact-cube path:first-child {
  fill: #173f82;
}

.contact-cube path:not(:first-child) {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hand {
  position: absolute;
  right: 48px;
  bottom: 31px;
  width: 290px;
  height: 54px;
  border-radius: 70% 12% 70% 24%;
  background: linear-gradient(100deg, #f4c4ab, #f7d5c3 62%, #d8997d);
  transform: rotate(8deg);
  box-shadow: 0 10px 18px rgba(99, 72, 58, .12);
}

.contact-hand:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 29px;
  width: 145px;
  height: 26px;
  border-radius: 60px;
  background: linear-gradient(90deg, #f5c7b1, #d9977a);
  transform: rotate(5deg);
}

.contact-help {
  padding: 54px 0 92px;
  text-align: center;
}

.contact-help h2 {
  margin: 0 0 34px;
  color: #303840;
  font-size: 18px;
  font-weight: 900;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  min-height: 236px;
  padding: 34px 24px 24px;
  border: 1px solid #d9e3ea;
  background: #fff;
  box-shadow: 0 2px 8px rgba(21, 42, 56, .09);
}

.contact-card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--blue);
}

.contact-card-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h2 {
  min-height: 38px;
  margin: 0 0 12px;
  color: #2f363d;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.22;
}

.contact-card p {
  min-height: 38px;
  margin: 0 0 24px;
  color: #8b969f;
  font-size: 10px;
  line-height: 1.4;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 36px;
  color: #fff;
  background: var(--blue);
  font-size: 13px !important;
  font-weight: 900;
}

.contact-support {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(360px, 1fr);
  max-width: 1040px;
  margin: 0 auto 76px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2ebf1;
  box-shadow: 0 22px 46px rgba(24, 45, 66, 0.1);
}

.support-photo {
  overflow: hidden;
  min-height: 330px;
  background: #f8f5f1;
}

.support-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.support-info {
  padding: 42px 50px;
}

.support-info h2 {
  max-width: 500px;
  margin: 0 0 18px;
  color: #303840;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
}

.support-info p {
  max-width: 430px;
  margin: 0 0 24px;
  color: #5f6f7b;
  font-size: 15px;
  line-height: 1.65;
}

.support-phone-list {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.support-phone {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 104px;
  padding: 20px 24px;
  border: 1px solid #e4edf4;
  border-radius: 14px;
  color: #047fbf;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 54, 89, .1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.support-phone:hover,
.support-phone:focus-visible {
  transform: translateY(-2px);
  border-color: #a9d8ec;
  box-shadow: 0 18px 38px rgba(4, 127, 191, .16);
  outline: none;
}

.support-phone-icon,
.support-detail-icon {
  display: inline-flex;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #047fbf;
  background: #eef6ff;
}

.support-phone-icon {
  color: #fff;
  background: linear-gradient(135deg, #0294dd 0%, #047fbf 100%);
  box-shadow: 0 12px 24px rgba(4, 127, 191, .24);
}

.support-phone-icon svg,
.support-detail-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-phone-copy {
  display: grid;
  gap: 4px;
}

.support-phone-copy strong {
  color: #102635;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.support-phone-copy b {
  color: #047fbf;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 950;
  line-height: 1.05;
}

.support-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 138px;
  padding: 24px;
  color: #52616d;
  background: #fff;
  border: 1px solid #e4edf4;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 54, 89, .08);
  font-size: 16px;
  line-height: 1.5;
}

.support-detail-wide {
  grid-column: 1 / -1;
}

.support-detail-wide .support-detail-icon {
  position: relative;
  margin-right: 18px;
}

.support-detail-wide .support-detail-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -22px;
  width: 1px;
  height: 52px;
  background: #dce8ef;
}

.support-detail-item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.support-detail-item a {
  color: #047fbf;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-map {
  max-width: 1000px;
  margin-bottom: 68px;
}

.location-iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 1px solid #d5e0e7;
  background: #eef5f8;
}

/* Contact page aligned with custom quote aesthetic */
.contact-modern {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.contact-modern .service-breadcrumb {
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.contact-modern .contact-hero {
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.contact-modern .contact-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px) minmax(250px, 340px);
  gap: 32px;
  min-height: 0;
  padding-top: 46px;
  padding-bottom: 60px;
}

.contact-modern .contact-hero-copy {
  min-width: 0;
}

.contact-modern .contact-hero h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.contact-modern .contact-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.contact-modern .contact-hero-art {
  height: auto;
  min-height: 190px;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.contact-modern .contact-hero-art img {
  width: 100%;
  max-width: 290px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.contact-modern .contact-hero-card {
  align-self: center;
}

.contact-modern .contact-help {
  margin-top: -28px;
  padding: 0 0 62px;
  text-align: left;
}

.contact-modern .contact-section-head {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.contact-modern .contact-help h2 {
  margin: 0;
  color: #123f70;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 950;
  line-height: 1.12;
}

.contact-modern .contact-card-grid {
  gap: 24px;
  max-width: 1040px;
}

.contact-modern .contact-card {
  min-height: 0;
  display: grid;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.contact-modern .contact-card-icon,
.contact-modern .support-detail-icon {
  border-radius: 8px;
  color: #fff;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .18);
}

.contact-modern .contact-card h2 {
  min-height: 0;
  margin: 4px 0 12px;
  color: #123f70;
  font-size: 23px !important;
  font-weight: 950;
  line-height: 1.12;
}

.contact-modern .contact-card p {
  min-height: 0;
  margin: 0 0 24px;
  color: #526979;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.55;
}

.contact-modern .contact-card a {
  width: 100%;
  min-height: 46px;
  border-radius: 7px;
  background: #047fbf;
  font-size: 15px !important;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .22);
}

.contact-modern .contact-support {
  max-width: 1040px;
  margin-bottom: 56px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.contact-modern .support-info h2 {
  color: #123f70;
  font-size: clamp(30px, 3vw, 38px) !important;
  line-height: 1.12;
}

.contact-modern .support-info p,
.contact-modern .support-detail-item {
  color: #526979;
  font-weight: 700;
}

.contact-modern .support-phone,
.contact-modern .support-detail-item a {
  color: #047fbf;
}

.contact-modern .support-whatsapp {
  border-color: rgba(37, 211, 102, .28);
  background: linear-gradient(180deg, #fbfffd, #fff);
}

.contact-modern .support-whatsapp:hover,
.contact-modern .support-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, .55);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .14);
}

.contact-modern .whatsapp-icon {
  background: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, .22);
}

.support-phone-copy small {
  display: block;
  margin-top: 6px;
  color: #526979;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.support-phone-copy em {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(37, 211, 102, .45);
  border-radius: 999px;
  color: #128c45;
  background: #f2fff7;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.whatsapp-float-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.whatsapp-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 34px rgba(18, 140, 69, .32);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float > span {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  max-width: 220px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #173023;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .16);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 20px 40px rgba(18, 140, 69, .4);
  transform: scale(1.06);
}

.whatsapp-float:hover > span,
.whatsapp-float:focus-visible > span {
  opacity: 1;
  transform: translate(0, -50%);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 4px;
}

.whatsapp-help-bubble {
  position: relative;
  width: 230px;
  padding: 14px 38px 14px 16px;
  border: 1px solid rgba(37, 211, 102, .18);
  border-radius: 10px;
  color: #173023;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
}

.whatsapp-help-bubble[hidden] {
  display: none;
}

.whatsapp-help-bubble strong,
.whatsapp-help-bubble span {
  display: block;
}

.whatsapp-help-bubble strong {
  margin-bottom: 3px;
  color: #123f70;
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-help-bubble span {
  color: #526979;
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-help-bubble button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  color: #64748b;
  background: #f1f5f9;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-help-bubble button:focus-visible {
  outline: 2px solid rgba(37, 211, 102, .45);
  outline-offset: 2px;
}

.contact-modern .support-detail-item {
  border-color: #e4edf4;
  border-radius: 14px;
  background: #fff;
}

.contact-modern .contact-map {
  max-width: 1040px;
  margin-bottom: 0;
}

.contact-modern .location-iframe {
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

@media (max-width: 1100px) {
  .contact-modern .contact-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  }

  .contact-modern .contact-hero-card {
    grid-column: 1 / -1;
    width: min(100%, 420px);
  }

  .contact-modern .contact-card-grid {
    gap: 18px;
  }

  .contact-modern .contact-card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .contact-modern {
    padding-bottom: 56px;
  }

  .contact-modern .contact-hero-inner,
  .contact-modern .contact-card-grid,
  .contact-modern .contact-support,
  .contact-modern .support-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-modern .contact-hero-inner {
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .contact-modern .contact-hero h1 {
    font-size: 38px !important;
  }

  .contact-modern .contact-hero-copy p {
    font-size: 16px !important;
  }

  .contact-modern .contact-hero-art {
    min-height: 160px;
    padding: 18px;
  }

  .contact-modern .contact-section-head,
  .contact-modern .contact-card,
  .contact-modern .support-info {
    padding: 22px;
  }

  .contact-modern .contact-help {
    padding-bottom: 42px;
  }

  .contact-modern .support-detail-wide {
    grid-column: auto;
  }
}

.shopping-page {
  padding: 86px 0 130px;
  color: #202830;
}

.shopping-page h1 {
  margin: 0 0 72px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.checkout-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 790px;
  margin: 0 auto 96px;
  padding: 0;
  list-style: none;
}

.checkout-steps:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 17px;
  height: 9px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue) 0 48%, #7ec442 48% 54%, #d9d9d9 54%);
}

.checkout-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  color: #c8cdd0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.checkout-steps li:before {
  content: counter(step);
  counter-increment: step;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #d9d9d9;
  font-size: 15px;
}

.checkout-steps {
  counter-reset: step;
}

.checkout-steps li.done,
.checkout-steps li.done:before {
  color: var(--blue);
}

.checkout-steps li.done:before {
  color: #fff;
  background: var(--blue);
}

.checkout-steps li.active,
.checkout-steps li.active:before {
  color: #7ec442;
}

.checkout-steps li.active:before {
  color: #fff;
  background: #7ec442;
}

.cart-table {
  max-width: 1080px;
  margin: 0 auto 58px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  overflow: hidden;
}

.cart-head,
.cart-row {
  display: grid;
  grid-template-columns: 150px 130px 1fr 180px;
}

.cart-head {
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.cart-row {
  gap: 20px;
  padding: 18px;
  min-height: 225px;
}

.cart-actions {
  display: grid;
  align-content: space-between;
}

.cart-actions button,
.shopping-buttons a,
.submit-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.cart-qty {
  width: 82px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #d8d8d8;
  font-size: 20px;
  font-weight: 800;
}

.cart-detail {
  font-size: 17px;
  line-height: 1.28;
}

.cart-price {
  font-size: 22px;
  font-weight: 900;
}

.cart-widgets {
  display: grid;
  grid-template-columns: 270px 360px 355px;
  justify-content: space-between;
  gap: 46px;
  max-width: 1080px;
  margin: 0 auto 102px;
}

.coupon-box,
.shipping-rate,
.checkout-price {
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid #7ec442;
}

.coupon-box h2,
.shipping-rate h2,
.checkout-price h2 {
  margin: 0;
  padding: 9px 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.coupon-box h2 { background: #7ec442; }
.shipping-rate h2 { background: #e41482; }
.checkout-price h2 { background: var(--blue); }

.coupon-box p,
.coupon-box div {
  padding: 15px;
  margin: 0;
  font-size: 16px;
}

.coupon-box div {
  display: flex;
  justify-content: space-between;
  background: #d8d8d8;
  font-weight: 800;
}

.coupon-entry {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: #f2f7fa;
  border-top: 1px solid #dde8ee;
}

.coupon-entry input {
  min-width: 0;
  flex: 1;
  height: 38px;
  border: 1px solid #c8dce7;
  border-radius: 5px;
  background: #fff;
  color: #172d3b;
  font-size: 13px;
  font-weight: 300;
  padding: 0 10px;
}

.coupon-entry input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 148, 221, .12);
  outline: none;
}

.coupon-box button {
  border: 0;
  color: #fff;
  background: #7ec442;
  font-weight: 900;
}

.coupon-entry button {
  height: 38px;
  padding: 0 12px;
  border-radius: 5px;
  background: #7ec442;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.shipping-rate {
  border-color: #e41482;
  padding-bottom: 28px;
  text-align: center;
}

.shipping-rate label {
  display: grid;
  gap: 14px;
  margin: 25px 24px 0;
  font-size: 18px;
  font-weight: 900;
}

.shipping-rate input,
.shipping-rate select {
  width: 100%;
  height: 50px;
  border: 0;
  background: #d8d8d8;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.shipping-rate select {
  padding: 0 14px;
  text-align: left;
  font-size: 16px;
}

.shipping-rate p {
  margin: 20px 24px;
  color: #ff2142;
  font-size: 17px;
  font-weight: 900;
}

.shipping-rate strong,
.shipping-rate span {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.shipping-rate hr {
  width: 85%;
  margin: 18px auto;
  border: 0;
  border-top: 2px solid #777;
}

.checkout-price {
  border-color: var(--blue);
  align-self: start;
}

.checkout-price p,
.order-summary p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 10px 40px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
  font-weight: 800;
}

.checkout-price .grand,
.order-summary .grand {
  border-top: 1px solid #333;
  border-bottom: 0;
}

.shopping-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 78px;
  max-width: 1080px;
  margin: 0 auto;
}

.shopping-buttons a {
  width: 235px;
  text-decoration: none;
}

.shopping-buttons .pink {
  background: #e41482;
}

.checkout-page {
  padding-top: 62px;
}

.checkout-page h1,
.confirmation-page h1 {
  margin-bottom: 42px;
  font-size: 22px;
}

.checkout-steps.compact {
  max-width: 650px;
  margin-bottom: 70px;
}

.checkout-steps.compact li {
  font-size: 10px;
  gap: 14px;
}

.checkout-steps.compact li:before {
  width: 25px;
  height: 25px;
  font-size: 10px;
}

.checkout-steps.compact:before {
  top: 10px;
  height: 6px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) 270px;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.checkout-form h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.form-grid .wide,
.credit-card > input,
.comments {
  grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #e5e5e5;
  padding: 0 12px;
  color: #505860;
  background: #fff;
}

.checkout-form .static-field {
  cursor: default;
  color: #303840;
  background: #fff;
}

.credit-card {
  padding: 0 0 12px;
  margin-bottom: 16px;
  background: #d5d5d5;
}

.credit-card h3 {
  margin: 0 0 10px;
  padding: 7px 12px;
  font-size: 18px;
}

.credit-card > input,
.credit-card .two input {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
}

.credit-card .two {
  margin-inline: 12px;
}

.credit-card .billing-check,
.credit-card .save-card-check {
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 24px);
  margin: 0 12px;
  color: #303840;
  font-size: 12px;
  font-weight: 700;
}

.credit-card .save-card-check {
  justify-content: flex-end;
  margin-bottom: 10px;
}

.credit-card .billing-check input,
.credit-card .save-card-check input {
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--blue);
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 640px;
  margin: 10px 0;
  color: #222b33;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.checkline input {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}

.comments {
  display: grid;
  grid-template-columns: 100px minmax(260px, 360px);
  align-items: start;
  gap: 18px;
  margin: 44px 0 22px;
  color: #303840;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.comments textarea {
  height: 76px;
  resize: vertical;
}

.submit-order {
  display: flex;
  width: 112px;
  min-height: 32px;
  margin: 0 0 0 170px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 11px;
}

.checkout-warning {
  max-width: 360px;
  margin: 24px 0 0 112px;
  color: #e41482;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.order-summary {
  font-size: 12px;
}

.receipt-page {
  padding: 54px 0 92px;
  background: #f7f7f7;
  color: #242b33;
}

.receipt-success {
  margin-bottom: 42px;
}

.receipt-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.receipt-shell > *,
.receipt-content {
  min-width: 0;
}

.receipt-account-sidebar {
  padding-top: 72px;
}

.receipt-sidebar h1 {
  margin: 0 0 34px;
  font-size: 20px;
  font-weight: 900;
}

.receipt-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.receipt-sidebar li {
  display: flex;
  gap: 18px;
  margin-bottom: 17px;
  font-size: 12px;
  font-weight: 800;
}

.receipt-sidebar li::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-top: 4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #111;
}

.receipt-sidebar a {
  color: #222;
  text-decoration: none;
}

.receipt-sidebar a:hover {
  color: #e41482;
}

.receipt-content > h1 {
  margin: 0 0 12px 14px;
  color: #e41482;
  font-size: 22px;
  font-weight: 900;
}

.receipt-card {
  padding: 38px 42px 48px;
  background: #fff;
  border-top: 18px solid #e41482;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .12);
}

.receipt-top {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 54px;
  align-items: start;
}

.receipt-company img {
  width: 230px;
  max-width: 100%;
  margin-bottom: 18px;
}

.receipt-company p,
.receipt-download p,
.receipt-address-box p,
.receipt-meta p,
.receipt-next,
.receipt-fraud {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.receipt-download h2 {
  margin: 28px 0 10px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.receipt-download p {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 12px;
  margin-bottom: 8px;
  padding: 7px 10px;
  background: #ededed;
}

.receipt-download strong {
  font-weight: 800;
}

.receipt-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 72px 0 10px;
}

.receipt-meta a {
  color: #e41482;
  text-decoration: none;
}

.receipt-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.receipt-address-box {
  border: 2px solid var(--blue);
}

.receipt-address-box h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
  line-height: 1;
}

.receipt-address-box h3 a {
  color: #fff;
  font-size: 10px;
  text-decoration: none;
}

.receipt-address-box p {
  padding: 12px 14px;
}

.receipt-next {
  margin-top: 78px;
  font-weight: 900;
}

.receipt-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.receipt-table,
.receipt-totals {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.receipt-table th {
  padding: 12px 14px;
  color: #fff;
  background: var(--blue);
  border: 1px solid #73c7e8;
  font-size: 16px;
  text-align: center;
}

.receipt-table td {
  min-height: 38px;
  padding: 13px 14px;
  vertical-align: top;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
}

.receipt-table tbody tr:nth-child(even) td {
  height: 24px;
  padding: 8px 14px;
  background: #fff;
}

.receipt-table td:first-child,
.receipt-table td:nth-child(2),
.receipt-table td:nth-child(4),
.receipt-table td:nth-child(5) {
  text-align: center;
  white-space: nowrap;
}

.receipt-closing {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  margin-top: 0;
  align-items: start;
}

.receipt-closing > p {
  margin: 28px 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.receipt-totals td {
  padding: 7px 12px;
  border: 1px solid #e1e1e1;
  background: #f3f3f3;
}

.receipt-totals td:last-child {
  font-weight: 800;
  text-align: right;
}

.receipt-fraud {
  margin-top: 72px;
  font-size: 16px;
  font-weight: 800;
}

.bleed-page {
  padding: 20px 0 120px;
  color: #222a31;
}

.bleed-page h1,
.bleed-section h2 {
  margin: 0;
  color: #252b31;
  font-size: 28px;
  font-weight: 900;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 90px;
  margin-top: 46px;
}

.spec-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
}

.spec-item h2,
.guideline-copy h3,
.proof-grid h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.spec-item p,
.guideline-copy p,
.proof-grid p {
  margin: 0;
  color: #101820;
  font-size: 15px;
  line-height: 1.25;
}

.spec-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.spec-icon img,
.guide-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bleed-section {
  margin-top: 86px;
}

.template-layout {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(320px, 1fr);
  gap: 120px;
  align-items: center;
  margin-top: 62px;
}

.bleed-card-figure {
  margin: 0;
  text-align: center;
}

.bleed-card-figure img {
  width: min(100%, 500px);
  height: auto;
}

.guideline-copy,
.proof-grid {
  display: grid;
  gap: 62px;
}

.guideline-copy article,
.proof-grid article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}

.guide-icon {
  width: 54px;
  height: 54px;
  display: block;
}

.proof-grid {
  grid-template-columns: 1fr 1fr;
  gap: 58px 160px;
  margin-top: 58px;
  padding: 0 118px;
}

.proof-grid article:nth-child(3) {
  grid-row: span 2;
}

.proof-grid article:nth-child(4) {
  display: grid;
  gap: 34px;
}

.foil-section {
  margin-top: 104px;
}

.foil-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 42px;
}

.foil-diagram {
  display: grid;
  grid-template-columns: 150px 42px 150px 70px;
  grid-template-rows: 112px 64px 112px;
  gap: 22px;
  align-items: center;
  justify-items: center;
}

.foil-block {
  width: 150px;
  height: 112px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.foil-block.black {
  background: #000;
}

.foil-block.hatch {
  color: #ff4aa6;
  background: repeating-linear-gradient(32deg, transparent 0 10px, #ff4aa6 11px 14px);
}

.foil-block.result {
  grid-column: 2 / 4;
  grid-row: 3;
  color: #e6008a;
  background: repeating-linear-gradient(32deg, #050505 0 10px, #e6008a 11px 14px);
}

.foil-plus,
.foil-equals {
  font-size: 36px;
  color: #606060;
}

.foil-equals {
  grid-column: 1;
  grid-row: 3;
}

.foil-drive {
  width: 62px;
  height: 34px;
  display: block;
  border: 1px solid #333;
  background: linear-gradient(#444 0 0) center / 26px 16px no-repeat, #d9d9d9;
}

.foil-copy {
  max-width: 580px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 18px;
}

.foil-copy h3 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 900;
}

.foil-copy p {
  grid-column: 2;
  margin: 0;
  color: #1b2025;
  font-size: 21px;
  line-height: 1.38;
  letter-spacing: .24em;
}

.foil-copy-icon {
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.rgb-page {
  color: #161d24;
  background: #fff;
}

.rgb-hero {
  min-height: 194px;
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding: 0 14px;
  background: #e9f9ff;
}

.rgb-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
}

.rgb-content {
  padding: 44px 0 118px;
}

.rgb-content h2,
.spectrum-left h3,
.halftone-section h3 {
  margin: 0;
  font-weight: 900;
}

.rgb-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 58px;
  align-items: center;
}

.rgb-intro h2 {
  margin-bottom: 34px;
  font-size: 24px;
}

.rgb-intro p,
.rgb-copy,
.info-band p,
.spectrum-panel p,
.halftone-section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.rgb-intro p + p {
  margin-top: 38px;
}

.color-key {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  grid-template-rows: 68px 34px 68px 34px;
  gap: 8px 12px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 66px;
  height: 66px;
  display: block;
  border: 4px solid #181818;
  border-radius: 50%;
}

.dot.red { background: #fb1717; }
.dot.green { background: #00f519; }
.dot.blue { background: #0866ed; }
.dot.cyan { background: #13bce3; }
.dot.magenta { background: #f51498; }
.dot.yellow { background: #ffe415; }
.dot.black { background: #2b2b2b; }

.color-key .red { grid-column: 1; grid-row: 1; }
.color-key .green { grid-column: 2; grid-row: 1; }
.color-key .blue { grid-column: 3; grid-row: 1; }
.color-key .cyan { grid-column: 1; grid-row: 3; }
.color-key .magenta { grid-column: 2; grid-row: 3; }
.color-key .yellow { grid-column: 3; grid-row: 3; }
.color-key .black { grid-column: 4; grid-row: 3; }

.color-key b {
  display: block;
  align-self: start;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.color-key b:nth-of-type(1) { grid-column: 1; grid-row: 2; color: #fb1717; }
.color-key b:nth-of-type(2) { grid-column: 2; grid-row: 2; color: #00d91b; }
.color-key b:nth-of-type(3) { grid-column: 3; grid-row: 2; color: #0866ed; }
.color-key b:nth-of-type(4) { grid-column: 1; grid-row: 4; color: #13bce3; }
.color-key b:nth-of-type(5) { grid-column: 2; grid-row: 4; color: #f51498; }
.color-key b:nth-of-type(6) { grid-column: 3; grid-row: 4; color: #f5d700; }
.color-key b:nth-of-type(7) { grid-column: 4; grid-row: 4; color: #2b2b2b; }

.spectrum-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 78px;
  margin-top: 68px;
  padding: 44px 34px;
  background: #e8e8e8;
}

.spectrum-left h2 {
  margin-bottom: 48px;
  color: #4a4f54;
  font-size: 22px;
}

.rgb-overlap,
.cmy-overlap {
  position: relative;
  width: 88px;
  height: 72px;
  margin: 0 0 34px 118px;
}

.rgb-overlap span,
.cmy-overlap span {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.rgb-overlap span:nth-child(1) { left: 10px; top: 20px; background: #fa1a29; }
.rgb-overlap span:nth-child(2) { left: 32px; top: 20px; background: #304eff; }
.rgb-overlap span:nth-child(3) { left: 21px; top: 0; background: #19e63a; }
.cmy-overlap span:nth-child(1) { left: 10px; top: 20px; background: #00d7e8; }
.cmy-overlap span:nth-child(2) { left: 32px; top: 20px; background: #ffe900; }
.cmy-overlap span:nth-child(3) { left: 21px; top: 0; background: #f51aa8; }

.spectrum-left h3 {
  margin-bottom: 38px;
  color: #4a4f54;
  font-size: 24px;
  line-height: 1.1;
}

.spectrum-right {
  display: grid;
  gap: 42px;
  align-content: start;
}

.gamut-wheel {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(#f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}

.gamut-wheel::before,
.gamut-wheel::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(60, 70, 80, .65);
  transform: rotate(-14deg);
}

.gamut-wheel::before {
  left: 50px;
  top: 46px;
  width: 120px;
  height: 78px;
  border-radius: 48% 56% 50% 42%;
}

.gamut-wheel::after {
  left: 68px;
  top: 72px;
  width: 88px;
  height: 58px;
  border-radius: 44% 52% 50% 46%;
}

.gamut-wheel span {
  position: absolute;
  right: -78px;
  color: #333;
  font-size: 10px;
  line-height: 1.15;
}

.gamut-wheel span:first-child { top: 38px; }
.gamut-wheel span:last-child { top: 116px; }

.gamut-image {
  width: min(100%, 315px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.rgb-copy {
  margin-top: 100px;
}

.info-band {
  margin-top: 26px;
}

.info-band h2 {
  margin: 0;
  padding: 10px 12px;
  color: #34505d;
  font-size: 24px;
  font-weight: 800;
}

.info-band.blue h2 { background: #b8e3f6; }
.info-band.green h2 { background: #d9efc9; color: #4d623d; }
.info-band p {
  padding: 16px 6px 0;
}

.halftone-section {
  margin-top: 54px;
  text-align: center;
}

.halftone-dots {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
}

.halftone-dots span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: block;
}

.halftone-dots .h1 { background: radial-gradient(circle at 12px 12px, #22a9f2 0 5px, transparent 6px) 0 0 / 22px 22px, #fff; border: 1px solid #d4d4d4; }
.halftone-dots .h2 { background: radial-gradient(circle at 12px 12px, #c4007f 0 5px, transparent 6px) 0 0 / 22px 22px, #fff; border: 1px solid #d4d4d4; }
.halftone-dots .h3 { background: radial-gradient(circle at 12px 12px, #ffe600 0 5px, transparent 6px) 0 0 / 22px 22px, #fff; border: 1px solid #d4d4d4; }
.halftone-dots .h4 { background: radial-gradient(circle at 12px 12px, #000 0 5px, transparent 6px) 0 0 / 22px 22px, #fff; border: 1px solid #d4d4d4; }
.halftone-dots .h5 { background: radial-gradient(circle at 12px 12px, #08aeea 0 5px, transparent 6px), radial-gradient(circle at 28px 20px, #f50086 0 5px, transparent 6px), radial-gradient(circle at 42px 34px, #ffe600 0 5px, transparent 6px), radial-gradient(circle at 58px 52px, #000 0 5px, transparent 6px), #fff; border: 1px solid #d4d4d4; }

.halftone-image {
  width: min(100%, 500px);
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.halftone-section h3 {
  font-size: 16px;
  line-height: 1.35;
}

.halftone-section p {
  max-width: 960px;
  margin: 8px auto 0;
  font-weight: 800;
}

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  font-family: "Inter", Helvetica, sans-serif;
}

.chatbot-toggle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #08a84f;
  box-shadow: 0 18px 42px rgba(3, 132, 62, .34);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(3, 132, 62, .42);
}

.chatbot-launch-icon {
  width: 30px;
  height: 24px;
  display: block;
  border: 3px solid #fff;
  border-radius: 9px;
  position: relative;
}

.chatbot-launch-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -9px;
  border-top: 9px solid #fff;
  border-right: 8px solid transparent;
}

.chatbot-launch-icon::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #85ef7b;
  box-shadow: 0 0 0 4px rgba(133, 239, 123, .26);
}

.chatbot-widget.open .chatbot-launch-icon {
  width: 28px;
  height: 28px;
  border: 0;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 0;
  transform: rotate(45deg) translate(-3px, -4px);
}

.chatbot-widget.open .chatbot-launch-icon::before,
.chatbot-widget.open .chatbot-launch-icon::after {
  display: none;
}

.chatbot-powered {
  position: absolute;
  right: 88px;
  bottom: 12px;
  min-width: 156px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #5b656c;
  background: rgba(255,255,255,.94);
  border: 1px solid #edf0f2;
  box-shadow: 0 10px 30px rgba(20, 40, 50, .14);
  font-size: 15px;
  font-weight: 700;
}

.chatbot-panel {
  width: min(438px, calc(100vw - 26px));
  height: min(650px, calc(100vh - 116px));
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(18, 42, 54, .26);
  animation: chatbot-pop .22s ease;
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-view {
  min-height: 0;
  display: none;
}

.chatbot-view.is-active {
  display: grid;
}

.chatbot-home-view {
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.chatbot-hero {
  position: relative;
  padding: 48px 34px 68px;
  color: #fff;
  background: #08a84f;
}

.chatbot-hero h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 39px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.chatbot-hero p {
  max-width: 330px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 700;
}

.chatbot-close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}

.chatbot-close::before,
.chatbot-close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.chatbot-close::before { transform: rotate(45deg); }
.chatbot-close::after { transform: rotate(-45deg); }

.chatbot-home-body {
  padding: 0 26px 22px;
  overflow-y: auto;
  background: linear-gradient(#08a84f 0 54px, #fff 54px 100%);
}

.chatbot-card {
  width: 100%;
  display: block;
  margin: 0 0 15px;
  padding: 25px 27px;
  border: 0;
  border-radius: 12px;
  color: #10161c;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 65, 36, .12);
  text-align: left;
}

.chatbot-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.chatbot-recent-card {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}

.chatbot-recent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(7, 65, 36, .16);
}

.chatbot-recent-card::after,
.chatbot-history-row::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #70808a;
  border-bottom: 2px solid #70808a;
  transform: translateY(-50%) rotate(-45deg);
}

.chatbot-card span,
.chatbot-card b {
  display: block;
  padding-right: 28px;
}

.chatbot-card span {
  margin-bottom: 9px;
  color: #6c747b;
  font-size: 15px;
}

.chatbot-card b {
  color: #111820;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chatbot-help-card label {
  height: 66px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  padding: 0 17px;
}

.chatbot-help-card label i {
  width: 18px;
  height: 18px;
  border: 3px solid #81909a;
  border-radius: 50%;
  position: relative;
}

.chatbot-help-card label i::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  border-radius: 2px;
  background: #81909a;
  transform: rotate(45deg);
}

.chatbot-help-card input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #111820;
  font-size: 16px;
}

.chatbot-message-head {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 0 26px;
  color: #fff;
  background: #08a84f;
}

.chatbot-message-head strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}

.chatbot-back {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.chatbot-back::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.chatbot-chat-view {
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.chatbot-chat-body {
  padding: 24px;
  overflow-y: auto;
}

.chatbot-chat-body h3 {
  margin: 0 0 18px;
  color: #111820;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 500;
}

.chatbot-new-chat,
.chatbot-history-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border: 1px solid #48cb84;
  border-radius: 13px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.chatbot-new-chat {
  min-height: 96px;
  padding: 18px 24px;
  box-shadow: inset 0 0 0 4px rgba(8,168,79,.09);
}

.chatbot-new-chat strong,
.chatbot-new-chat small {
  display: block;
}

.chatbot-new-chat strong {
  margin-bottom: 7px;
  color: #111820;
  font-size: 20px;
  font-weight: 900;
}

.chatbot-new-chat small {
  color: #68747c;
  font-size: 16px;
  line-height: 1.25;
}

.chatbot-new-chat i {
  width: 24px;
  height: 24px;
  position: relative;
}

.chatbot-new-chat i::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 3px solid #08a84f;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 24% 56%, 0 45%);
}

.chatbot-history-row {
  min-height: 70px;
  margin-bottom: 16px;
  padding: 14px 48px 14px 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.chatbot-history-row span {
  min-width: 0;
}

.chatbot-history-row small,
.chatbot-history-row b {
  display: block;
}

.chatbot-history-row small {
  margin-bottom: 9px;
  color: #68747c;
  font-size: 15px;
}

.chatbot-history-row b {
  color: #111820;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chatbot-history-row em {
  position: absolute;
  right: 9px;
  top: 16px;
  color: #68747c;
  font-size: 14px;
  font-style: normal;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  margin-bottom: 14px;
}

.chat-message {
  max-width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.34;
  position: relative;
}

.chat-message strong {
  display: block;
  margin-bottom: 4px;
  color: #123146;
}

.chat-message p {
  margin: 0;
}

.chat-message.bot {
  justify-self: start;
  color: #25323b;
  background: #f1f1f1;
}

.chat-message.user {
  justify-self: end;
  color: #fff;
  background: #08a84f;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  background: #fff;
}

.chatbot-quick::before {
  content: "Try asking";
  flex: 0 0 100%;
  color: #68747c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.chatbot-quick button {
  min-height: 34px;
  border: 1px solid #ccebd8;
  border-radius: 999px;
  padding: 0 11px;
  color: #08773b;
  background: #f6fff9;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.chatbot-quick button:hover {
  color: #fff;
  border-color: #08a84f;
  background: #08a84f;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid #edf0f2;
  background: #fff;
}

.chatbot-form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.chatbot-form input:focus {
  border-color: #08a84f;
  box-shadow: 0 0 0 4px rgba(8, 168, 79, .12);
}

.chatbot-form button {
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #08a84f;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
  position: relative;
}

.chatbot-form button:hover {
  background: #079344;
  transform: translateY(-1px);
}

.chatbot-form button::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 3px solid #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 24% 56%, 0 45%);
}

.chatbot-tabs {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #edf0f2;
  background: #fff;
}

.chatbot-tabs button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border: 0;
  color: #626d74;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-tabs button.is-active {
  color: #08a84f;
}

.chatbot-home-icon,
.chatbot-message-icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.chatbot-home-icon::before {
  content: "";
  position: absolute;
  inset: 5px 3px 2px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 3px;
}

.chatbot-home-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.chatbot-message-icon::before {
  content: "";
  position: absolute;
  inset: 4px 2px 5px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.chatbot-message-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 2px;
  border-top: 8px solid currentColor;
  border-left: 8px solid transparent;
}

@keyframes chatbot-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .chatbot-widget {
    right: 10px;
    bottom: 10px;
  }

  .chatbot-toggle {
    width: 66px;
    height: 66px;
  }

  .chatbot-panel {
    width: calc(100vw - 20px);
    height: min(640px, calc(100vh - 92px));
    border-radius: 18px;
  }

  .chatbot-powered {
    right: 78px;
    bottom: 9px;
    min-width: 142px;
    height: 34px;
    font-size: 13px;
  }

  .chatbot-hero {
    padding: 42px 26px 58px;
  }

  .chatbot-hero h2 {
    font-size: 34px;
  }

  .chatbot-hero p {
    font-size: 19px;
  }

  .chatbot-home-body,
  .chatbot-chat-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .chatbot-card {
    padding: 22px;
  }

  .chatbot-card strong {
    font-size: 19px;
  }
}

.summary-item {
  display: grid;
  grid-template-columns: 36px 1fr 70px;
  gap: 8px;
  align-items: start;
  margin-bottom: 18px;
}

.summary-item span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 9px;
}

@keyframes xp-blink {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

@keyframes xp-pop {
  from { opacity: 0; transform: translateY(6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes xp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes xp-blink-eye {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.15); }
}

.xp-chatbot {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Inter", Helvetica, sans-serif;
}

.xp-chatbot *,
.xp-chatbot *::before,
.xp-chatbot *::after {
  box-sizing: border-box;
}

.xp-chat-panel {
  width: 404px;
  height: min(648px, calc(100vh - 64px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #e7e4da;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 40, 25, .28);
  animation: xp-pop .24s ease;
}

.xp-chat-panel[hidden] {
  display: none;
}

.xp-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #1f4a30;
}

.xp-chat-head > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.xp-chat-head strong {
  display: block;
  color: #fff;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.xp-chat-head p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 0;
  color: #cfe6d6;
  font-size: 12px;
  font-weight: 400;
}

.xp-chat-head p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fe3a6;
}

.xp-bot-mini {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #2e7d4f;
}

.xp-mascot {
  width: 38px;
  height: 44px;
  display: block;
  position: relative;
}

.xp-bot-mini .xp-mascot {
  width: 24px;
  height: 27px;
}

.xp-mascot i {
  display: block;
  position: absolute;
}

.xp-fold {
  top: -6px;
  left: 9px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 11px solid #fff;
  filter: drop-shadow(1px 1px 0 rgba(31, 74, 48, .06));
  transform: rotate(-8deg);
  z-index: 4;
}

.xp-bot-mini .xp-fold {
  top: -4px;
  left: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-bottom-width: 7px;
}

.xp-body {
  top: 6px;
  left: 0;
  width: 38px;
  height: 32px;
  border-radius: 48% 48% 42% 42% / 55% 55% 45% 45%;
  background: #2e7d4f;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
  z-index: 2;
}

.xp-bot-mini .xp-body {
  top: 3px;
  width: 24px;
  height: 20px;
  background: #fff;
  box-shadow: none;
}

.xp-face {
  top: 15px;
  left: 6px;
  width: 26px;
  height: 17px;
  border-radius: 50% 50% 55% 55% / 60% 60% 40% 40%;
  background: #eaf6ee;
  z-index: 3;
}

.xp-bot-mini .xp-face {
  top: 9px;
  left: 4px;
  width: 16px;
  height: 11px;
  background: #1f4a30;
}

.xp-eye {
  top: 20px;
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: #1f4a30;
  z-index: 4;
  animation: xp-blink-eye 3.4s ease-in-out infinite;
}

.xp-eye.left { left: 12px; }
.xp-eye.right { right: 12px; }

.xp-bot-mini .xp-eye {
  top: 12.5px;
  width: 3px;
  height: 3px;
  background: #fff;
}

.xp-bot-mini .xp-eye.left { left: 7.5px; }
.xp-bot-mini .xp-eye.right { right: 7.5px; }

.xp-blush {
  top: 25px;
  width: 5px;
  height: 3px;
  border-radius: 50%;
  background: #bfe0cb;
  opacity: .8;
  z-index: 4;
}

.xp-blush.left { left: 8px; }
.xp-blush.right { right: 8px; }
.xp-bot-mini .xp-blush { display: none; }

.xp-leg {
  bottom: 0;
  width: 6px;
  height: 9px;
  border-radius: 3px;
  background: #1f4a30;
  z-index: 1;
}

.xp-leg.left { left: 8px; }
.xp-leg.right { right: 8px; }
.xp-bot-mini .xp-leg { display: none; }

.xp-arm {
  top: 19px;
  width: 8px;
  height: 6px;
  border-radius: 4px;
  background: #2e7d4f;
  z-index: 1;
}

.xp-arm.left {
  left: -3px;
  transform: rotate(20deg);
}

.xp-arm.right {
  right: -3px;
  transform: rotate(-20deg);
}

.xp-bot-mini .xp-arm { display: none; }

.xp-chat-launcher .xp-mascot {
  animation: xp-bounce 2.8s ease-in-out infinite;
}

.xp-chat-launcher {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3e6d9;
  border-radius: 50%;
  background: #e7f3ea;
  box-shadow: 0 10px 30px rgba(31, 74, 48, .28);
  cursor: pointer;
}

.xp-chatbot.is-open .xp-chat-launcher {
  background: #2e7d4f;
}

.xp-chatbot.is-open .xp-chat-launcher .xp-mascot {
  width: 28px;
  height: 28px;
  animation: none;
}

.xp-chatbot.is-open .xp-chat-launcher .xp-mascot i {
  display: none;
}

.xp-chatbot.is-open .xp-chat-launcher .xp-mascot {
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg) translate(-3px, -4px);
}

.xp-minimize {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #cfe6d6;
  cursor: pointer;
  position: relative;
}

.xp-minimize::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: #cfe6d6;
}

.xp-chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 18px;
  background: #fbfaf7;
}

.xp-msg-row {
  display: flex;
  flex-direction: column;
  animation: xp-pop .25s ease;
}

.xp-msg-row.bot {
  align-items: flex-start;
}

.xp-msg-row.user {
  align-items: flex-end;
}

.xp-msg-bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  color: #232b25;
  background: #eeede6;
  font-size: 14.5px;
  line-height: 1.5;
}

.xp-msg-row.user .xp-msg-bubble {
  color: #fff;
  background: #2e7d4f;
}

.xp-chip-wrap {
  max-width: 92%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xp-chip-wrap button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1.5px solid #2e7d4f;
  border-radius: 100px;
  color: #1f4a30;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.xp-chip-wrap button:hover {
  color: #fff;
  background: #2e7d4f;
  transform: translateY(-1px);
}

.xp-typing-bubble {
  display: flex;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 16px;
  background: #eeede6;
}

.xp-typing-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8a9389;
  animation: xp-blink 1.2s infinite;
}

.xp-typing-bubble span:nth-child(2) {
  animation-delay: .15s;
}

.xp-typing-bubble span:nth-child(3) {
  animation-delay: .3s;
}

.xp-quote-card,
.xp-spec-card,
.xp-status-card,
.xp-progress-card {
  width: 90%;
  overflow: hidden;
  border: 1px solid #dce8df;
  border-radius: 16px;
  background: #fff;
}

.xp-card-title {
  padding: 12px 16px;
  color: #1f4a30;
  background: #e7f3ea;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.xp-card-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 16px;
}

.xp-card-body p,
.xp-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: #5b6660;
  font-size: 13.5px;
}

.xp-card-body b {
  color: #1b2a20;
}

.xp-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #eeebe1;
}

.xp-total strong {
  color: #1f4a30;
  font-size: 22px;
  font-weight: 900;
}

.xp-card-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.xp-card-actions button {
  flex: 1;
  min-height: 40px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
}

.xp-card-actions button:first-child {
  border: 1px solid #d8e3da;
  color: #1f4a30;
  background: #fff;
}

.xp-card-actions button:last-child {
  border: 0;
  color: #fff;
  background: #2e7d4f;
}

.xp-upload-card {
  width: 90%;
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 22px 16px;
  border: 1.5px dashed #b9cdbe;
  border-radius: 14px;
  background: #fafcfa;
  cursor: pointer;
}

.xp-upload-card span {
  width: 28px;
  height: 28px;
  display: block;
  border: 3px solid #2e7d4f;
  border-radius: 7px;
  position: relative;
}

.xp-upload-card span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-left: 3px solid #2e7d4f;
  border-top: 3px solid #2e7d4f;
  transform: rotate(45deg);
}

.xp-upload-card strong {
  color: #1b2a20;
  font-size: 13.5px;
}

.xp-upload-card small {
  color: #8a9389;
  font-size: 12px;
}

.xp-progress-card {
  padding: 13px 16px;
}

.xp-progress-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.xp-progress-card span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e7f3ea;
  position: relative;
}

.xp-progress-card span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 12px;
  height: 17px;
  border-radius: 2px;
  background: #2e7d4f;
}

.xp-progress-card p {
  min-width: 0;
  flex: 1;
  margin: 0;
}

.xp-progress-card strong,
.xp-progress-card small {
  display: block;
}

.xp-progress-card strong {
  overflow: hidden;
  color: #1b2a20;
  font-size: 13.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xp-progress-card small {
  color: #8a9389;
  font-size: 11.5px;
}

.xp-progress-card b {
  color: #2e7d4f;
  font-size: 12px;
}

.xp-progress-card em {
  height: 6px;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #eef3ec;
}

.xp-progress-card em i {
  width: 0;
  height: 100%;
  display: block;
  border-radius: 4px;
  background: #2e7d4f;
  transition: width .25s linear;
}

.xp-spec-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 14px 16px;
  list-style: none;
}

.xp-spec-card li {
  color: #3a443c;
  font-size: 13.5px;
}

.xp-spec-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #2e7d4f;
  font-weight: 900;
}

.xp-status-card {
  padding: 16px;
}

.xp-status-card > strong,
.xp-status-card > small {
  display: block;
}

.xp-status-card > strong {
  color: #1f4a30;
  font-size: 14px;
}

.xp-status-card > small {
  margin: 3px 0 14px;
  color: #8a9389;
  font-size: 12.5px;
}

.xp-status-card p {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  margin: 0;
  padding-bottom: 14px;
}

.xp-status-card p i {
  width: 10px;
  height: 10px;
  margin-top: 3px;
  border-radius: 50%;
  background: #dde6da;
}

.xp-status-card p.done i {
  background: #2e7d4f;
}

.xp-status-card b,
.xp-status-card em {
  display: block;
}

.xp-status-card b {
  color: #1b2a20;
  font-size: 13.5px;
}

.xp-status-card em {
  color: #a2a99c;
  font-size: 11.5px;
  font-style: normal;
}

.xp-chat-composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #eeebe1;
  background: #fff;
}

.xp-chat-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 1px solid #e2e7de;
  border-radius: 100px;
  padding: 0 16px;
  color: #1b2a20;
  font-size: 14px;
  outline: none;
}

.xp-chat-input:focus {
  border-color: #2e7d4f;
  box-shadow: 0 0 0 4px rgba(46, 125, 79, .12);
}

.xp-send {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 0;
  border-radius: 50%;
  background: #2e7d4f;
  cursor: pointer;
  position: relative;
}

.xp-send::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.xp-send::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 19px;
  width: 17px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}

@media (max-width: 640px) {
  .xp-chatbot {
    right: 12px;
    bottom: 12px;
  }

  .xp-chat-panel {
    width: calc(100vw - 24px);
    height: min(620px, calc(100vh - 92px));
    margin-bottom: 12px;
    border-radius: 18px;
  }

  .xp-chat-launcher {
    width: 62px;
    height: 62px;
  }

  .xp-chat-messages {
    padding: 14px;
  }

  .xp-msg-bubble,
  .xp-quote-card,
  .xp-spec-card,
  .xp-status-card,
  .xp-progress-card,
  .xp-upload-card {
    max-width: 100%;
    width: 100%;
  }
}

.order-summary p {
  padding: 5px 0;
  font-size: 12px;
}

.confirmation-page {
  min-height: 330px;
  padding: 54px 0 86px;
}

.thanks-box {
  text-align: center;
}

.thanks-box h2 {
  margin: 0 0 42px;
  font-size: 22px;
  font-weight: 900;
}

.thanks-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.thanks-box a {
  color: #202830;
}

.custom-quote-page {
  padding: 32px 0 118px;
}

.custom-quote-page.quote-large-format-color,
.custom-quote-page.quote-large-format-printing,
.custom-quote-page.quote-packaging {
  background: #fff;
  box-shadow: 0 0 0 1px #efefef;
}

.custom-quote-page h1 {
  margin: 0 0 50px;
  padding: 15px 24px;
  background: #174f89;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.quote-intro {
  color: #3e444a;
  font-size: 14px;
}

.quote-intro p {
  max-width: 960px;
  margin: 0 auto 28px;
  line-height: 1.45;
}

.quote-intro h2 {
  margin: 0;
  padding: 0 0 18px;
  color: #129ee1;
  font-size: 18px;
  text-align: center;
}

.quote-intro ul {
  margin: 0;
  padding: 16px 0 30px calc(50vw - 145px);
  background: #fafafa;
  box-shadow: 0 0 0 100vmax #fafafa;
  clip-path: inset(0 -100vmax);
  color: #3f464c;
  font-size: 13px;
  line-height: 1.8;
}

.quote-form {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(280px, .65fr);
  gap: 48px;
  margin-top: 18px;
  padding: 42px 62px 0;
  border-top: 1px solid #cfcfcf;
}

.quote-fields,
.quote-side {
  display: grid;
  gap: 24px;
}

.quote-form label,
.quote-form fieldset {
  min-width: 0;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: #6d7277;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  height: 31px;
  border: 1px solid #d1d1d1;
  background: #f4f4f4;
  color: #6f7880;
  padding: 0 12px;
  font: inherit;
  font-weight: 600;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}

.quote-form select {
  appearance: auto;
  background: #fff;
}

.quote-form textarea {
  min-height: 190px;
  padding-top: 10px;
  resize: vertical;
}

.quote-form legend {
  display: contents;
}

.quote-qty {
  grid-template-columns: 118px repeat(3, minmax(116px, 1fr));
  gap: 18px 38px;
}

.quote-qty legend {
  color: #1f2a33;
  font-size: 16px;
  font-weight: 900;
}

.quote-qty input {
  height: 42px;
  border-color: #dddddd;
  border-radius: 3px;
  background: #f1f1f1;
}

.quote-radios {
  grid-template-columns: 118px max-content max-content;
  justify-content: start;
  column-gap: 24px;
}

.quote-radios label,
.quote-radios.compact label {
  display: inline-flex;
  grid-template-columns: none;
  gap: 7px;
  align-items: center;
  white-space: nowrap;
  color: #6d7277;
  font-weight: 700;
}

.quote-radios input {
  width: 16px;
  height: 16px;
  box-shadow: none;
  accent-color: #159ddd;
}

.quote-side {
  align-content: start;
}

.quote-side label {
  grid-template-columns: 108px minmax(0, 1fr);
}

.quote-radios.compact {
  grid-template-columns: 168px auto auto 1fr;
}

.quote-fields > p {
  margin: 0;
  color: #5f666c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.quote-print-collage {
  position: relative;
  height: 300px;
  margin-top: 80px;
}

.quote-print-collage img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(25, 35, 44, .18));
}

.quote-print-collage img:nth-child(1) {
  left: 24%;
  top: 35px;
  width: 52%;
  z-index: 2;
}

.quote-print-collage img:nth-child(2) {
  left: 0;
  top: 42px;
  width: 38%;
  transform: rotate(-2deg);
}

.quote-print-collage img:nth-child(3) {
  right: 0;
  top: 54px;
  width: 36%;
  transform: rotate(4deg);
}

.quote-large-display,
.quote-poster-display,
.quote-packaging-display {
  height: 340px;
  margin-top: 84px;
}

.quote-large-display img:nth-child(1) {
  left: 5%;
  top: 40px;
  width: 30%;
  transform: rotate(-2deg);
  z-index: 1;
}

.quote-large-display img:nth-child(2) {
  left: 32%;
  top: 64px;
  width: 32%;
  z-index: 2;
}

.quote-large-display img:nth-child(3) {
  right: 4%;
  top: 28px;
  width: 34%;
  transform: rotate(3deg);
  z-index: 3;
}

.quote-poster-display {
  height: 320px;
  background: linear-gradient(180deg, transparent 0 17%, #f8ffff 17% 78%, transparent 78%);
}

.quote-poster-display img:nth-child(1) {
  left: 4%;
  top: 48px;
  width: 38%;
  z-index: 3;
}

.quote-poster-display img:nth-child(2) {
  left: 31%;
  top: 42px;
  width: 34%;
  z-index: 2;
}

.quote-poster-display img:nth-child(3) {
  right: 2%;
  top: 36px;
  width: 34%;
  z-index: 1;
}

.quote-packaging-display {
  height: 300px;
}

.quote-packaging-display img {
  border-radius: 6px;
}

.quote-packaging-display img:nth-of-type(1) {
  left: 3%;
  top: 110px;
  width: 30%;
  transform: rotate(-4deg);
}

.quote-packaging-display img:nth-of-type(2) {
  right: 3%;
  top: 102px;
  width: 30%;
  transform: rotate(5deg);
}

.package-box {
  position: absolute;
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 18px rgba(25, 35, 44, .18);
}

.package-box::before,
.package-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.package-box::before {
  transform: skewY(-10deg) translate(18px, -15px);
  filter: brightness(.86);
}

.package-box::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.75), transparent 35%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.22) 0 4px, transparent 4px 18px);
  opacity: .65;
}

.package-box.pink {
  left: 22%;
  top: 42px;
  width: 132px;
  height: 148px;
  background: #d81f78;
}

.package-box.pink::before {
  background: #a8195e;
}

.package-box.teal {
  left: 44%;
  top: 72px;
  width: 128px;
  height: 122px;
  background: #13b7c8;
  z-index: 3;
}

.package-box.teal::before {
  background: #0d8a98;
}

.package-box.orange {
  right: 19%;
  top: 32px;
  width: 150px;
  height: 160px;
  background: #e98919;
  z-index: 2;
}

.package-box.orange::before {
  background: #b96510;
}

.quote-side button {
  width: max-content;
  min-height: 33px;
  justify-self: center;
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: #19a9df;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.account-modal[hidden] {
  display: none;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 39, .56);
  backdrop-filter: blur(2px);
}

.account-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(11, 31, 45, .28);
  text-align: center;
}

.account-dialog h2 {
  margin: 0 0 10px;
  color: #22313d;
  font-size: 28px;
}

.account-dialog p {
  margin: 0 auto 24px;
  max-width: 300px;
  color: #64727d;
  line-height: 1.55;
}

.account-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #edf5f9;
  cursor: pointer;
}

.account-close::before,
.account-close::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #22313d;
}

.account-close::before {
  transform: rotate(45deg);
}

.account-close::after {
  transform: rotate(-45deg);
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-actions a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: var(--blue);
  font-weight: 900;
}

.account-actions a:first-child {
  color: #fff;
  background: var(--blue);
}

body.account-modal-open {
  overflow: hidden;
}

.login-page {
  padding: 0 0 110px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .11), rgba(226, 20, 131, .08) 48%, rgba(255, 255, 255, 0) 78%),
    #f7fbfd;
}

.login-hero {
  padding: 76px 0 42px;
  overflow: hidden;
}

.login-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: end;
}

.login-hero-copy {
  max-width: 720px;
}

.login-kicker,
.login-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 13px;
  border: 1px solid rgba(2, 148, 221, .2);
  border-radius: 999px;
  color: #057da5;
  background: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 900;
}

.login-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #142b3a;
  font-size: clamp(42px, 4.6vw, 56px) !important;
  letter-spacing: 0;
}

.login-hero p,
.register-heading p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #526472;
  font-size: 18px !important;
  line-height: 1.65;
}

.login-hero-proof {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(14, 57, 80, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 60px rgba(18, 58, 84, .12);
}

.login-hero-proof span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #173343;
  font-weight: 900;
}

.login-hero-proof span::before,
.login-benefits li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #02a8dd, #16c29a);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.86);
}

.login-section {
  max-width: 1120px;
}

.login-section + .login-section {
  margin-top: 72px;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 24px;
  align-items: stretch;
}

.login-column {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(26, 67, 91, .1);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(20, 53, 73, .1);
}

.login-card-primary {
  border-top: 5px solid var(--blue);
}

.login-card-secondary {
  display: flex;
  flex-direction: column;
  border-top: 5px solid #e21483;
  background:
    linear-gradient(180deg, rgba(226, 20, 131, .08), rgba(255,255,255,0) 42%),
    rgba(255,255,255,.92);
}

.login-column h2,
.register-heading h2,
.login-column h3 {
  margin: 0 0 12px;
  color: #172d3b;
  letter-spacing: 0;
}

.login-column h2,
.register-heading h2 {
  font-size: clamp(30px, 3vw, 38px) !important;
}

.login-column h3 {
  font-size: 24px !important;
}

.login-column p {
  margin: 0 0 22px;
  color: #5f6d78;
  font-size: 16px !important;
  line-height: 1.65;
}

.demo-login-box {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-left: 5px solid #e21483;
  border-radius: 8px;
  background: #f4fbff;
  color: #24323b;
  font-size: 15px;
  line-height: 1.4;
}

.demo-login-box strong {
  color: #d51178;
  font-size: 15px;
}

.demo-login-box span {
  font-weight: 800;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-form label {
  display: grid;
  gap: 9px;
  color: #293b47;
  font-size: 15px;
  font-weight: 900;
}

.login-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfdee6;
  border-radius: 7px;
  background: #fff;
  padding: 0 15px;
  color: #172d3b;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.login-form input:focus {
  border-color: var(--blue);
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(2, 148, 221, .13);
}

.login-form input::placeholder {
  color: #9ba9b3;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2px;
}

.login-form button,
.blue-button {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 0 22px;
  color: #fff;
  background: #057ebd;
  box-shadow: 0 13px 24px rgba(2, 118, 180, .22);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.login-form button:hover,
.blue-button:hover,
.login-form button:focus-visible,
.blue-button:focus-visible {
  background: #046da3;
  box-shadow: 0 16px 30px rgba(2, 118, 180, .28);
  transform: translateY(-1px);
}

.form-actions a {
  color: #057ebd;
  font-size: 15px;
  font-weight: 900;
}

.login-benefits {
  display: grid;
  gap: 13px;
  margin: 4px 0 28px;
  padding: 0;
  list-style: none;
}

.login-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #263846;
  font-size: 16px !important;
  font-weight: 800;
}

.social-login-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: -6px 0 22px;
}

.social-login-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #dbe7ef;
  border-radius: 8px;
  color: #172d3b;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 54, 89, .08);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.social-login-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
}

.social-login-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-login-button:hover,
.social-login-button:focus-visible {
  transform: translateY(-1px);
  border-color: #8fd2ec;
  box-shadow: 0 12px 26px rgba(15, 54, 89, .12);
  outline: none;
}

.login-card-secondary .blue-button {
  margin-top: auto;
}

.register-heading {
  margin-bottom: 24px;
}

.register-panel {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.register-page {
  padding: 32px 0 34px;
  background:
    linear-gradient(115deg, rgba(226, 20, 131, .09), rgba(2, 148, 221, .05) 58%, rgba(255,255,255,.92));
}

.register-page .register-section {
  max-width: 1120px;
}

.register-page .register-heading {
  margin-bottom: 24px;
}

.register-page .login-kicker {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #ccecf7;
  border-radius: 999px;
  color: #057ebd;
  background: #f7fdff;
  box-shadow: 0 6px 16px rgba(5, 126, 189, .08);
}

.register-page .register-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 3.4vw, 44px) !important;
  line-height: 1.08;
}

.register-page .register-heading p {
  max-width: none;
  margin: 0;
  color: #5f6d78;
  font-size: 16px;
  font-weight: 700;
}

.register-page .register-heading a {
  color: #057ebd;
  font-weight: 900;
}

.register-page .register-panel {
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.register-page .login-column {
  min-height: 400px;
  padding: 34px;
  border: 1px solid #e1e8ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 53, 73, .08);
}

.register-page .login-column h3 {
  font-size: 24px !important;
  font-weight: 600;
}

.register-page .login-form {
  gap: 8px;
}

.register-page .login-form label {
  gap: 7px;
  font-size: 13px;
}

.register-page .login-form input {
  min-height: 45px;
  border-radius: 6px;
}

.register-page .password-strength {
  margin: -4px 0 2px;
  color: #607380;
  font-size: 14px !important;
  font-weight: 800;
}

.register-page .captcha-box {
  min-width: 214px;
  min-height: 48px;
}

.register-page .register-side-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  column-gap: 4px;
}

.register-page .register-side-fields h3,
.register-page .register-side-fields label,
.register-page .register-side-fields .password-strength,
.register-page .register-side-fields .trusted-checkout,
.register-page .register-side-fields .form-message {
  grid-column: 1 / -1;
}

.register-page .register-side-fields > button[type="submit"] {
  min-height: 48px;
  align-self: end;
  margin-left: 0;
  white-space: nowrap;
}

.password-strength {
  margin: -6px 0 0 !important;
  color: #6d7983 !important;
  font-size: 14px !important;
  font-weight: 800;
}

.captcha-box {
  width: min(100%, 330px);
  min-height: 78px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 70px;
  gap: 13px;
  align-items: center;
  margin-top: 4px;
  padding: 13px;
  border: 1px solid #d8e2e8;
  border-radius: 7px;
  background: #fff;
  color: #4d545a;
  box-shadow: 0 10px 22px rgba(16, 42, 58, .08);
  cursor: pointer;
  text-align: left;
}

.captcha-box span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #bfcbd3;
  border-radius: 4px;
  background: #fff;
}

.captcha-box.checked span {
  border-color: var(--blue);
  background: var(--blue);
}

.captcha-box.checked span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.captcha-box p {
  margin: 0 !important;
  color: #263846;
  font-size: 15px !important;
  font-weight: 800;
}

.captcha-box b {
  color: #777;
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
}

.captcha-box small {
  font-size: 7px;
  font-weight: 600;
}

.form-message {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 900;
}

.form-message.error {
  color: #d72c4d;
}

.form-message.success {
  color: #118c47;
}

.account-page {
  padding: 54px 0 58px;
}

.account-success {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 52px;
  color: #586572;
  background: #d9ebf6;
  font-size: 12px;
  font-weight: 700;
}

.account-success span {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  background: #1d5c91;
  position: relative;
}

.account-success span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.account-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.account-layout > * {
  min-width: 0;
}

.account-sidebar {
  padding: 72px 0 0 28px;
  display: grid;
  gap: 24px;
}

.account-sidebar button {
  position: relative;
  padding-left: 22px;
  border: 0;
  background: transparent;
  color: #303840;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.account-sidebar button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 0;
  height: 0;
  border-left: 5px solid #171d22;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.account-sidebar button.active {
  color: #ec1687;
}

.history-panel {
  position: relative;
  min-width: 0;
  margin-top: 0;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 5px rgba(22, 40, 52, .08);
}

.account-tab-panel {
  display: none;
}

.account-tab-panel.active {
  display: block;
}

.history-panel h1 {
  margin: 0;
  padding: 36px 20px 18px;
  border-bottom: 3px solid #ec1687;
  color: #ec1687;
  font-size: 26px;
  text-align: left;
}

.history-content {
  padding: 100px 24px 22px;
  color: #666f77;
  font-size: 12px;
}

.detail-content,
.artwork-content,
.password-content,
.proof-content,
.tracking-content,
.studio-content,
.quotes-content {
  padding: 58px 26px 44px;
}

.detail-content > p {
  margin: 0 0 14px;
  color: #6b7278;
  font-size: 12px;
}

.detail-content > p b {
  color: #ec1687;
}

.detail-content > p span {
  float: right;
}

.account-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.account-detail-grid article h2 {
  margin: 0 0 10px;
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}

.account-detail-grid article p,
.account-detail-grid article small {
  display: block;
  margin: 0 0 12px;
  color: #1e252b;
  font-size: 12px;
  line-height: 1.45;
}

.account-detail-grid article button,
.cloud-upload button,
.password-content button {
  min-height: 28px;
  border: 0;
  padding: 0 12px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.account-detail-grid article button {
  float: right;
}

.artwork-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 58px;
  align-items: start;
}

.artwork-content h2 {
  margin: 0 0 18px;
  color: #ec1687;
  font-size: 13px;
  text-align: center;
}

.drop-zone {
  width: 270px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 2px dashed #9d9d9d;
  background: #fff;
  color: #1d2a32;
  cursor: pointer;
}

.drop-zone span {
  width: 54px;
  height: 38px;
  display: block;
  border-radius: 20px;
  background: var(--blue);
  position: relative;
}

.drop-zone span::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  width: 10px;
  height: 16px;
  border-left: 4px solid #fff;
  border-top: 4px solid #fff;
  transform: rotate(45deg);
}

.drop-zone b {
  font-size: 15px;
}

.artwork-content p {
  margin: 0;
  color: #2f363d;
  font-size: 10px;
  text-align: center;
}

.cloud-upload {
  display: grid;
  gap: 8px;
}

.cloud-upload h2 {
  margin-bottom: 0;
  color: #2f363d;
  text-align: left;
}

.cloud-upload p {
  margin-bottom: 8px;
  text-align: left;
}

.cloud-upload button {
  width: 150px;
  justify-self: start;
  background: #075aa8;
}

.password-content {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px 18px;
  align-items: center;
}

.password-content label {
  display: contents;
  color: #2f363d;
  font-size: 12px;
}

.password-content input {
  height: 26px;
  border: 1px solid #d7d7d7;
  padding: 0 8px;
}

.password-content button {
  grid-column: 2;
  width: max-content;
  margin-top: 18px;
}

.account-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.account-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #262d33;
  font-size: 12px;
}

.account-table th {
  padding: 8px 10px;
  border: 1px solid #d1d1d1;
  background: #ec1687;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.account-table td {
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid #cfcfcf;
  background: #fff;
  text-align: center;
}

.account-table a {
  color: #006fb8;
  font-weight: 500;
  text-decoration: underline;
}

.file-thumb {
  width: 28px;
  height: 24px;
  display: inline-block;
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 0 68%, rgba(255,255,255,.75) 69%),
    linear-gradient(#00a8d6 0 0) center 13px / 18px 4px no-repeat,
    #e9f5f9;
  border: 1px solid #9bc8d5;
}

.proof-content {
  color: #2f363d;
  font-size: 12px;
}

.proof-content p {
  margin: 12px 0;
  line-height: 1.45;
}

.proof-content p b {
  color: #ec1687;
}

.proof-warning {
  color: #ff3c55;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.proof-actions {
  display: grid;
  justify-content: end;
  gap: 8px;
  margin-top: 18px;
}

.proof-actions label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #2f363d;
  font-size: 12px;
}

.proof-actions input {
  width: 170px;
  height: 26px;
  border: 1px solid #cfd5d9;
  padding: 3px 8px;
}

.proof-actions button {
  min-width: 104px;
  min-height: 26px;
  border: 0;
  background: #dedede;
  color: #222;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.proof-actions small {
  color: #ec1687;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.proof-download {
  margin-top: 28px;
  color: #333;
  font-size: 11px;
  text-align: center;
}

.address-book-content {
  display: grid;
  gap: 28px;
  padding: 28px;
  color: #172d3b;
}

.account-detail-addresses {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid #dfe8ef;
}

.account-detail-addresses .account-table-wrap {
  margin-top: 0;
}

.address-defaults h2,
.address-entries h2 {
  margin: 0;
  color: #172d3b;
  font-size: 22px;
  font-weight: 700;
}

.address-defaults h2 {
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe8ef;
}

.address-default-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding-top: 22px;
}

.address-default-grid article {
  display: grid;
  gap: 10px;
}

.address-default-grid h3 {
  margin: 0;
  color: #243746;
  font-size: 15px;
  font-weight: 900;
}

.address-default-grid p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.address-default-grid a {
  color: #1688c4;
}

.address-default-grid button,
.address-book-table button {
  justify-self: start;
  border: 0;
  color: #1688c4;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.address-default-grid button::before,
.address-book-table button:first-child::before {
  content: "✎ ";
}

.address-book-table button:last-child {
  color: #e11d48;
}

.address-book-table button:last-child::before {
  content: "■ ";
  font-size: 9px;
}

.address-entry-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.address-entry-head p {
  margin: 12px 0 0;
  color: #334155;
  font-size: 13px;
}

.address-entry-head input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d8e5ed;
  border-radius: 7px;
  padding: 0 38px 0 14px;
  color: #172d3b;
  background: #fff;
  font-size: 13px;
}

.address-book-table {
  min-width: 760px;
  table-layout: fixed;
}

.address-book-table th,
.address-book-table td {
  vertical-align: top;
  line-height: 1.35;
}

.address-book-table th:nth-child(1),
.address-book-table td:nth-child(1) {
  width: 18%;
}

.address-book-table th:nth-child(2),
.address-book-table td:nth-child(2) {
  width: 42%;
}

.address-book-table th:nth-child(3),
.address-book-table td:nth-child(3) {
  width: 18%;
}

.address-book-table th:nth-child(4),
.address-book-table td:nth-child(4) {
  width: 13%;
}

.address-book-table th:nth-child(5),
.address-book-table td:nth-child(5) {
  width: 9%;
}

.address-book-table td:last-child {
  white-space: nowrap;
}

.address-name-cell,
.address-display-cell {
  color: #102f44;
  font-weight: 700;
}

.address-display-cell {
  font-weight: 600;
}

.address-display-cell span {
  display: block;
}

.address-display-cell span:first-child {
  font-weight: 800;
}

.address-actions-cell {
  white-space: nowrap;
}

.address-actions-cell button + button {
  margin-left: 8px;
}

.address-edit-cell {
  padding: 18px !important;
  background: #f8fbfd;
}

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

.address-edit-grid label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #486174;
  font-size: 12px;
  font-weight: 900;
}

.address-edit-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.address-inline-input,
.address-default-editor {
  width: 100%;
  border: 1px solid #b8d4e6;
  border-radius: 6px;
  padding: 7px 9px;
  color: #172d3b;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}

.address-default-editor {
  min-height: 150px;
  resize: vertical;
  line-height: 1.45;
}

.address-default-grid [data-address-default-save],
.address-book-table [data-address-save] {
  color: #047fbf;
  font-weight: 900;
}

.address-default-grid [data-address-default-cancel],
.address-book-table [data-address-cancel] {
  color: #64748b;
}

.address-default-grid [data-address-default-cancel]::before,
.address-book-table [data-address-cancel]::before,
.address-book-table [data-address-save]::before {
  content: "";
}

.tracking-content {
  padding-top: 32px;
}

.studio-content {
  color: #333;
  font-size: 10px;
  text-align: center;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
  padding: 28px;
}

.studio-grid button {
  aspect-ratio: 1;
  border: 0;
  background: #d8d8d8;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.studio-grid button:hover {
  background: #c9c9c9;
  transform: translateY(-2px);
}

.quotes-content {
  margin: 0;
  border: 0;
}

.quotes-category-tabs {
  margin: 0 0 22px;
}

.quotes-table th {
  background: #c8edf5;
  color: #20282f;
}

.quotes-table td {
  text-align: left;
}

.quotes-table td:first-child,
.quotes-table td:nth-child(2),
.quotes-table td:nth-child(5) {
  text-align: center;
}

.quotes-content p {
  max-width: 560px;
  margin: 120px auto 0;
  color: #6d747b;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.quotes-empty {
  margin: 28px auto 0 !important;
  color: #7a8791 !important;
  font-size: 13px !important;
  font-weight: 700;
}

.history-content p {
  margin: 0 0 8px;
}

.history-content h2 {
  margin: 28px 0 28px;
  color: #ec1687;
  font-size: 13px;
  text-align: center;
}

.date-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  gap: 14px 24px;
  align-items: end;
}

.date-search label {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 180px);
  align-items: center;
  gap: 14px;
  color: #777;
  font-size: 14px;
  font-weight: 800;
}

.date-search span {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  height: 29px;
  border: 1px solid #079bd8;
  background: #dcecff;
}

.date-search b {
  border-right: 1px solid #079bd8;
  background: #079bd8;
}

.date-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 10px;
  color: #87929c;
  font-size: 12px;
  text-align: center;
}

.date-search button {
  height: 31px;
  border: 0;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.order-list {
  display: grid;
  gap: 72px;
  margin-top: 70px;
}

.order-card {
  padding: 34px 38px 28px;
  border: 1px solid #b9b9b9;
  color: #161b20;
}

.order-meta {
  display: grid;
  grid-template-columns: minmax(130px, .85fr) minmax(100px, .7fr) minmax(150px, .9fr) minmax(130px, .8fr) minmax(220px, 1.25fr);
  gap: 18px;
  align-items: start;
  color: #ec1687;
  font-size: 18px;
  font-weight: 800;
}

.order-meta span {
  min-width: 0;
  display: grid;
  gap: 4px;
  line-height: 1.2;
}

.order-meta em {
  color: #ec1687;
  font-style: normal;
  font-weight: 900;
}

.order-meta b {
  color: #ec1687;
}

.order-card strong {
  color: #14191d;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.order-card p {
  max-width: 940px;
  margin: 42px 0 32px;
  color: #14191d;
  font-size: 17px;
  line-height: 1.45;
}

.order-card p b {
  color: #ec1687;
}

.order-card button {
  min-width: 220px;
  height: 42px;
  border: 2px solid #ec1687;
  border-radius: 4px;
  color: #ec1687;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.order-table-card {
  padding: 30px;
}

.order-history-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #161b20;
  font-size: 15px;
}

.order-history-table th {
  padding: 13px 16px;
  border: 1px solid #e1e1e1;
  background: #ec1687;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.order-history-table td {
  padding: 16px;
  border: 1px solid #d7d7d7;
  background: #fff;
  font-weight: 800;
  vertical-align: top;
}

.order-history-table a {
  color: #14191d;
  font-weight: 900;
  text-decoration: none;
}

.order-history-table a:hover {
  color: #ec1687;
}

.order-history-table strong {
  color: #14191d;
  font-size: 15px;
}

.order-status-row td {
  padding: 18px 16px;
  color: #20262c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.order-status-row b {
  color: #ec1687;
  font-weight: 900;
}

.order-table-card button {
  margin-top: 22px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  padding: 62px 0 70px;
}

.service-hero p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-hero h1 {
  margin: 0 0 18px;
  color: #24313a;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.service-hero span {
  display: block;
  max-width: 620px;
  color: #5c6872;
  font-size: 16px;
  line-height: 1.65;
}

.service-hero img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border: 1px solid #d7e4ec;
  border-radius: 8px;
  background: #eaf2f6;
  box-shadow: 0 18px 34px rgba(25, 48, 63, .12);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-weight: 900;
}

.service-actions a:first-child {
  color: #fff;
  background: var(--blue);
}

.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 0 72px;
}

.service-details article {
  padding: 28px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #f8fbfd;
}

.service-details h2 {
  margin: 0 0 12px;
  color: #25313a;
  font-size: 18px;
}

.service-details p {
  margin: 0;
  color: #63717b;
  line-height: 1.65;
}

.monthly-promo-page {
  overflow: hidden;
  background: #f6fafb;
  color: #172126;
}

.promo-hero {
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 50%, #eff8e9 100%);
  border-top: 1px solid #d6edf3;
  border-bottom: 1px solid #dcebef;
}

.promo-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 64px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 52px;
  line-height: 1.03;
  font-weight: 900;
  animation: promo-rise .6s ease both;
}

.promo-hero p {
  max-width: 660px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  animation: promo-rise .7s ease both;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: promo-rise .8s ease both;
}

.promo-actions a,
.promo-feature-body a,
.promo-mini-grid a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.promo-actions a:hover,
.promo-feature-body a:hover,
.promo-mini-grid a:hover {
  transform: translateY(-2px);
}

.promo-primary,
.promo-feature-body a {
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
}

.promo-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #17323d;
}

.promo-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(25, 58, 69, .16);
  animation: promo-card-in .7s cubic-bezier(.2, .8, .2, 1) both;
}

.promo-feature-ribbon {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: -38px;
  width: 170px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  background: #73b72d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.promo-feature-card figure {
  margin: 0;
  background: #dff3f8;
}

.promo-feature-card img {
  width: 100%;
  aspect-ratio: 1.28;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.promo-feature-card:hover img {
  transform: scale(1.04);
}

.promo-feature-body {
  display: grid;
  gap: 8px;
  padding: 26px;
  text-align: center;
}

.promo-feature-body span {
  color: #52616a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.promo-feature-body h2 {
  margin: 0;
  color: #079fd0;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.promo-feature-body p {
  margin: 0 0 8px;
  color: #38464f;
  font-size: 15px;
  font-weight: 800;
}

.promo-feature-body strong {
  color: #172126;
}

.promo-feature-expiry {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #172126;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.promo-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.promo-benefits article {
  min-height: 218px;
  padding: 26px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
  animation: promo-rise .7s ease both;
}

.promo-benefits article:nth-child(2) {
  animation-delay: .08s;
}

.promo-benefits article:nth-child(3) {
  animation-delay: .16s;
}

.promo-benefits span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.promo-benefits h2 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.promo-benefits p {
  margin: 0;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.promo-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 82px;
}

.promo-showcase-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(25, 58, 69, .14);
}

.promo-showcase-copy h2 {
  margin: 14px 0 16px;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

.promo-showcase-copy p {
  margin: 0 0 24px;
  color: #5b6870;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.promo-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-mini-grid a {
  border: 1px solid #d5e6eb;
  background: #fff;
  color: #17323d;
}

@keyframes promo-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes promo-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(1.5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.ecoupon-page {
  background: #fff;
}

.ecoupon-hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background: #d9edf8;
}

.ecoupon-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  background: #164d85;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 42%);
}

.ecoupon-hero-inner {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 28px;
  align-items: center;
  padding: 48px 0 34px;
}

.ecoupon-hero h1 {
  margin: 0 0 10px;
  color: #26343c;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.ecoupon-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #38464f;
  font-size: 12px;
  font-weight: 700;
}

.ecoupon-breadcrumb a {
  color: #38464f;
}

.ecoupon-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 130px;
}

.ecoupon-hero-art img {
  width: 86px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 52, 82, .2);
}

.ecoupon-hero-art img:nth-child(1) {
  transform: rotate(-3deg) translateY(14px);
}

.ecoupon-hero-art img:nth-child(2) {
  transform: rotate(5deg) translateY(-4px);
}

.ecoupon-hero-art img:nth-child(3) {
  transform: rotate(-8deg) translateY(10px);
}

.ecoupon-hero-art img:nth-child(4) {
  transform: rotate(9deg) translateY(0);
}

.ecoupon-panel {
  margin: 56px auto 86px;
  border: 1px solid #9ca4aa;
  background: #fff;
}

.ecoupon-panel-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: #079fd0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.ecoupon-panel-body {
  min-height: 360px;
  padding: 22px 22px 48px;
}

.ecoupon-panel-body p {
  margin: 0 0 10px;
  color: #2c3439;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.ecoupon-panel-body strong {
  color: #ed1c24;
  font-weight: 900;
}

.ecoupon-form {
  margin-top: 34px;
  padding-top: 42px;
  border-top: 1px solid #5f666b;
  display: grid;
  grid-template-columns: 190px minmax(240px, 380px);
  gap: 14px 16px;
  align-items: center;
  max-width: 630px;
  margin-left: 90px;
}

.ecoupon-form label {
  display: contents;
}

.ecoupon-form span {
  color: #394149;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.ecoupon-form input {
  width: 100%;
  min-height: 26px;
  border: 1px solid #cdd3d7;
  background: #fff;
  padding: 4px 8px;
  font: inherit;
}

.ecoupon-form button {
  grid-column: 2;
  justify-self: start;
  min-height: 24px;
  margin-top: 28px;
  padding: 0 13px;
  border: 0;
  background: #10aee0;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ecoupon-form button:hover {
  background: #078bb5;
}

.ecoupon-newsletter {
  margin: 0 auto 86px;
  background: #d6d4cf;
}

.ecoupon-newsletter-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 560px);
  gap: 28px;
  align-items: center;
}

.ecoupon-newsletter p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2e363c;
  font-size: 13px;
  font-weight: 800;
}

.ecoupon-newsletter p span {
  font-size: 24px;
  line-height: 1;
}

.ecoupon-newsletter form {
  display: flex;
}

.ecoupon-newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 30px;
  border: 0;
  padding: 6px 12px;
  font: inherit;
}

.ecoupon-newsletter button {
  min-width: 112px;
  border: 0;
  background: #10aee0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.ecoupon-page {
  overflow: hidden;
  background: #f6fafb;
  color: #172126;
}

.ecoupon-modern-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 50%, #eef7e8 100%);
  border-top: 1px solid #d6edf3;
  border-bottom: 1px solid #dcebef;
}

.ecoupon-modern-inner {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 58px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 72px;
}

.ecoupon-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ecoupon-modern-copy h1 {
  max-width: 730px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 52px;
  line-height: 1.03;
  font-weight: 900;
  animation: ecoupon-rise .6s ease both;
}

.ecoupon-modern-copy p {
  max-width: 650px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  animation: ecoupon-rise .72s ease both;
}

.ecoupon-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ecoupon-hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #d5e8ee;
  border-radius: 999px;
  background: #fff;
  color: #24323a;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31, 62, 74, .07);
}

.ecoupon-modern-art {
  position: relative;
  min-height: 390px;
  animation: ecoupon-card-in .7s cubic-bezier(.2, .8, .2, 1) both;
}

.ecoupon-art-main {
  width: 100%;
  min-height: 360px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 28px 64px rgba(25, 58, 69, .16);
}

.ecoupon-offer-card {
  position: absolute;
  left: 24px;
  bottom: -22px;
  width: 210px;
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: #172126;
  color: #fff;
  box-shadow: 0 20px 44px rgba(25, 58, 69, .18);
}

.ecoupon-offer-card strong {
  color: #7cc242;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
}

.ecoupon-offer-card span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.ecoupon-modern-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: start;
  margin-top: 56px;
  padding: 34px;
  border: 1px solid #d8e8ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 58, 69, .08);
}

.ecoupon-signup-copy h2,
.ecoupon-modern-newsletter h2 {
  margin: 14px 0 16px;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

.ecoupon-signup-copy p {
  margin: 0 0 18px;
  color: #5b6870;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.ecoupon-signup-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecoupon-signup-copy li {
  position: relative;
  padding-left: 26px;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.ecoupon-signup-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #73b72d;
  box-shadow: 0 0 0 4px rgba(115, 183, 45, .14);
}

.ecoupon-modern-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #f6fafb;
}

.ecoupon-modern-form label {
  display: grid;
  gap: 7px;
  color: #24323a;
  font-size: 13px;
  font-weight: 900;
}

.ecoupon-modern-form input,
.ecoupon-modern-newsletter input {
  width: 100%;
  height: 46px;
  border: 1px solid #d4e5eb;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: #172126;
  font: inherit;
}

.ecoupon-modern-form input:focus,
.ecoupon-modern-newsletter input:focus {
  border-color: #079fd0;
  outline: 2px solid rgba(7, 159, 208, .16);
}

.ecoupon-modern-form button,
.ecoupon-modern-newsletter button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #079fd0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ecoupon-modern-form button:hover,
.ecoupon-modern-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(7, 159, 208, .25);
}

.ecoupon-modern-form p {
  margin: 0;
  color: #697982;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.ecoupon-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 68px;
}

.ecoupon-benefits article {
  min-height: 218px;
  padding: 26px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
  animation: ecoupon-rise .7s ease both;
}

.ecoupon-benefits article:nth-child(2) { animation-delay: .08s; }
.ecoupon-benefits article:nth-child(3) { animation-delay: .16s; }

.ecoupon-benefits span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.ecoupon-benefits h2 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.ecoupon-benefits p {
  margin: 0;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.ecoupon-modern-newsletter {
  padding: 0 0 76px;
}

.ecoupon-modern-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 30px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 8px;
  background: #172126;
  box-shadow: 0 18px 42px rgba(25, 58, 69, .14);
}

.ecoupon-modern-newsletter .ecoupon-kicker {
  background: rgba(255, 255, 255, .12);
  color: #d7f5ff;
}

.ecoupon-modern-newsletter h2 {
  color: #fff;
}

.ecoupon-modern-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

@keyframes ecoupon-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ecoupon-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(1.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.go-green-page {
  background: #fff;
}

.turnaround-page {
  background: #fff;
}

.turnaround-hero {
  background: #e8f8fd;
}

.turnaround-hero-inner {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: 34px;
  padding: 24px 0 28px;
}

.turnaround-breadcrumb {
  width: auto;
  margin: 0 0 10px;
  padding: 0;
}

.turnaround-hero h1 {
  margin: 0;
  color: #1f2d35;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
}

.turnaround-hero-art {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.turnaround-hero-art img {
  position: absolute;
  width: 160px;
  height: 110px;
  object-fit: cover;
  box-shadow: 0 16px 28px rgba(27, 58, 79, .22);
}

.turnaround-hero-art img:first-child {
  right: 160px;
  top: 30px;
  transform: rotate(-8deg);
}

.turnaround-hero-art img:nth-child(2) {
  right: 78px;
  top: 66px;
  transform: rotate(10deg);
}

.turnaround-hero-art span {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 180px;
  height: 96px;
  border-radius: 90px 12px 12px 90px;
  background:
    radial-gradient(circle at 34% 44%, #f4d0ac 0 18px, transparent 19px),
    linear-gradient(90deg, #f7dcc2, #f4c8a6);
  transform: rotate(12deg);
}

.turnaround-content {
  padding: 34px 0 82px;
}

.turnaround-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-bottom: 24px;
}

.turnaround-intro h2,
.turnaround-explain h2,
.turnaround-faq h2 {
  margin: 0 0 12px;
  color: #202a31;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.turnaround-intro p,
.turnaround-card p,
.standard-turnaround p,
.turnaround-explain p,
.turnaround-faq p {
  margin: 0 0 10px;
  color: #30383d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.turnaround-intro a {
  display: inline-flex;
  max-width: 260px;
  margin-top: 12px;
  color: #01a9df;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.turnaround-alerts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.turnaround-card {
  min-height: 150px;
  padding: 18px 22px;
  color: #fff;
}

.turnaround-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.turnaround-card p,
.turnaround-card li {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.turnaround-card ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.same-day {
  background: #74bf35;
}

.four-day {
  background: #f12c92;
}

.standard-turnaround {
  margin-bottom: 28px;
  padding: 15px 18px;
  background: #079fd0;
}

.standard-turnaround h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.standard-turnaround p {
  color: #fff;
}

.turnaround-detail {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  margin-bottom: 34px;
}

.turnaround-options {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ccd5da;
}

.turnaround-options a {
  padding: 12px 12px 12px 0;
  color: #1d2b34;
  font-size: 13px;
  font-weight: 900;
}

.turnaround-explain {
  max-width: 780px;
}

.turnaround-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 42px repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
  margin: 22px 0 42px;
}

.turnaround-week div {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 6px 12px;
  border-radius: 8px 8px 0 0;
  background: #079fd0;
  color: #26343c;
  font-size: 12px;
  font-weight: 900;
}

.turnaround-week span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d2b34;
  font-size: 12px;
  font-weight: 900;
}

.turnaround-faq h2 {
  text-align: center;
}

.turnaround-faq details {
  border-top: 1px solid #ccd5da;
}

.turnaround-faq details:last-child {
  border-bottom: 1px solid #ccd5da;
}

.turnaround-faq summary {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 34px 9px 12px;
  color: #2d363c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.turnaround-faq summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  color: #6a757d;
  font-size: 17px;
}

.turnaround-faq details[open] summary::after {
  content: "-";
}

.turnaround-faq p {
  padding: 0 12px 14px;
}

.go-green-panel {
  margin: 20px auto 58px;
  border: 1px solid #8f969b;
  background: #fff;
}

.go-green-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #6fac36;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.go-green-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  min-height: 640px;
  padding: 46px 30px 48px;
}

.go-green-copy h1,
.go-green-copy h2 {
  margin: 0 0 10px;
  color: #2e3336;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.go-green-copy h2 {
  margin-top: 24px;
}

.go-green-copy p {
  margin: 0 0 14px;
  color: #2c3033;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 600;
}

.go-green-visual {
  display: flex;
  justify-content: center;
  padding-top: 72px;
}

.eco-mark {
  position: relative;
  width: 190px;
  height: 210px;
}

.eco-globe {
  position: absolute;
  left: 32px;
  top: 52px;
  width: 126px;
  height: 126px;
  border: 10px solid #99c94d;
  border-radius: 50%;
  background:
    radial-gradient(circle at 66% 38%, rgba(255, 255, 255, .95) 0 18%, transparent 19%),
    linear-gradient(135deg, #f7ffe7 0%, #d2ef8b 46%, #7bb63d 100%);
  box-shadow: inset -12px -14px 0 rgba(71, 142, 50, .16);
}

.eco-globe::before {
  content: "";
  position: absolute;
  inset: 15px 22px 18px 32px;
  border-radius: 42% 58% 48% 52%;
  background: #6aad38;
  transform: rotate(-13deg);
}

.eco-globe::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -16px;
  width: 118px;
  height: 76px;
  border-right: 7px solid #6fac36;
  border-bottom: 7px solid #6fac36;
  border-radius: 50%;
  transform: rotate(20deg);
}

.eco-globe span {
  position: absolute;
  left: 14px;
  top: 19px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(80, 139, 50, .25);
  border-radius: 50%;
}

.eco-leaf {
  position: absolute;
  display: block;
  width: 30px;
  height: 15px;
  border-radius: 30px 0;
  background: #74b843;
  transform-origin: right bottom;
  box-shadow: 0 0 0 1px rgba(62, 130, 46, .08);
}

.leaf-one {
  top: 20px;
  left: 66px;
  transform: rotate(28deg);
}

.leaf-two {
  top: 34px;
  left: 112px;
  transform: rotate(-18deg);
}

.leaf-three {
  top: 62px;
  left: 148px;
  transform: rotate(34deg);
}

.leaf-four {
  top: 42px;
  left: 34px;
  transform: rotate(-42deg);
}

.community-page {
  background: #f6fafb;
  color: #172126;
}

.community-page .service-breadcrumb {
  padding-top: 28px;
  padding-bottom: 18px;
}

.community-hero {
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 48%, #eef8e6 100%);
  border-top: 1px solid #d6edf3;
  border-bottom: 1px solid #dcebef;
}

.community-hero-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 58px;
}

.community-kicker,
.community-section-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.community-hero h1 {
  max-width: 720px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 900;
}

.community-hero p {
  max-width: 650px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.community-actions a,
.community-showcase a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.community-primary {
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
}

.community-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #17323d;
}

.community-visual {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #dff3f8;
  box-shadow: 0 28px 60px rgba(25, 58, 69, .14);
}

.community-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.community-visual-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 178px;
  padding: 14px 16px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(22, 48, 56, .16);
}

.community-visual-card strong {
  color: #172126;
  font-size: 15px;
  font-weight: 900;
}

.community-visual-card span {
  color: #66737a;
  font-size: 12px;
  font-weight: 800;
}

.community-visual-card-one {
  top: 28px;
  right: 28px;
}

.community-visual-card-two {
  left: 28px;
  bottom: 28px;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.community-stats article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
}

.community-stats strong {
  color: #079fd0;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.community-stats span {
  color: #53636b;
  font-size: 14px;
  font-weight: 800;
}

.community-modern-panel {
  padding-top: 72px;
  padding-bottom: 78px;
}

.community-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.community-section-head h2,
.community-showcase h2 {
  margin: 14px 0 0;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

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

.community-feature-grid article {
  min-height: 242px;
  padding: 26px;
  border: 1px solid #d9e9ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 58, 69, .06);
}

.community-feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.community-feature-grid h3 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.community-feature-grid p {
  margin: 0;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.community-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-top: 48px;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(25, 58, 69, .08);
}

.community-showcase img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(31, 62, 74, .12);
}

.community-showcase p {
  margin: 16px 0 24px;
  color: #5b6870;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.community-showcase a {
  background: #172126;
  color: #fff;
}

.info-page {
  background: #f6fafb;
  color: #172126;
}

.info-page .service-breadcrumb {
  padding-top: 28px;
  padding-bottom: 18px;
}

.info-hero {
  background: linear-gradient(135deg, #eef9fc 0%, #ffffff 50%, #eef7e8 100%);
  border-top: 1px solid #d7edf3;
  border-bottom: 1px solid #dbeaf0;
}

.info-hero-inner {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 54px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 54px;
}

.info-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 900;
}

.info-hero p {
  max-width: 680px;
  margin: 0;
  color: #53616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.info-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
  border-radius: 6px;
  background: #079fd0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
}

.info-hero-media {
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  background: #dff3f8;
  box-shadow: 0 24px 54px rgba(25, 58, 69, .14);
}

.info-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.info-stats article {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
}

.info-stats strong {
  color: #079fd0;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.info-stats span {
  color: #53636b;
  font-size: 14px;
  font-weight: 800;
}

.info-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 62px;
  padding-bottom: 76px;
}

.info-content article {
  min-height: 242px;
  padding: 26px;
  border: 1px solid #d9e9ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 58, 69, .06);
}

.info-content span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.info-content h2 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.info-content p {
  margin: 0;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.blog-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(7, 159, 208, .1), transparent 34%),
    linear-gradient(180deg, #f6fbfd 0%, #fff 42%, #f5fafc 100%);
  color: #172126;
}

.blog-hero {
  padding: 28px 0 42px;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.blog-kicker,
.blog-section-head span,
.blog-featured-card span,
.blog-post-body span,
.blog-newsletter > span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dff4fb;
  color: #007da8;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 680px;
  margin: 18px 0 18px;
  color: #111b22;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  font-weight: 900;
}

.blog-hero p {
  max-width: 610px;
  margin: 0;
  color: #526674;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

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

.blog-hero-actions a,
.blog-featured-card a,
.blog-newsletter a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #079fd0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(7, 159, 208, .22);
}

.blog-hero-actions a:last-child {
  border: 1px solid #b9ddea;
  background: #fff;
  color: #11607c;
  box-shadow: none;
}

.blog-featured-card {
  overflow: hidden;
  border: 1px solid #d7e8ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(21, 54, 67, .13);
}

.blog-featured-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #eef7fa;
}

.blog-featured-card div {
  padding: 24px;
}

.blog-featured-card h2 {
  margin: 14px 0 10px;
  color: #13202a;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 900;
}

.blog-featured-card p {
  margin: 0 0 20px;
  color: #5c6d78;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.blog-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 38px;
}

.blog-categories a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #d8e8ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  color: #14384a;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(30, 66, 78, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-categories a:hover,
.blog-categories a:focus-visible {
  transform: translateY(-2px);
  border-color: #37b7df;
  box-shadow: 0 18px 36px rgba(30, 66, 78, .1);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  padding-bottom: 78px;
}

.blog-section-head {
  margin-bottom: 20px;
}

.blog-section-head h2 {
  margin: 12px 0 0;
  color: #13202a;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

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

.blog-post-card {
  overflow: hidden;
  border: 1px solid #d9e9ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 58, 70, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(26, 58, 70, .12);
}

.blog-post-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .8fr);
}

.blog-post-card img {
  width: 100%;
  height: 218px;
  display: block;
  object-fit: cover;
  background: #eef7fa;
}

.blog-post-large img {
  height: 100%;
  min-height: 320px;
}

.blog-post-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.blog-post-body h3 {
  margin: 0;
  color: #13202a;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.blog-post-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-post-body h3 a:hover,
.blog-post-body h3 a:focus-visible {
  color: #007da8;
}

.blog-post-body p {
  margin: 0;
  color: #5c6d78;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.blog-post-body small {
  color: #71818c;
  font-size: 13px;
  font-weight: 800;
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  position: sticky;
  top: 18px;
}

.blog-sidebar-card {
  padding: 22px;
  border: 1px solid #d9e9ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 58, 70, .07);
}

.blog-sidebar-card h2 {
  margin: 0 0 14px;
  color: #13202a;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.blog-sidebar-card:not(.blog-newsletter) > a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #e5eff3;
  color: #29495b;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.blog-sidebar-card a span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef8fb;
  color: #007da8;
  font-size: 12px;
  font-weight: 900;
}

.blog-sidebar-card a:hover,
.blog-sidebar-card a:focus-visible {
  color: #007da8;
}

.blog-newsletter {
  background: linear-gradient(145deg, #12384a, #0b89b8);
  color: #fff;
}

.blog-newsletter > span {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.blog-newsletter h2 {
  margin-top: 16px;
  color: #fff;
}

.blog-newsletter p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.blog-newsletter a {
  width: 100%;
  background: #73bf2f;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .blog-hero-inner,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  .blog-hero {
    padding-top: 18px;
  }

  .blog-hero h1 {
    font-size: 38px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .blog-hero-actions,
  .blog-hero-actions a,
  .blog-featured-card a {
    width: 100%;
  }

  .blog-categories,
  .blog-post-grid,
  .blog-sidebar,
  .blog-post-large {
    grid-template-columns: 1fr;
  }

  .blog-post-large {
    grid-column: auto;
  }

  .blog-post-large img {
    min-height: 0;
    height: 220px;
  }

  .blog-section-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-featured-card div,
  .blog-post-body,
  .blog-sidebar-card {
    padding: 18px;
  }

  .blog-featured-card h2,
  .blog-post-body h3 {
    font-size: 22px;
  }
}

.help-page {
  overflow: hidden;
  background: #f6fafb;
  color: #172126;
}

.help-hero {
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 50%, #eef7e8 100%);
  border-top: 1px solid #d6edf3;
  border-bottom: 1px solid #dcebef;
}

.help-hero-inner {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 58px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 72px;
}

.help-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 52px;
  line-height: 1.03;
  font-weight: 900;
  animation: help-rise .6s ease both;
}

.help-hero p {
  max-width: 660px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  animation: help-rise .72s ease both;
}

.help-search {
  max-width: 620px;
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 28px;
  padding: 7px;
  border: 1px solid #d4e5eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(31, 62, 74, .08);
  animation: help-rise .8s ease both;
}

.help-search input {
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: #172126;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.help-search input:focus {
  outline: none;
}

.help-search button,
.help-hero-actions a,
.help-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.help-search button,
.help-primary,
.help-cta a {
  border: 0;
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
  cursor: pointer;
}

.help-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #17323d;
}

.help-search button:hover,
.help-hero-actions a:hover,
.help-cta a:hover {
  transform: translateY(-2px);
}

.help-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: help-rise .88s ease both;
}

.help-hero-media {
  position: relative;
  animation: help-card-in .72s cubic-bezier(.2, .8, .2, 1) both;
}

.help-hero-media img {
  width: 100%;
  min-height: 370px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 28px 64px rgba(25, 58, 69, .16);
}

.help-response-card {
  position: absolute;
  left: 24px;
  bottom: -24px;
  width: 230px;
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: #172126;
  color: #fff;
  box-shadow: 0 20px 44px rgba(25, 58, 69, .18);
}

.help-response-card strong {
  color: #7cc242;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}

.help-response-card span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.help-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.help-quick a,
.help-topic-grid article,
.help-faq-list details {
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
}

.help-quick a {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.help-quick a:hover {
  transform: translateY(-3px);
  border-color: #bde1ef;
  box-shadow: 0 20px 38px rgba(31, 62, 74, .12);
}

.help-quick strong {
  color: #079fd0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.help-quick span {
  color: #53636b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.help-topics,
.help-faq {
  padding-top: 68px;
}

.help-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.help-section-head h2,
.help-cta h2 {
  margin: 14px 0 0;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.help-topic-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  padding: 24px;
}

.help-topic-grid article > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.help-topic-grid h3 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.help-topic-grid p,
.help-faq-list p {
  margin: 0;
  color: #5b6870;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.help-topic-grid a {
  align-self: end;
  margin-top: 18px;
  color: #079fd0;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.help-faq {
  padding-bottom: 54px;
}

.help-faq-list {
  display: grid;
  gap: 14px;
}

.help-faq-list details {
  padding: 0 22px;
}

.help-faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: #172126;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.help-faq-list p {
  padding: 0 0 20px;
}

.help-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 78px;
  padding: 32px 36px;
  border-radius: 8px;
  background: #154580;
  box-shadow: 0 18px 42px rgba(25, 58, 69, .14);
}

.help-cta .help-kicker {
  background: rgba(255, 255, 255, .12);
  color: #d7f5ff;
}

.help-cta h2 {
  max-width: 760px;
  color: #fff;
}

@keyframes help-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes help-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(1.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.about-page {
  background: #f6fafb;
  color: #172126;
}

.about-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8fc 0%, #ffffff 48%, #eef7e8 100%);
  border-top: 1px solid #d7edf3;
  border-bottom: 1px solid #dbeaf0;
}

.about-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 62px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 72px;
}

.about-kicker,
.about-section-head span,
.about-cta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 740px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 900;
}

.about-hero p {
  max-width: 660px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-actions a,
.about-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.about-primary,
.about-cta a {
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
}

.about-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #17323d;
}

.about-hero-media {
  position: relative;
  min-height: 440px;
}

.about-main-img {
  width: 88%;
  min-height: 350px;
  display: block;
  margin-left: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 60px rgba(25, 58, 69, .16);
}

.about-float-img {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 48%;
  min-height: 190px;
  border: 10px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(25, 58, 69, .16);
}

.about-service-badge {
  position: absolute;
  right: 24px;
  bottom: 36px;
  width: 156px;
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: #172126;
  color: #fff;
  box-shadow: 0 20px 44px rgba(25, 58, 69, .18);
}

.about-service-badge strong {
  color: #7cc242;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
}

.about-service-badge span {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.about-stats article,
.about-story-grid article {
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
}

.about-stats article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
}

.about-stats strong {
  color: #079fd0;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.about-stats span {
  color: #53636b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.about-story {
  padding-top: 72px;
  padding-bottom: 42px;
}

.about-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.about-section-head h2,
.about-feature-copy h2,
.about-cta h2 {
  margin: 14px 0 0;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

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

.about-story-grid article {
  min-height: 250px;
  padding: 26px;
}

.about-card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #73b72d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.about-story-grid h3 {
  margin: 18px 0 10px;
  color: #172126;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.about-story-grid p,
.about-feature-copy p,
.about-feature-copy li {
  color: #5b6870;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 700;
}

.about-story-grid p {
  margin: 0;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 76px;
}

.about-feature-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(25, 58, 69, .14);
}

.about-feature-copy p {
  margin: 16px 0 18px;
}

.about-feature-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-feature-copy li {
  position: relative;
  padding-left: 26px;
}

.about-feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #73b72d;
  box-shadow: 0 0 0 4px rgba(115, 183, 45, .14);
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 78px;
  padding: 32px 36px;
  border-radius: 8px;
  background: #172126;
  box-shadow: 0 18px 42px rgba(25, 58, 69, .14);
}

.about-cta span {
  background: rgba(255, 255, 255, .12);
  color: #d7f5ff;
}

.about-cta h2 {
  max-width: 760px;
  color: #fff;
}

.reviews-web-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 50%, #eef7e8 100%);
  border-top: 1px solid #d6edf3;
  border-bottom: 1px solid #dcebef;
}

.reviews-web-hero-inner {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 58px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 72px;
}

.reviews-web-kicker,
.reviews-web-cta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 159, 208, .12);
  color: #057da5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reviews-web-copy h1 {
  max-width: 730px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 52px;
  line-height: 1.03;
  font-weight: 900;
  animation: review-rise .58s ease both;
}

.reviews-web-copy p,
.reviews-web-heading p {
  max-width: 660px;
  margin: 0;
  color: #52616a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.reviews-web-copy p {
  animation: review-rise .7s ease both;
}

.reviews-web-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: review-rise .8s ease both;
}

.reviews-web-actions a,
.reviews-web-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.reviews-web-actions a:hover,
.reviews-web-cta a:hover {
  transform: translateY(-2px);
}

.reviews-web-primary,
.reviews-web-cta a {
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(7, 159, 208, .22);
}

.reviews-web-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #17323d;
}

.reviews-web-showcase {
  position: relative;
  min-height: 390px;
  animation: review-card-in .7s cubic-bezier(.2, .8, .2, 1) both;
}

.reviews-web-feature-logo,
.reviews-web-score {
  position: absolute;
  border: 1px solid #d9e9ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(25, 58, 69, .14);
}

.reviews-web-feature-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.reviews-web-feature-logo:first-child {
  top: 20px;
  left: 10px;
  width: 270px;
  min-height: 190px;
}

.reviews-web-feature-logo:nth-child(2) {
  right: 0;
  bottom: 56px;
  width: 290px;
  min-height: 190px;
}

.reviews-web-feature-logo img {
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.reviews-web-score {
  left: 42px;
  bottom: 8px;
  width: 220px;
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background: #172126;
  color: #fff;
}

.reviews-web-score strong {
  color: #7cc242;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.reviews-web-score span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.reviews-web-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.reviews-web-stats article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 62, 74, .08);
}

.reviews-web-stats strong {
  color: #079fd0;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.reviews-web-stats span {
  color: #53636b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.reviews-web-panel {
  padding-top: 68px;
  padding-bottom: 56px;
}

.reviews-web-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.reviews-web-heading h2,
.reviews-web-cta h2 {
  margin: 14px 0 12px;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

.reviews-web-logo-grid {
  padding: 28px;
  border: 1px solid #d9e9ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 58, 69, .08);
}

.reviews-web-logo-grid .review-logo {
  animation: review-rise .6s ease both;
}

.reviews-web-logo-grid .review-logo:nth-child(2) { animation-delay: .04s; }
.reviews-web-logo-grid .review-logo:nth-child(3) { animation-delay: .08s; }
.reviews-web-logo-grid .review-logo:nth-child(4) { animation-delay: .12s; }
.reviews-web-logo-grid .review-logo:nth-child(5) { animation-delay: .16s; }
.reviews-web-logo-grid .review-logo:nth-child(6) { animation-delay: .2s; }
.reviews-web-logo-grid .review-logo:nth-child(7) { animation-delay: .24s; }
.reviews-web-logo-grid .review-logo:nth-child(8) { animation-delay: .28s; }
.reviews-web-logo-grid .review-logo:nth-child(9) { animation-delay: .32s; }

.reviews-web-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 78px;
  padding: 32px 36px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #eef9fd;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.reviews-web-cta span {
  background: rgba(255, 255, 255, .75);
  color: #04739f;
  border: 1px solid rgba(2, 148, 221, .16);
}

.reviews-web-cta h2 {
  max-width: 760px;
  color: #123f70;
}

@keyframes review-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes review-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(1.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.customer-reviews-page {
  overflow: hidden;
  background: #f6fafb;
  color: #172126;
}

.customer-reviews-hero {
  background: linear-gradient(135deg, #e8f8fb 0%, #ffffff 54%, #eef7e8 100%);
  border-top: 1px solid #d6edf3;
}

.customer-reviews-hero-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
  align-items: center;
  gap: 54px;
  padding-top: 54px;
  padding-bottom: 86px;
}

.customer-reviews-kicker,
.customer-reviews-cta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(7, 159, 208, .1);
  color: #087da4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.customer-reviews-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #172126;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
  animation: review-rise .6s ease both;
}

.customer-reviews-copy p,
.customer-reviews-section-head p,
.customer-review-channels p {
  max-width: 680px;
  margin: 0;
  color: #566770;
  font-size: 17px;
  line-height: 1.75;
}

.customer-reviews-copy p {
  animation: review-rise .72s ease both;
}

.customer-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation: review-rise .86s ease both;
}

.customer-reviews-actions a,
.customer-review-channels a,
.customer-reviews-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  padding: 0 20px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.customer-reviews-actions a:hover,
.customer-review-channels a:hover,
.customer-reviews-cta a:hover {
  transform: translateY(-2px);
}

.customer-reviews-primary,
.customer-review-channels a,
.customer-reviews-cta a {
  background: #079fd0;
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 159, 208, .22);
}

.customer-reviews-secondary {
  border: 1px solid #b8d4dd;
  background: #fff;
  color: #172126;
}

.customer-reviews-score-card {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid #d9e9ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 58px rgba(25, 58, 69, .16);
  padding: 26px;
  animation: review-card-in .72s cubic-bezier(.2, .8, .2, 1) both;
}

.customer-reviews-stars {
  color: #ffb400;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.customer-reviews-score-card strong {
  color: #172126;
  font-size: 28px;
  line-height: 1.15;
}

.customer-reviews-score-card p {
  margin: 0;
  color: #53636b;
  font-size: 15px;
  line-height: 1.65;
}

.customer-reviews-card-art {
  overflow: hidden;
  border-radius: 8px;
  background: #eaf6f8;
  aspect-ratio: 16 / 10;
}

.customer-reviews-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customer-reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.customer-reviews-stats article,
.customer-review-card {
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 58, 69, .08);
}

.customer-reviews-stats article {
  min-height: 122px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 24px;
}

.customer-reviews-stats strong {
  color: #079fd0;
  font-size: 28px;
  line-height: 1;
}

.customer-reviews-stats span {
  color: #53636b;
  font-size: 14px;
  line-height: 1.45;
}

.customer-reviews-list {
  padding-top: 68px;
  padding-bottom: 56px;
}

.customer-reviews-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.customer-reviews-section-head h2,
.customer-review-channels h2,
.customer-reviews-cta h2 {
  margin: 14px 0 12px;
  color: #172126;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

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

.customer-review-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 26px;
  animation: review-rise .6s ease both;
}

.customer-review-card:nth-child(2) {
  animation-delay: .08s;
}

.customer-review-card:nth-child(3) {
  animation-delay: .16s;
}

.customer-review-card p {
  margin: 0;
  color: #23323a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.customer-review-card footer {
  display: grid;
  gap: 5px;
}

.customer-review-card footer strong {
  color: #172126;
  font-size: 15px;
}

.customer-review-card footer span {
  color: #6a7880;
  font-size: 13px;
}

.customer-review-channels {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 36px;
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(25, 58, 69, .08);
  padding: 32px;
}

.customer-review-channels a {
  margin-top: 22px;
}

.customer-review-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customer-review-logo-row img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  border: 1px solid #e0edf1;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.customer-review-logo-row img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(25, 58, 69, .12);
}

.customer-reviews-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, #123f63, #079fd0);
  box-shadow: 0 18px 42px rgba(25, 58, 69, .14);
  padding: 34px;
}

.customer-reviews-cta span {
  background: rgba(255, 255, 255, .12);
  color: #d7f5ff;
}

.customer-reviews-cta h2 {
  max-width: 760px;
  color: #fff;
}

.privacy-page {
  background: #f5f8fa;
}

.privacy-hero {
  margin-top: 0;
  background: linear-gradient(135deg, #e9f8fd 0%, #f7fbfd 58%, #ffffff 100%);
  border-top: 1px solid #d9edf5;
  border-bottom: 1px solid #d8e9f0;
}

.privacy-hero-inner {
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
}

.privacy-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #087da9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-hero h1 {
  margin: 0 0 14px;
  color: #1f2a31;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
}

.privacy-hero p {
  max-width: 720px;
  margin: 0;
  color: #50616b;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
}

.privacy-summary {
  padding: 24px;
  border: 1px solid #cbe4ee;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(23, 87, 112, .12);
}

.privacy-summary strong,
.privacy-summary span {
  display: block;
}

.privacy-summary strong {
  margin-bottom: 14px;
  color: #1f2a31;
  font-size: 18px;
  font-weight: 900;
}

.privacy-summary span {
  position: relative;
  padding-left: 22px;
  color: #4f5f68;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.privacy-summary span + span {
  margin-top: 10px;
}

.privacy-summary span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #079fd0;
  box-shadow: inset 0 0 0 3px #dff5fb;
}

.privacy-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 78px;
}

.privacy-toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d8e6ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(25, 67, 88, .08);
}

.privacy-toc a {
  padding: 11px 12px;
  border-radius: 6px;
  color: #39515e;
  font-size: 13px;
  font-weight: 900;
}

.privacy-toc a:hover {
  color: #fff;
  background: #079fd0;
}

.privacy-card {
  padding: 38px 46px;
  border: 1px solid #d9e6ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 67, 88, .08);
}

.privacy-card section + section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e7eef2;
}

.privacy-card h2 {
  margin: 0 0 12px;
  color: #1f2a31;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

.privacy-card p {
  margin: 0 0 12px;
  color: #53646e;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 600;
}

.privacy-card a {
  color: #078fc0;
  font-weight: 900;
}

.reward-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.reward-stats span {
  display: grid;
  gap: 5px;
  padding: 18px 16px;
  border: 1px solid #d7eaf1;
  border-radius: 8px;
  color: #4a5e68;
  background: #f3fbfe;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.reward-stats strong {
  color: #079fd0;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.privacy-updated {
  display: inline-flex;
  margin-top: 8px !important;
  padding: 8px 12px;
  border-radius: 999px;
  color: #276276 !important;
  background: #eaf8fc;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.link-page {
  background: #fff;
}

.link-title {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 42px;
  background: #e9f9fd;
}

.link-title h1 {
  margin: 0;
  color: #24292d;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.link-title-art {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.link-title-art img {
  width: min(100%, 500px);
  max-height: 185px;
  object-fit: contain;
}

.link-panel {
  width: min(1080px, calc(100% - 44px));
  margin: 58px auto 82px;
  padding: 28px 28px 40px;
  border: 1px solid #757b80;
  background: #fff;
  color: #24292d;
}

.link-panel p {
  margin: 0 0 13px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.link-panel a {
  color: #078ac2;
  font-weight: 800;
}

.link-code-block,
.banner-code {
  margin-top: 18px;
}

.link-code-block h2,
.banner-code h2 {
  margin: 0 0 10px;
  color: #12181d;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.link-panel code {
  display: block;
  max-width: 740px;
  margin: 10px 0 0;
  padding: 12px 14px;
  color: #313a41;
  background: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 12px;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.42;
  white-space: normal;
  overflow-wrap: anywhere;
}

.banner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.banner-logo.large {
  height: 90px;
  max-width: 420px;
  margin: 14px 0;
}

.banner-logo.small {
  height: 68px;
  max-width: 300px;
  margin: 14px 0;
}

.review-page {
  background: #fff;
}

.review-panel {
  width: min(1100px, calc(100% - 44px));
  margin: 22px auto 72px;
  border: 1px solid #70777d;
  background: #fff;
}

.review-panel-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #104071;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.review-panel-body {
  padding: 34px 42px 46px;
}

.review-panel-body > p {
  max-width: 930px;
  margin: 0 0 12px;
  color: #30363a;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.review-form {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px 22px;
  align-items: start;
}

.review-form label {
  display: contents;
}

.review-form label span {
  padding-top: 9px;
  color: #1f2529;
  font-size: 12px;
  font-weight: 900;
}

.review-form input,
.review-form textarea {
  width: 100%;
  min-height: 34px;
  border: 1px solid #c9d0d4;
  background: #fff;
  color: #1f2529;
  font: inherit;
  padding: 7px 10px;
}

.review-form textarea {
  min-height: 78px;
  resize: vertical;
}

.review-captcha {
  grid-column: 2;
  width: 160px;
  min-height: 170px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  padding: 14px 10px;
  border: 1px solid #e0e3e6;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.captcha-check {
  width: 20px;
  height: 20px;
  border: 2px solid #7d858b;
  background: #fff;
}

.review-captcha p {
  margin: 2px 0 0;
  color: #28323a;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
}

.review-captcha small {
  grid-column: 1 / -1;
  align-self: end;
  color: #8a939a;
  font-size: 8px;
  line-height: 1.35;
  text-align: right;
}

.review-form button {
  grid-column: 2;
  justify-self: end;
  min-width: 78px;
  min-height: 34px;
  border: 0;
  color: #fff;
  background: #13aee1;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.review-form button:hover {
  background: #079fd0;
}

.web-reviews-page {
  background: #fff;
}

.web-reviews-panel {
  width: min(1100px, calc(100% - 44px));
  margin: 22px auto 72px;
  border: 1px solid #70777d;
  background: #fff;
}

.web-reviews-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #104071;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.web-reviews-head span {
  color: inherit;
}

.web-reviews-body {
  min-height: 690px;
  padding: 30px 48px 54px;
  text-align: center;
}

.web-reviews-body > p {
  margin: 0 auto 72px;
  color: #151a1e;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
}

.review-logo-grid {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 42px 42px;
  align-items: center;
  margin: 0 auto;
  text-align: left;
}

.review-logo {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20252a;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

.review-logo:hover {
  opacity: .86;
  transform: translateY(-2px);
}

.review-logo img {
  max-width: 180px;
  max-height: 72px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.review-logo-wide img {
  max-width: 220px;
  max-height: 76px;
}

.google-places {
  flex-direction: column;
  align-items: flex-start;
  color: #5b8fe4;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 22px;
}

.google-places .pin-mark {
  width: 68px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 0 2px 34px;
  color: #fff;
  background: linear-gradient(135deg, #7ec442, #f15b4a 62%, #2059a8 63%);
  border-radius: 12px 12px 18px 18px;
  font: 900 26px/1 "Inter", Helvetica, sans-serif;
}

.google-places b {
  color: #f2b340;
  font-weight: 500;
}

.google-places small {
  margin-left: 62px;
  color: #6f87d8;
  font-size: 18px;
}

.yahoo-local {
  flex-direction: column;
  color: #8b238d;
  font-family: "Poppins", Helvetica, sans-serif;
}

.yahoo-local b {
  font-size: 25px;
}

.yahoo-local small {
  color: #3d4248;
  font: 900 13px/1 "Inter", Helvetica, sans-serif;
}

.insider-pages b {
  padding: 9px 12px;
  color: #fff;
  background: #19586f;
  font-size: 20px;
}

.insider-pages small {
  padding: 9px 9px;
  color: #f28b2f;
  background: #26343c;
  font-size: 18px;
}

.angies-list b {
  color: #303030;
  font-size: 34px;
  letter-spacing: -.03em;
}

.yellow-pages {
  justify-content: flex-start;
  gap: 12px;
}

.yellow-pages span {
  width: 60px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #111;
  background: #fcf000;
  border: 8px solid #050505;
  border-radius: 14px;
  font-size: 34px;
  font-weight: 900;
}

.yellow-pages b {
  color: #111;
  font-size: 34px;
  line-height: .82;
}

.foursquare b {
  color: #2276bf;
  font-size: 30px;
  font-style: italic;
  letter-spacing: -.05em;
  text-shadow: 0 1px 0 #9ed0f6;
}

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

.manta b {
  color: #3f4146;
  font-size: 36px;
  letter-spacing: -.04em;
}

.manta b::first-letter {
  color: #f6b739;
}

.manta small {
  margin-left: 54px;
  color: #4f5960;
  font-size: 9px;
  font-weight: 900;
}

.merchant-circle {
  justify-content: flex-start;
  gap: 5px;
}

.merchant-circle span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ef5a48;
  border-radius: 50%;
  font-weight: 900;
}

.merchant-circle b {
  color: #2ba4da;
  font-size: 18px;
}

.merchant-circle small {
  color: #2ba4da;
  font-size: 12px;
}

.citysearch b {
  color: #62c0e6;
  font-size: 25px;
  text-shadow: 0 1px 0 #b6e6f7;
}

.citysearch span {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  border: 3px solid #7dc8e9;
  border-radius: 50%;
}

.yelp {
  justify-content: flex-start;
  gap: 3px;
}

.yelp b {
  color: #252525;
  font-size: 42px;
  letter-spacing: -.05em;
}

.yelp span {
  color: #d92523;
  font-size: 54px;
  line-height: .8;
}

.site-footer {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 32%),
    #0799c9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 -1px 0 rgba(24, 45, 60, .12);
}

.footer-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  max-width: none;
  margin-inline: auto;
}

.site-footer h3 {
  margin: 0 0 15px;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: .04em;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.site-footer a {
  transition: color .18s ease, transform .18s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-column:nth-child(5) h3 {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1fr;
  gap: 36px;
  max-width: none;
  margin: 38px auto 0;
  padding-top: 28px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.28);
}

.support-title h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.support-title::after {
  content: "";
  width: 62px;
  height: 58px;
  display: block;
  margin-left: 2px;
  background: url("../images/customer-support-icon.svg") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0, 73, 103, .18));
}

.support-copy,
.payment {
  padding-top: 0;
}

.support-copy p {
  max-width: 310px;
  margin-bottom: 7px;
}

.payment p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 800;
}

.payment-icon {
  width: 16px;
  height: 12px;
  display: inline-block;
  border-radius: 2px;
  background:
    linear-gradient(#079fd0 0 0) 3px 3px / 10px 2px no-repeat,
    linear-gradient(#079fd0 0 0) 3px 8px / 7px 2px no-repeat,
    rgba(255,255,255,.95);
}

.cards {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-cards img {
  width: auto;
  height: 26px;
  display: block;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 72, 100, .12);
}

.footer-divider {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 32px auto 0;
  background: rgba(3, 102, 139, .75);
}

.footer-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  max-width: none;
  margin-inline: auto;
  font-size: 12px;
  font-weight: 800;
}

.footer-download,
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-download span,
.footer-social span {
  color: rgba(255,255,255,.94);
}

.store-badge,
.footer-social a {
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 72, 100, .12);
  transform: none;
}

.store-badge {
  min-width: 78px;
  padding: 0 10px;
  color: #fff;
  background: #26343c;
  font-size: 11px;
  font-weight: 800;
}

.store-icon {
  width: 28px;
  min-width: 28px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.store-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-social a {
  width: 26px;
  min-width: 26px;
  color: #079bd0;
  background: #fff;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  position: relative;
  text-indent: -9999px;
  overflow: hidden;
}

.footer-social a::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: #079bd0;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
}

.footer-social a[aria-label="Facebook"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v5h4v-5h3l1-4h-4V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="Twitter"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.9 3H22l-6.8 7.8L23 21h-6.2l-4.9-6.4L6.2 21H3l7.3-8.4L2.8 3h6.3l4.4 5.8L18.9 3Zm-1.1 16.2h1.7L8.2 4.7H6.4l11.4 14.5Z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="Instagram"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='5'/%3E%3Ccircle cx='12' cy='12' r='3.6'/%3E%3Cpath d='M17.4 6.6h.01'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="YouTube"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 8.1c-.2-1.5-1.1-2.4-2.5-2.6C17.4 5.2 12 5.2 12 5.2s-5.4 0-7.5.3C3.1 5.7 2.2 6.6 2 8.1c-.3 1.6-.3 3.9-.3 3.9s0 2.3.3 3.9c.2 1.5 1.1 2.4 2.5 2.6 2.1.3 7.5.3 7.5.3s5.4 0 7.5-.3c1.4-.2 2.3-1.1 2.5-2.6.3-1.6.3-3.9.3-3.9s0-2.3-.3-3.9ZM10 15.3V8.7l5.8 3.3L10 15.3Z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="LinkedIn"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.1 8.7H9V21H5.1V8.7ZM7 3c1.3 0 2.2.9 2.2 2s-.9 2-2.2 2-2.2-.9-2.2-2S5.7 3 7 3Zm4.3 5.7H15v1.7h.1c.5-.9 1.8-2 3.7-2 4 0 4.7 2.6 4.7 6V21h-3.9v-5.8c0-1.4 0-3.1-1.9-3.1s-2.2 1.5-2.2 3V21h-4V8.7Z'/%3E%3C/svg%3E");
}

.store-badge:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-social a:hover {
  color: #007da9;
  transform: translateY(-1px);
}

.footer-social a:hover::before {
  background: #007da9;
}

.design-services-page {
  background: #fff;
  color: #333;
}

.design-breadcrumb {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 38px 0 10px;
  color: #1e1f20;
  font-size: 18px;
  font-weight: 800;
}

.design-breadcrumb a {
  color: inherit;
}

.design-hero-band {
  background: #d9ecf8;
}

.design-hero {
  min-height: 268px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 48px;
  align-items: start;
  padding: 55px 0 34px;
}

.design-hero h1 {
  margin: 0 0 16px;
  color: #2a2d30;
  font-size: 32px;
  line-height: 1.1;
}

.design-hero p {
  margin: 0;
  color: #2e3438;
  font-size: 21px;
}

.design-mailer-art {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 215px;
}

.design-mailer-art img {
  width: min(100%, 570px);
  height: auto;
  display: block;
  object-fit: contain;
}

.design-promo {
  margin-top: 45px;
  padding: 28px 20px 30px;
  background: #089fd5;
  color: #fff;
}

.design-promo h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.05;
}

.design-promo ul {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.25;
}

.design-content {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(0, 520px);
  gap: 72px;
  padding: 78px 0 42px;
  align-items: start;
}

.design-steps {
  padding-left: 40px;
}

.design-steps h2 {
  margin: 0 0 18px;
  color: #08a2da;
  font-size: 26px;
}

.design-steps h3 {
  margin: 23px 0 6px;
  color: #8c8c8c;
  font-size: 14px;
}

.design-steps p {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.35;
}

.design-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
}

.design-tabs button {
  min-width: 58px;
  height: 25px;
  border: 1px solid #6bbde8;
  background: #fff;
  color: #6b747a;
  font-weight: 800;
}

.design-tabs .active {
  color: #fff;
  background: #089fd5;
}

.design-faq-box {
  min-height: 352px;
  padding: 46px 28px 24px;
  background: #fbfdfe;
  color: #09a1dc;
}

.design-faq-box h2 {
  margin: 0 0 10px;
  font-size: 14px;
}

.design-faq-box ul {
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.35;
}

.design-faq-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
}

.design-note {
  padding: 25px 40px 72px;
  color: #888;
  font-size: 13px;
}

.design-note p {
  margin: 0 0 10px;
}

.design-note a {
  color: #08a2da;
  font-size: 18px;
  font-weight: 900;
}

/* Design services aligned with custom quote aesthetic */
.design-modern {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
  color: #123f70;
}

.design-modern .design-breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
  color: #526979;
  font-size: 14px;
  font-weight: 800;
}

.design-modern .design-hero-band {
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.design-modern .design-hero {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px) minmax(260px, 340px);
  gap: 32px;
  align-items: center;
  min-height: 0;
  padding: 46px 0 60px;
}

.design-modern .design-hero h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.design-modern .design-hero p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.design-modern .design-mailer-art {
  min-height: 0;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.design-modern .design-mailer-art img {
  width: 100%;
  max-width: 330px;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.design-modern .design-hero-card {
  align-self: center;
}

.design-modern .design-promo {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -28px;
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  color: #526979;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.design-modern .design-promo .custom-quote-kicker {
  grid-column: 1;
}

.design-modern .design-promo h2 {
  grid-column: 1;
  margin: 12px 0 0;
  color: #123f70;
  font-size: clamp(22px, 2.25vw, 28px) !important;
  font-weight: 950;
  line-height: 1.12;
}

.design-modern .design-promo ul {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.design-modern .design-promo li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #526979;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.design-modern .design-promo li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #08a7d8;
  box-shadow: 0 0 0 5px rgba(8, 167, 216, .12);
}

.design-modern .design-content {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 36px 0;
}

.design-modern .design-steps,
.design-modern .design-faq-panel,
.design-modern .design-note {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.design-modern .design-steps {
  padding: 32px;
}

.design-modern .design-steps h2,
.design-modern .design-faq-box h2 {
  margin: 0 0 18px;
  color: #123f70;
  font-size: 28px !important;
  font-weight: 950;
  line-height: 1.12;
}

.design-modern .design-steps h3 {
  margin: 24px 0 8px;
  color: #047fbf;
  font-size: 17px;
  font-weight: 950;
}

.design-modern .design-steps p,
.design-modern .design-faq-box p,
.design-modern .design-note p {
  color: #526979;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.design-modern .design-tabs {
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 18px 0;
  margin: 0;
}

.design-modern .design-tabs button {
  min-width: 86px;
  height: 38px;
  border-color: rgba(4, 127, 191, .2);
  border-radius: 999px;
  color: #047fbf;
  background: #f7fbfd;
  font-size: 13px;
}

.design-modern .design-tabs .active {
  color: #fff;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .18);
}

.design-modern .design-faq-box {
  min-height: 0;
  padding: 28px 32px 32px;
  color: #526979;
  background: transparent;
}

.design-modern .design-faq-box ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 20px;
  color: #526979;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.design-modern .design-note {
  display: grid;
  gap: 8px;
  padding: 28px 32px;
}

.design-modern .design-note a {
  color: #047fbf;
}

@media (max-width: 1100px) {
  .design-modern .design-hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  }

  .design-modern .design-hero-card {
    grid-column: 1 / -1;
    width: min(100%, 430px);
  }
}

@media (max-width: 760px) {
  .design-modern {
    padding-bottom: 56px;
  }

  .design-modern .design-hero,
  .design-modern .design-promo,
  .design-modern .design-content {
    grid-template-columns: 1fr !important;
  }

  .design-modern .design-hero {
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .design-modern .design-hero h1 {
    font-size: 38px !important;
  }

  .design-modern .design-promo ul,
  .design-modern .design-promo h2,
  .design-modern .design-promo .custom-quote-kicker {
    grid-column: auto;
    grid-row: auto;
  }

  .design-modern .design-promo,
  .design-modern .design-steps,
  .design-modern .design-faq-box,
  .design-modern .design-note {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .design-hero,
  .design-content {
    grid-template-columns: 1fr;
  }

  .design-mailer-art {
    min-height: 230px;
  }

  .design-services-page:not(.design-modern) .design-steps,
  .design-services-page:not(.design-modern) .design-note {
    padding-left: 0;
    padding-right: 0;
  }

  .privacy-hero-inner,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    max-width: 520px;
  }

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

@media (max-width: 1000px) {
  .header-main {
    grid-template-columns: 240px 1fr;
    min-height: 0;
    height: auto;
    padding: 18px 0;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .main-nav {
    height: auto;
  }

  .main-nav .page-width {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 10px 0;
  }

  .nav-cta {
    height: 42px;
    min-width: 190px;
    margin: 0;
  }

  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-row button {
    display: none;
  }

  .product-grid,
  .wedding-grid,
  .path-grid,
  .proof-card,
  .product-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    gap: 30px;
  }

  .product-media {
    grid-template-columns: 100px 1fr;
  }

  .thumbs button {
    width: 100px;
    height: 100px;
  }

  .main-product-image {
    height: 330px;
  }

  .frequently-viewed h2,
  .viewed-grid,
  .info-tabs,
  .template-table {
    margin-left: 0;
  }

  .process-content,
  .signup,
  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero {
    gap: 30px;
  }

  .service-hero img {
    max-width: 520px;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .service-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .service-product-card img {
    height: 220px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 40px;
  }

  .contact-hero-inner,
  .contact-support {
    grid-template-columns: 1fr;
  }

  .contact-hero-inner {
    min-height: auto;
    padding: 34px 0 0;
  }

  .contact-hero-art {
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-card-grid {
    gap: 26px;
  }

  .contact-support {
    max-width: min(100% - 28px, 620px);
  }

  .support-info {
    padding: 34px;
  }

  .support-info h2 {
    font-size: 21px;
  }

  .support-photo,
  .support-photo img {
    min-height: 260px;
  }

  .login-panel {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-inline: 28px;
  }

  .quote-print-collage {
    margin-top: 20px;
  }

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

  .account-sidebar {
    padding: 28px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .date-search,
  .order-meta,
  .account-detail-grid,
  .artwork-content {
    grid-template-columns: 1fr 1fr;
  }

  .studio-grid {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 16px;
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    gap: 30px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .payment {
    grid-column: 1 / -1;
  }

  .go-green-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .go-green-visual {
    order: -1;
    padding-top: 10px;
  }

  .ecoupon-hero-inner {
    grid-template-columns: 1fr;
  }

  .ecoupon-hero-art {
    justify-content: flex-start;
  }

  .ecoupon-form {
    margin-left: 0;
  }

  .turnaround-hero-inner,
  .turnaround-intro,
  .turnaround-alerts,
  .turnaround-detail {
    grid-template-columns: 1fr;
  }

  .turnaround-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: 8px;
    overflow-x: auto;
    border-right: 0;
  }

  .turnaround-options a {
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f1f6f8;
  }

  .product-section:before,
  .product-section:after {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-width {
    width: min(100% - 28px, 1220px);
  }

  .header-main,
  .product-grid,
  .wedding-grid,
  .path-grid,
  .proof-card,
  .footer-grid,
  .product-layout,
  .product-media,
  .viewed-grid,
  .info-tabs {
    grid-template-columns: 1fr;
  }

  .header-main {
    gap: 14px;
    padding: 16px 0;
  }

  .brand img {
    width: min(230px, 66vw);
    margin: 0 auto;
  }

  .header-actions {
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .sparkle-mark {
    margin-right: 0;
  }

  .footer-wrap {
    width: min(100% - 36px, 1080px);
    padding: 40px 0 0;
  }

  .footer-grid,
  .footer-bottom {
    gap: 26px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    margin-top: 32px;
    padding-top: 24px;
  }

  .privacy-hero-inner {
    min-height: 0;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .privacy-hero h1 {
    font-size: 34px;
  }

  .privacy-hero p {
    font-size: 14px;
  }

  .privacy-summary,
  .privacy-card {
    padding: 22px 18px;
  }

  .privacy-content {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 52px;
  }

  .privacy-toc {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .privacy-card h2 {
    font-size: 19px;
  }

  .privacy-card p {
    font-size: 13px;
  }

  .reward-stats {
    grid-template-columns: 1fr;
  }

  .link-title {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .link-title-art {
    min-height: 120px;
    justify-content: flex-start;
  }

  .link-panel {
    width: min(100% - 36px, 1080px);
    margin: 34px auto 58px;
    padding: 22px 18px 28px;
  }

  .review-panel {
    width: min(100% - 36px, 1100px);
  }

  .review-panel-body {
    padding: 24px 18px 34px;
  }

  .review-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-form label {
    display: block;
  }

  .review-form label span {
    display: block;
    padding: 0 0 6px;
  }

  .review-captcha,
  .review-form button {
    grid-column: 1;
  }

  .web-reviews-panel {
    width: min(100% - 36px, 1100px);
  }

  .web-reviews-body {
    min-height: 0;
    padding: 24px 18px 40px;
  }

  .web-reviews-body > p {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .review-logo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .go-green-panel {
    width: min(100% - 36px, 1080px);
  }

  .go-green-card {
    padding: 28px 18px 34px;
  }

  .go-green-copy p {
    font-size: 12px;
  }

  .ecoupon-hero h1 {
    font-size: 22px;
  }

  .ecoupon-hero-art {
    flex-wrap: wrap;
    gap: 14px;
  }

  .ecoupon-hero-art img {
    width: 70px;
  }

  .ecoupon-panel {
    width: min(100% - 36px, 1100px);
    margin: 36px auto 54px;
  }

  .ecoupon-panel-head {
    font-size: 15px;
  }

  .ecoupon-panel-body {
    min-height: 0;
    padding: 18px 16px 32px;
  }

  .ecoupon-form {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 28px;
  }

  .ecoupon-form label {
    display: block;
  }

  .ecoupon-form span {
    display: block;
    margin-bottom: 6px;
    text-align: left;
  }

  .ecoupon-form button {
    grid-column: 1;
    margin-top: 12px;
  }

  .ecoupon-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .ecoupon-newsletter form {
    flex-direction: column;
    gap: 8px;
  }

  .ecoupon-newsletter button {
    min-height: 32px;
  }

  .turnaround-hero h1 {
    font-size: 24px;
  }

  .turnaround-hero-art {
    min-height: 150px;
  }

  .turnaround-hero-art img {
    width: 118px;
    height: 82px;
  }

  .turnaround-hero-art img:first-child {
    left: 14px;
    right: auto;
  }

  .turnaround-hero-art img:nth-child(2) {
    left: 110px;
    right: auto;
  }

  .turnaround-hero-art span {
    right: 10px;
    width: 125px;
    height: 70px;
  }

  .turnaround-content {
    padding-bottom: 52px;
  }

  .turnaround-intro {
    gap: 24px;
  }

  .turnaround-card {
    padding: 16px;
  }

  .turnaround-week {
    grid-template-columns: repeat(2, 1fr);
  }

  .turnaround-week div {
    min-height: 82px;
  }

  .turnaround-week span {
    writing-mode: horizontal-tb;
    transform: none;
    grid-column: 1 / -1;
    min-height: 30px;
    background: #eef3f5;
  }

  .angies-list b,
  .yellow-pages b,
  .manta b,
  .yelp b {
    font-size: 26px;
  }

  .support-copy,
  .payment {
    padding-top: 0;
  }

  .footer-divider {
    margin: 28px auto 0;
  }

  .footer-utility {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    padding: 20px 0 22px;
  }

  .footer-download,
  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cards {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .product-detail {
    padding: 34px 0 30px;
  }

  .product-title {
    margin-bottom: 24px;
  }

  .product-media {
    gap: 16px;
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .thumbs button {
    width: 100%;
    height: 90px;
  }

  .main-product-image {
    height: 260px;
  }

  .product-points {
    margin-left: 0;
    font-size: 12px;
  }

  .product-price-note {
    margin-left: 0;
  }

  .calculator-panel {
    margin-top: 0;
  }

  .calculator-panel fieldset,
  .shipping-box fieldset,
  .zip-row {
    grid-template-columns: 1fr;
  }

  .calculator-panel fieldset label + label,
  .shipping-box fieldset label + label {
    border-left: 2px solid #14a7e8;
    border-top: 0;
  }

  .product-actions {
    flex-direction: column;
    padding: 0 20px;
  }

  .frequently-viewed {
    padding-bottom: 42px;
  }

  .frequently-viewed h2 {
    display: grid;
    gap: 8px;
    font-size: 17px;
  }

  .viewed-grid {
    gap: 16px;
  }

  .viewed-grid img {
    height: 190px;
  }

  .info-tabs {
    gap: 10px;
  }

  .template-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .search {
    width: 100%;
    min-width: 0;
  }

  .search input {
    min-width: 0;
    padding-inline: 12px;
  }

  .main-nav .page-width {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 10px 14px;
  }

  .main-nav a {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #dfe9ef;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .main-nav .nav-dropdown {
    height: auto;
  }

  .main-nav .nav-dropdown-toggle {
    height: 38px;
    width: 100%;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid #dfe9ef;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
  }

  .main-nav .nav-dropdown-menu {
    left: 0;
    min-width: 210px;
  }

  .main-nav .nav-cta {
    grid-column: 1 / -1;
    width: auto;
    min-width: 0;
    height: 38px;
    margin: 0;
    padding-inline: 18px;
    border-color: var(--deep-blue);
    color: #fff;
    background: var(--deep-blue);
    border-radius: 4px;
  }

  .hero img {
    min-height: 190px;
  }

  .eyebrow {
    font-size: clamp(10px, 3.1vw, 13px);
  }

  .review-meta {
    gap: 10px;
    flex-direction: column;
    overflow-x: visible;
    justify-content: center;
    white-space: normal;
    padding-bottom: 4px;
  }

  .rating {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
  }

  .rating img {
    width: min(160px, 58vw);
  }

  .rating span {
    white-space: normal;
  }

  .category-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    margin-top: 16px;
  }

  .process-content ol {
    grid-template-columns: 1fr;
  }

  .process-content li + li:before {
    display: none;
  }

  .signup {
    gap: 28px;
    padding: 46px 0;
  }

  .design-service {
    grid-template-columns: 1fr;
    display: grid;
    padding: 24px;
  }

  .design-service a {
    margin-top: 18px;
    width: 100%;
  }

  .service-hero {
    padding: 36px 0 42px;
  }

  .service-details article {
    padding: 22px;
  }

  .service-breadcrumb {
    padding-top: 22px;
  }

  .service-title-band {
    padding: 36px 0 40px;
  }

  .service-title-band p {
    font-size: 18px;
  }

  .business-title-band h1 {
    max-width: none;
  }

  .business-intro {
    padding-top: 26px;
  }

  .business-benefits h2 {
    margin: 24px 0 26px;
    font-size: 20px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-list {
    gap: 14px;
  }

  .industry-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    min-height: 44px;
    font-size: 12px;
  }

  .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .eddm-copy {
    padding-bottom: 64px;
  }

  .contact-hero-inner {
    padding-top: 28px;
  }

  .contact-hero h1 {
    font-size: 24px;
  }

  .contact-hero-art {
    height: 168px;
    justify-content: center;
  }

  .contact-hero-art img {
    object-position: center;
  }

  .contact-help {
    padding: 42px 0 58px;
  }

  .contact-card-grid,
  .support-detail-grid {
    grid-template-columns: 1fr;
  }

  .support-phone {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    min-height: 92px;
    padding: 18px;
  }

  .support-phone-icon,
  .support-detail-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .support-phone-icon svg,
  .support-detail-icon svg {
    width: 28px;
    height: 28px;
  }

  .support-phone-copy b {
    font-size: clamp(24px, 7vw, 32px);
  }

  .support-detail-item {
    min-height: auto;
    padding: 20px;
  }

  .support-detail-wide .support-detail-icon::after {
    display: none;
  }

  .contact-card-grid {
    max-width: 360px;
    gap: 18px;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-card h2,
  .contact-card p {
    min-height: 0;
  }

  .contact-support {
    margin-bottom: 44px;
  }

  .support-photo {
    min-height: 230px;
  }

  .support-photo img {
    min-height: 230px;
  }

  .support-info {
    padding: 28px 22px;
  }

  .support-phone {
    font-size: 24px;
  }

  .contact-map {
    margin-bottom: 46px;
  }

  .location-iframe {
    height: 300px;
  }

  .shopping-page {
    padding: 42px 0 70px;
  }

  .shopping-page h1 {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .checkout-steps,
  .checkout-steps.compact {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }

  .checkout-steps:before {
    display: none;
  }

  .checkout-steps li {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .cart-head {
    display: none;
  }

  .cart-row,
  .cart-widgets,
  .checkout-layout,
  .form-grid,
  .comments {
    grid-template-columns: 1fr;
  }

  .cart-row {
    gap: 16px;
  }

  .cart-actions {
    display: flex;
    gap: 12px;
  }

  .cart-detail,
  .cart-price {
    font-size: 15px;
  }

  .cart-widgets {
    gap: 24px;
    margin-bottom: 52px;
  }

  .shopping-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .shopping-buttons a {
    width: 100%;
  }

  .checkout-warning {
    margin-left: 0;
  }

  .receipt-page {
    padding: 32px 0 58px;
  }

  .receipt-shell,
  .receipt-top,
  .receipt-address-grid,
  .receipt-closing {
    grid-template-columns: 1fr;
  }

  .receipt-shell {
    gap: 26px;
  }

  .receipt-sidebar {
    padding: 18px;
    background: #fff;
    border: 1px solid #e6e6e6;
  }

  .receipt-sidebar h1 {
    margin-bottom: 18px;
  }

  .receipt-sidebar li {
    margin-bottom: 13px;
  }

  .receipt-content > h1 {
    margin-left: 0;
  }

  .receipt-card {
    max-width: 100%;
    overflow: hidden;
    padding: 26px 18px 34px;
  }

  .receipt-download h2 {
    margin-top: 8px;
  }

  .receipt-meta {
    flex-direction: column;
    margin-top: 34px;
  }

  .receipt-next {
    margin-top: 34px;
  }

  .receipt-table {
    min-width: 720px;
  }

  .receipt-table-wrap {
    min-width: 0;
    width: 100%;
  }

  .receipt-closing {
    gap: 14px;
  }

  .receipt-totals {
    width: 100%;
  }

  .receipt-fraud {
    margin-top: 36px;
  }

  .submit-order {
    margin-left: 0;
  }

  .comments {
    gap: 8px;
  }

  .service-products {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 60px;
  }

  .service-product-card img {
    height: 240px;
  }

  .service-copy {
    padding: 0 0 70px;
  }

  .account-dialog {
    padding: 30px 22px;
  }

  .account-actions {
    grid-template-columns: 1fr;
  }

  .login-page {
    padding: 0 0 72px;
  }

  .login-hero {
    padding: 46px 0 30px;
  }

  .login-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .login-hero h1 {
    font-size: 34px !important;
  }

  .login-hero p,
  .register-heading p {
    font-size: 16px !important;
  }

  .login-hero-proof {
    padding: 18px;
  }

  .login-section + .login-section {
    margin-top: 48px;
  }

  .login-column {
    padding: 24px;
  }

  .login-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .register-panel {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .login-form button,
  .blue-button {
    width: 100%;
  }

  .custom-quote-page {
    padding: 24px 0 70px;
  }

  .custom-quote-page h1 {
    margin-bottom: 32px;
    font-size: 16px;
  }

  .quote-intro ul {
    margin-inline: 0;
    padding: 16px 22px 24px 38px;
  }

  .quote-form {
    gap: 34px;
    padding: 32px 0 0;
  }

  .quote-form label,
  .quote-form fieldset,
  .quote-side label,
  .quote-radios,
  .quote-radios.compact,
  .quote-qty {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-radios,
  .quote-radios.compact,
  .quote-qty {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .quote-radios legend,
  .quote-qty legend {
    flex: 0 0 100%;
  }

  .quote-qty input {
    width: calc((100% - 16px) / 3);
  }

  .quote-print-collage {
    height: 230px;
  }

  .quote-large-display,
  .quote-poster-display,
  .quote-packaging-display {
    height: 240px;
    margin-top: 12px;
  }

  .package-box.pink {
    left: 14%;
    width: 96px;
    height: 112px;
  }

  .package-box.teal {
    left: 39%;
    width: 94px;
    height: 92px;
  }

  .package-box.orange {
    right: 10%;
    width: 104px;
    height: 118px;
  }

  .captcha-box {
    width: 100%;
  }

  .account-page {
    padding: 32px 0 44px;
  }

  .account-success {
    padding: 12px 18px;
  }

  .account-sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .history-panel h1 {
    font-size: 22px;
  }

  .history-content {
    padding: 42px 18px 22px;
  }

  .date-search,
  .date-search label,
  .order-meta,
  .account-detail-grid,
  .artwork-content,
  .password-content {
    grid-template-columns: 1fr;
  }

  .detail-content,
  .artwork-content,
  .password-content,
  .proof-content,
  .tracking-content,
  .studio-content,
  .quotes-content {
    padding: 34px 18px;
  }

  .detail-content > p span {
    float: none;
    display: block;
    margin-top: 6px;
  }

  .drop-zone {
    width: 100%;
  }

  .password-content label {
    display: grid;
    gap: 6px;
  }

  .password-content button {
    grid-column: 1;
  }

  .proof-actions {
    justify-content: stretch;
  }

  .proof-actions label {
    display: grid;
    justify-content: stretch;
  }

  .proof-actions input,
  .proof-actions button {
    width: 100%;
  }

  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 10px 0 20px;
  }

  .quotes-content p {
    margin-top: 48px;
  }

  .order-list {
    gap: 30px;
    margin-top: 36px;
  }

  .order-card {
    padding: 24px 18px;
  }

  .order-meta,
  .order-card p {
    font-size: 15px;
  }

  .order-card button {
    width: 100%;
  }

  .bleed-page {
    padding: 28px 0 120px;
  }

  .bleed-page h1,
  .bleed-section h2 {
    font-size: 24px;
  }

  .spec-grid,
  .template-layout,
  .proof-grid,
  .foil-layout {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    gap: 28px;
    margin-top: 28px;
  }

  .spec-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .spec-icon {
    width: 58px;
    height: 58px;
  }

  .bleed-section {
    margin-top: 52px;
  }

  .template-layout {
    gap: 32px;
    margin-top: 34px;
  }

  .guideline-copy,
  .proof-grid,
  .proof-grid article:nth-child(4) {
    gap: 28px;
  }

  .proof-grid {
    padding: 0;
    margin-top: 32px;
  }

  .foil-section {
    margin-top: 62px;
  }

  .foil-layout {
    gap: 28px;
  }

  .foil-diagram {
    width: 100%;
    grid-template-columns: minmax(74px, 1fr) 28px minmax(74px, 1fr) 48px;
    grid-template-rows: 74px 36px 74px;
    gap: 12px;
  }

  .foil-block {
    width: 100%;
    height: 74px;
    font-size: 14px;
  }

  .foil-plus,
  .foil-equals {
    font-size: 24px;
  }

  .foil-drive {
    width: 46px;
    height: 26px;
  }

  .foil-copy h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .foil-copy p {
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .rgb-hero {
    min-height: 130px;
    margin-top: 18px;
  }

  .rgb-hero h1 {
    font-size: 25px;
  }

  .rgb-content {
    padding: 34px 0 72px;
  }

  .rgb-intro,
  .spectrum-panel {
    grid-template-columns: 1fr;
  }

  .rgb-intro {
    gap: 32px;
  }

  .rgb-intro h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .rgb-intro p + p {
    margin-top: 22px;
  }

  .color-key {
    grid-template-columns: repeat(4, 56px);
    grid-template-rows: 56px 30px 56px 30px;
    gap: 8px;
  }

  .dot {
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  .color-key b {
    font-size: 24px;
  }

  .spectrum-panel {
    gap: 34px;
    margin-top: 42px;
    padding: 28px 18px;
  }

  .spectrum-left h2,
  .spectrum-left h3,
  .info-band h2 {
    font-size: 20px;
  }

  .rgb-overlap,
  .cmy-overlap {
    margin-left: auto;
    margin-right: auto;
  }

  .gamut-wheel {
    width: 170px;
    height: 170px;
  }

  .gamut-wheel span {
    right: -54px;
    font-size: 9px;
  }

  .rgb-copy {
    margin-top: 44px;
  }

  .halftone-dots {
    flex-wrap: wrap;
    gap: 14px;
  }

  .halftone-dots span {
    width: 58px;
    height: 58px;
  }

}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body.drawer-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 1px 12px rgba(22, 43, 58, .08);
  }

  .help-strip,
  .main-nav,
  .sparkle-mark,
  .header-actions > a,
  .header-divider {
    display: none;
  }

  .header-main {
    width: 100%;
    height: auto;
    min-height: 116px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-areas:
      "menu logo cart"
      "search search search";
    gap: 8px 10px;
    align-items: center;
    padding: 8px 14px 12px;
  }

  .product-layout,
  .product-media,
  .viewed-grid,
  .info-tabs {
    grid-template-columns: 1fr;
  }

  .frequently-viewed h2,
  .viewed-grid,
  .info-tabs,
  .template-table {
    margin-left: 0;
  }

  .mobile-menu-toggle {
    grid-area: menu;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 6px;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    grid-area: 1 / 1;
    width: 22px;
    height: 2px;
    background: #17364d;
    border-radius: 999px;
    transition: transform 300ms ease, opacity 300ms ease;
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  body.drawer-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.drawer-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.drawer-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .brand {
    grid-area: logo;
    justify-self: center;
  }

  .brand img {
    width: clamp(180px, 50vw, 230px);
    margin: 0 auto;
  }

  .header-actions {
    grid-area: cart;
    min-width: 0;
    justify-self: end;
    display: block;
  }

  .cart {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px;
  }

  .cart svg {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    position: absolute;
    top: 7px;
    right: 5px;
    min-width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #ec2835;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
  }

  .search {
    grid-area: search;
    width: 100%;
    height: 44px;
    min-width: 0;
    border-color: #d7e3ea;
    border-radius: 4px;
    background: #fff;
  }

  .search input {
    min-width: 0;
    padding-inline: 14px;
    font-size: 14px;
  }

  .search button {
    width: 48px;
    min-width: 48px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(8, 20, 31, .52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .mobile-overlay[hidden] {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: min(88vw, 356px);
    display: flex;
    flex-direction: column;
    background: #f8fbfd;
    box-shadow: 24px 0 44px rgba(11, 29, 43, .26);
    transform: translateX(-104%);
    transition: transform 300ms ease;
    will-change: transform;
    border-radius: 0 18px 18px 0;
    overflow: hidden;
  }

  body.drawer-open .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.drawer-open .mobile-drawer {
    transform: translateX(0);
  }

  .mobile-drawer-head {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #edf8fe 100%);
    border-bottom: 1px solid #dceaf2;
  }

  .mobile-drawer-brand {
    min-width: 0;
    display: grid;
    gap: 6px;
  }

  .mobile-drawer-head img {
    width: 164px;
    max-width: 100%;
  }

  .mobile-drawer-brand span {
    color: #6c7d89;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
  }

  .mobile-drawer-close {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid #d5e4ec;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(10, 70, 105, .1);
  }

  .mobile-drawer-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #213240;
  }

  .mobile-drawer-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-drawer-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-drawer-nav {
    display: grid;
    gap: 4px;
    padding: 16px 14px 8px;
    overflow-y: auto;
  }

  .mobile-drawer-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #223240;
    font-size: 15px;
    font-weight: 800;
    background: transparent;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 260ms ease, transform 260ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  }

  .mobile-drawer-nav a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #9ab1bf;
    border-right: 2px solid #9ab1bf;
    transform: rotate(45deg);
  }

  .mobile-drawer-nav a.mobile-drawer-primary {
    color: #fff;
    background: #059bd3;
    box-shadow: 0 12px 22px rgba(5, 155, 211, .22);
  }

  .mobile-drawer-nav a.mobile-drawer-primary::after {
    border-color: #fff;
  }

  .mobile-drawer-label {
    margin: 14px 8px 4px;
    color: #8a9ba8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-drawer-nav a:hover,
  .mobile-drawer-nav a:focus-visible {
    color: #0078af;
    background: #fff;
    border-color: #dceaf2;
    outline: none;
  }

  body.drawer-open .mobile-drawer-nav a {
    opacity: 1;
    transform: translateX(0);
  }

  body.drawer-open .mobile-drawer-nav a:nth-of-type(1) { transition-delay: 70ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(2) { transition-delay: 95ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(3) { transition-delay: 120ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(4) { transition-delay: 145ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(5) { transition-delay: 170ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(6) { transition-delay: 195ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(7) { transition-delay: 220ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(8) { transition-delay: 245ms; }
  body.drawer-open .mobile-drawer-nav a:nth-of-type(9) { transition-delay: 270ms; }

  .mobile-drawer-support {
    margin: auto 14px 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid #dceaf2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(19, 57, 79, .07);
  }

  .mobile-drawer-support strong {
    color: #263744;
    font-size: 14px;
  }

  .mobile-drawer-support a {
    color: #008fd0;
    font-size: 14px;
    font-weight: 900;
  }

  .category-row {
    display: none;
  }

  .page-width,
  .shopping-page,
  .account-page,
  .receipt-page .page-width,
  .custom-quote-page .page-width,
  .contact-page .page-width,
  .service-page .page-width,
  .product-page .page-width {
    max-width: 100%;
  }

  .cart-table,
  .history-panel,
  .receipt-card,
  .quote-form,
  .checkout-form,
  .order-summary,
  .contact-map,
  .service-products,
  .business-benefits,
  .product-detail {
    min-width: 0;
    max-width: 100%;
  }

  .cart-row,
  .checkout-layout,
  .receipt-shell,
  .account-layout,
  .quote-form,
  .contact-support,
  .support-detail-grid,
  .service-products,
  .business-intro,
  .business-benefits,
  .eddm-copy {
    width: 100%;
  }

  .receipt-account-sidebar.account-sidebar,
  .account-sidebar {
    padding: 18px 0 0;
  }

  .account-sidebar button {
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .receipt-table-wrap,
  .account-table-wrap,
  .quote-table-wrap,
  .template-table,
  .order-table-card {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .order-table-card {
    padding: 18px;
  }

  .receipt-download p {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .receipt-download strong,
  .receipt-meta,
  .receipt-address-box p,
  .order-card,
  .order-card p,
  .cart-detail,
  .support-info,
  .contact-card,
  .business-intro,
  .eddm-copy {
    overflow-wrap: anywhere;
  }

  .receipt-company img,
  .contact-hero-art img,
  .support-photo img,
  .quote-print-collage img,
  .service-product-card img,
  .main-product-image img {
    max-width: 100%;
  }

  .order-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .date-search button,
  .submit-order,
  .shopping-buttons a,
  .product-actions a,
  .product-actions button,
  .quote-submit,
  .account-actions a {
    min-height: 44px;
  }
}

@media (min-width: 769px) {
  .mobile-overlay,
  .mobile-drawer,
  .mobile-menu-toggle {
    display: none !important;
  }
}

.quote-radios {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.quote-qty {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 36px !important;
  align-items: center;
  width: 100%;
}

.quote-qty-label,
.quote-radio-label,
.quote-qty legend,
.quote-radios legend {
  display: block;
  flex: 0 0 90px;
}

.quote-qty-label {
  color: #1f2a33;
  font-size: 16px;
  font-weight: 900;
}

.quote-radio-label {
  color: #6d7277;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.quote-qty input {
  flex: 0 0 118px !important;
  width: 118px !important;
  min-width: 0 !important;
  height: 36px;
}

.quote-radios {
  gap: 24px;
}

.quote-radios label,
.quote-radios.compact label {
  flex: 0 0 auto;
}

.quote-full-color.custom-quote-page {
  width: min(1220px, calc(100% - 44px));
  padding: 28px 0 120px;
}

.quote-full-color.custom-quote-page h1 {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 46px;
  color: #fff;
  background: #1b4f86;
  font-size: 18px;
  font-weight: 800;
}

.quote-full-color .quote-intro p {
  max-width: 900px;
  margin-bottom: 28px;
  color: #333b42;
  font-size: 13px;
}

.quote-full-color .quote-intro h2 {
  padding-bottom: 16px;
  color: #14a4e3;
  font-size: 18px;
  font-weight: 800;
}

.quote-full-color .quote-intro ul {
  padding-top: 14px;
  padding-bottom: 34px;
  padding-left: calc(50% - 150px);
}

.quote-full-color .quote-form {
  grid-template-columns: minmax(520px, 1fr) minmax(390px, .88fr);
  gap: 72px;
  margin-top: 0;
  padding: 38px 52px 0;
}

.quote-full-color .quote-fields,
.quote-full-color .quote-side {
  gap: 22px;
}

.quote-full-color .quote-form label,
.quote-full-color .quote-form fieldset {
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  font-size: 12px;
}

.quote-full-color .quote-form input,
.quote-full-color .quote-form select {
  height: 31px;
}

.quote-full-color .quote-form textarea {
  min-height: 144px;
}

.quote-full-color .quote-qty {
  gap: 18px 40px !important;
}

.quote-full-color .quote-qty input {
  flex-basis: 96px !important;
  width: 96px !important;
  height: 28px;
}

.quote-full-color .quote-radios {
  gap: 24px;
}

.quote-full-color .quote-side label {
  grid-template-columns: 96px minmax(0, 1fr);
}

.quote-full-color .quote-radios.compact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
}

.quote-full-color .quote-radios.compact legend {
  flex: 0 0 190px;
  display: block;
}

.quote-full-color .quote-print-collage {
  height: 240px;
  margin-top: 72px;
}

.quote-full-color .quote-print-collage img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.quote-full-color .quote-side button[type="submit"] {
  justify-self: center;
  min-width: 58px;
  height: 31px;
  margin-top: 28px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #22b9e5;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .quote-full-color .quote-form {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-inline: 0;
  }

  .quote-full-color .quote-intro ul {
    padding-left: 34px;
  }
}

.portfolio-page {
  background: #fff;
  color: #262b30;
  font-family: "Inter", Helvetica, sans-serif;
}

.portfolio-page .page-width {
  width: min(1320px, calc(100% - 64px));
}

.portfolio-breadcrumb {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.portfolio-breadcrumb a {
  color: inherit;
}

.portfolio-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  padding: 0 54px;
  background: #e5f7fc;
}

.portfolio-hero h1 {
  margin: 0 0 16px;
  color: #303235;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.portfolio-hero p {
  margin: 0;
  color: #303235;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.portfolio-hero img {
  width: 100%;
  height: auto;
}

.portfolio-showcase {
  margin-top: 72px;
  margin-bottom: 0;
  border: 1px solid #dbe5eb;
  border-radius: 4px;
  background: #f7fbfd;
  box-shadow: 0 18px 42px rgba(26, 54, 72, .12);
  overflow: hidden;
}

.portfolio-actions {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.portfolio-actions a {
  min-width: 154px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  background: #df1680;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-actions a + a {
  background: #069bd4;
}

.portfolio-panel {
  background: #fff;
}

.portfolio-panel-head {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, #088fc8 0%, #0aa2db 100%);
  text-align: center;
}

.portfolio-panel-head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
}

.portfolio-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.portfolio-frame {
  position: relative;
  margin: 0;
  padding: 24px 24px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(246, 250, 252, .98) 100%),
    radial-gradient(circle at top left, rgba(10, 162, 219, .13), transparent 44%);
}

.portfolio-slides {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #e3edf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 55, 76, .12);
}

.portfolio-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.portfolio-slides img.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.portfolio-caption {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 24px;
  z-index: 2;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 28px rgba(25, 52, 68, .14);
  backdrop-filter: blur(8px);
}

.portfolio-caption strong,
.portfolio-caption span,
.portfolio-caption em {
  display: block;
}

.portfolio-caption strong {
  color: #1f2d38;
  font-size: 15px;
  font-weight: 900;
}

.portfolio-caption span {
  margin-top: 4px;
  color: #647480;
  font-size: 12px;
  font-weight: 700;
}

.portfolio-caption em {
  flex: 0 0 auto;
  color: #0a8fc7;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.portfolio-slider {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 0;
  background: #f7fbfd;
}

.portfolio-slider button,
.portfolio-frame .portfolio-prev,
.portfolio-frame .portfolio-next {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.portfolio-frame .portfolio-prev,
.portfolio-frame .portfolio-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(17, 45, 62, .2);
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-frame .portfolio-prev {
  left: 46px;
}

.portfolio-frame .portfolio-next {
  right: 46px;
}

.portfolio-frame .portfolio-prev::before,
.portfolio-frame .portfolio-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #8b9aa4;
  border-left: 3px solid #8b9aa4;
}

.portfolio-frame .portfolio-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.portfolio-frame .portfolio-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.portfolio-frame .portfolio-prev:hover,
.portfolio-frame .portfolio-next:hover {
  background: #0aa2db;
  box-shadow: 0 14px 30px rgba(10, 162, 219, .32);
}

.portfolio-frame .portfolio-prev:hover::before,
.portfolio-frame .portfolio-next:hover::before {
  border-color: #fff;
}

.portfolio-slider button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d5e0e6;
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.portfolio-slider button.active {
  width: 36px;
  border-radius: 999px;
  background: #0aa2db;
}

.portfolio-slider button:hover {
  transform: translateY(-1px);
}

.portfolio-slider button:focus-visible,
.portfolio-frame .portfolio-prev:focus-visible,
.portfolio-frame .portfolio-next:focus-visible {
  outline: 2px solid #0aa2db;
  outline-offset: 3px;
}

.portfolio-empty {
  min-height: 300px;
  background: #f6f6f6;
}

@media (max-width: 900px) {
  .portfolio-page .page-width {
    width: min(100% - 28px, 680px);
  }

  .portfolio-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 24px;
  }

  .portfolio-actions {
    flex-direction: column;
    gap: 14px;
    padding: 24px 0;
  }

  .portfolio-frame {
    padding: 14px;
  }

  .portfolio-slides {
    min-height: 340px;
  }

  .portfolio-caption {
    position: static;
    margin-top: 12px;
  }

  .portfolio-frame .portfolio-prev {
    left: 22px;
  }

  .portfolio-frame .portfolio-next {
    right: 22px;
  }
}

.design-tab-panel[hidden] {
  display: none;
}

.design-tabs button {
  cursor: pointer;
}

.design-tabs button:focus-visible {
  outline: 2px solid #0b75b7;
  outline-offset: 2px;
}

/* Portfolio redesign inspired by the modern custom quote page */
.portfolio-modern {
  width: 100%;
  padding: 0 0 96px;
  color: #293b47;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.portfolio-modern .page-width {
  width: min(1180px, calc(100% - 64px));
}

.portfolio-modern .portfolio-hero {
  min-height: 0;
  display: block;
  grid-template-columns: none;
  align-items: initial;
  padding: 44px 0 66px;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.portfolio-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  gap: 44px;
  align-items: center;
}

.portfolio-modern .portfolio-breadcrumb {
  min-height: 0;
  margin-bottom: 22px;
  display: flex;
  gap: 9px;
  color: #526979;
  font-size: 14px;
  font-weight: 900;
}

.portfolio-modern .portfolio-breadcrumb a {
  color: #057da5;
}

.portfolio-modern .portfolio-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 58px) !important;
  line-height: 1.04;
  font-weight: 950;
}

.portfolio-modern .portfolio-hero p {
  max-width: 690px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

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

.portfolio-hero-actions a,
.portfolio-bottom-cta > a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  color: #fff;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .22);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.portfolio-hero-actions a + a {
  background: #e21483;
  box-shadow: 0 12px 24px rgba(226, 20, 131, .18);
}

.portfolio-hero-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.portfolio-hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
  background: #eef9fd;
}

.portfolio-hero-card strong {
  color: #e21483;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.portfolio-hero-card span {
  display: block;
  margin-top: 6px;
  color: #123f70;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -28px;
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  color: #526979;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.portfolio-intro h2 {
  margin: 12px 0 0;
  color: #123f70;
  font-size: clamp(28px, 3vw, 36px) !important;
  line-height: 1.12;
}

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

.portfolio-intro li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #526979;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.portfolio-intro li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #08a7d8;
  box-shadow: 0 0 0 5px rgba(8, 167, 216, .12);
}

.portfolio-work {
  display: grid;
  gap: 30px;
  margin-top: 36px;
}

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

.portfolio-stat-grid article {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 63, 112, .08);
}

.portfolio-stat-grid strong {
  color: #e21483;
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.portfolio-stat-grid span {
  color: #123f70;
  font-size: 15px;
  font-weight: 900;
}

.portfolio-modern .portfolio-panel {
  overflow: hidden;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 63, 112, .08);
}

.portfolio-modern .portfolio-panel-head {
  min-height: 0;
  display: block;
  padding: 30px 32px 22px;
  color: #123f70;
  background: #fff;
  text-align: left;
}

.portfolio-modern .portfolio-panel-head span {
  width: max-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #057da5;
  background: #f4fbfe;
  box-shadow: inset 0 0 0 1px rgba(2, 148, 221, .16);
  font-size: 12px;
  letter-spacing: 0;
}

.portfolio-modern .portfolio-panel h2 {
  margin: 14px 0 8px;
  color: #123f70;
  font-size: clamp(28px, 3vw, 36px) !important;
  line-height: 1.1;
}

.portfolio-modern .portfolio-panel-head p {
  max-width: 660px;
  margin: 0;
  color: #526979;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.55;
}

.portfolio-modern .portfolio-frame {
  padding: 0 30px 0;
  background: #fff;
}

.portfolio-modern .portfolio-slides {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid #d5e6ed;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 250, 252, .98)),
    radial-gradient(circle at top left, rgba(10, 162, 219, .13), transparent 44%);
  box-shadow: none;
}

.portfolio-modern .portfolio-caption {
  left: 54px;
  right: 54px;
  bottom: 24px;
  border: 1px solid rgba(20, 55, 76, .12);
}

.portfolio-modern .portfolio-slider {
  background: #fff;
}

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

.portfolio-project-grid article {
  overflow: hidden;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 63, 112, .08);
}

.portfolio-project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  background: #eef9fd;
}

.portfolio-project-grid div {
  padding: 22px 24px 26px;
}

.portfolio-project-grid span {
  color: #057da5;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

.portfolio-project-grid h3 {
  margin: 10px 0 0;
  color: #123f70;
  font-size: 21px;
  line-height: 1.25;
}

.portfolio-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.portfolio-bottom-cta h2 {
  margin: 12px 0 8px;
  color: #123f70;
  font-size: clamp(26px, 3vw, 34px) !important;
  line-height: 1.12;
}

.portfolio-bottom-cta p {
  max-width: 660px;
  margin: 0;
  color: #526979;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .portfolio-modern .page-width {
    width: min(100% - 28px, 680px);
  }

  .portfolio-hero-inner,
  .portfolio-intro,
  .portfolio-bottom-cta {
    grid-template-columns: 1fr;
  }

  .portfolio-modern .portfolio-hero {
    padding: 34px 0 52px;
  }

  .portfolio-stat-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-project-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-modern .portfolio-frame {
    padding: 0 16px;
  }

  .portfolio-modern .portfolio-slides {
    min-height: 360px;
  }

  .portfolio-modern .portfolio-caption {
    position: static;
    margin-top: 12px;
  }

  .portfolio-bottom-cta > a {
    width: 100%;
  }
}

.mailing-page {
  color: #101820;
  background: #fff;
  font-family: "Inter", Helvetica, sans-serif;
}

.mailing-page .page-width {
  width: min(1090px, calc(100% - 56px));
}

.mailing-hero {
  padding-top: 48px;
}

.mailing-breadcrumb {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 46px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.mailing-breadcrumb a {
  color: inherit;
}

.mailing-hero-band {
  background: #d7eaf5;
}

.mailing-hero-inner {
  min-height: 250px;
  display: flex;
  align-items: center;
  background: #d7eaf5;
}

.mailing-hero-copy h1 {
  margin: 0 0 18px;
  color: #2b2d31;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
}

.mailing-hero-copy p {
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
}

.mailing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 480px;
  gap: 48px;
  padding: 26px 0 72px;
  border-top: 6px solid #1674b9;
}

.mailing-main-copy,
.mailing-pricing,
.mailing-info,
.mailing-faq {
  font-size: 12px;
  line-height: 1.25;
}

.mailing-main-copy p,
.mailing-main-copy ol,
.mailing-main-copy ul,
.mailing-card p,
.mailing-info-copy p,
.mailing-info-copy ul,
.mailing-faq p {
  margin-top: 0;
  margin-bottom: 12px;
}

.mailing-main-copy strong,
.mailing-card strong {
  color: #e31578;
}

.mailing-main-copy h2,
.mailing-info-copy h3 {
  margin: 14px 0 5px;
  color: #111;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
}

.mailing-main-copy ol,
.mailing-main-copy ul,
.mailing-info-copy ul {
  padding-left: 18px;
}

.mailing-pricing {
  display: grid;
  gap: 22px;
  align-content: start;
}

.mailing-card {
  background: #d8d8d8;
}

.mailing-card h2 {
  margin: 0;
  padding: 8px 16px;
  color: #fff;
  background: #08417f;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.mailing-price-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
}

.mailing-price-products ul {
  margin: 0;
  padding: 16px 22px;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
}

.mailing-price-products ul + ul {
  border-left: 1px solid #bdbdbd;
}

.mailing-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: #050505;
}

.mailing-price-row strong {
  display: grid;
  place-items: center;
  min-height: 64px;
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.mailing-price-row span {
  font-size: 12px;
}

.mailing-card > p {
  padding: 12px 14px;
  color: #111;
  font-size: 11px;
}

.mailing-list-card {
  padding-bottom: 34px;
}

.mailing-list-card p {
  padding: 0 18px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.mailing-list-card p:first-of-type {
  padding-top: 18px;
}

.mailing-info {
  padding-bottom: 26px;
  border-top: 3px solid #174c85;
  border-bottom: 2px solid #9c9c9c;
}

.mailing-info > h2,
.mailing-faq > h2 {
  margin: 12px 0 8px;
  padding-left: 18px;
  color: #111;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.mailing-info-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-top: 3px solid #174c85;
}

.mailing-info-tabs {
  display: grid;
  align-content: start;
  border-right: 2px solid #8f8f8f;
}

.mailing-info-tabs button {
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: #fff;
  color: #111;
  text-align: left;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.mailing-info-tabs .active {
  background: #f7f7f7;
}

.mailing-info-copy {
  padding: 22px 24px 0 34px;
  color: #111;
}

.mailing-info-copy h3 {
  margin-top: 0;
  font-size: 16px;
}

.mailing-faq {
  padding: 0 0 58px;
}

.mailing-faq > h2 {
  margin: 0 0 28px;
  padding: 15px 0 10px 18px;
  border-bottom: 2px solid #8a8a8a;
}

.mailing-faq-list {
  border: 1px solid #818181;
}

.mailing-faq details {
  border-bottom: 1px solid #818181;
}

.mailing-faq details:last-child {
  border-bottom: 0;
}

.mailing-faq summary {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px 0 14px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.mailing-faq summary::-webkit-details-marker {
  display: none;
}

.mailing-faq summary::after {
  content: "+";
  color: #777;
  font-size: 22px;
  font-weight: 400;
}

.mailing-faq details[open] summary::after {
  content: "-";
}

.mailing-faq details p {
  margin: -4px 44px 16px 14px;
  color: #333;
}

.mailing-join {
  padding: 42px 0 58px;
  color: #fff;
  background: #e70d79;
  text-align: center;
}

.mailing-join h2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 46px;
  margin: 0;
  color: #fff;
  font-size: 39px;
  line-height: 1;
  font-weight: 800;
}

.mailing-join h2::before,
.mailing-join h2::after {
  content: "";
  height: 5px;
  background: #fff;
}

.mailing-join p {
  margin: 18px 0 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.mailing-join-form {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
}

.mailing-join-form input,
.mailing-join-form button {
  height: 70px;
  border: 0;
  font-size: 18px;
  font-weight: 900;
}

.mailing-join-form input {
  padding: 0 18px;
  color: #111;
}

.mailing-join-form button {
  color: #fff;
  background: #064380;
  cursor: pointer;
}

@media (max-width: 900px) {
  .mailing-hero {
    padding-top: 18px;
  }

  .mailing-breadcrumb {
    height: 40px;
  }

  .mailing-hero-inner {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mailing-hero-copy h1 {
    font-size: 25px;
  }

  .mailing-hero-copy p {
    font-size: 15px;
  }

  .mailing-intro,
  .mailing-info-grid {
    grid-template-columns: 1fr;
  }

  .mailing-pricing {
    max-width: 520px;
  }

  .mailing-info-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 2px solid #8f8f8f;
  }

  .mailing-info-tabs button {
    min-height: 48px;
    font-size: 18px;
  }

  .mailing-join h2 {
    gap: 22px;
    font-size: 30px;
  }

  .mailing-join-form {
    grid-template-columns: 1fr;
  }
}

.mailing-page {
  color: #21313f;
  background: #fff;
  font-family: "Inter", Helvetica, sans-serif;
}

.mailing-hero {
  padding-top: 18px;
}

.mailing-breadcrumb {
  height: 52px;
  color: #2b3540;
  font-size: 14px;
}

.mailing-hero-band {
  background: #d9edf7;
  border-top: 1px solid #c8e2ef;
  border-bottom: 1px solid #c8e2ef;
}

.mailing-hero-inner {
  min-height: 260px;
  background: transparent;
}

.mailing-hero-copy {
  max-width: 690px;
}

.mailing-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #0b76ad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mailing-hero-copy h1 {
  margin-bottom: 14px;
  color: #1f2a33;
  font-size: 40px;
  letter-spacing: 0;
}

.mailing-hero-copy p {
  max-width: 610px;
  color: #344654;
  font-size: 18px;
  line-height: 1.5;
}

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

.mailing-hero-actions a {
  min-width: 148px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #0d74ac;
  border-radius: 4px;
  color: #fff;
  background: #0b75b7;
  font-size: 13px;
  font-weight: 800;
}

.mailing-hero-actions a + a {
  color: #0b75b7;
  background: #fff;
}

.mailing-intro {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  padding: 54px 0 64px;
  border-top: 0;
}

.mailing-main-copy,
.mailing-pricing,
.mailing-info,
.mailing-faq {
  font-size: 14px;
  line-height: 1.58;
}

.mailing-main-copy {
  color: #46515a;
}

.mailing-lead {
  color: #273540;
  font-size: 16px;
  line-height: 1.65;
}

.mailing-main-copy strong,
.mailing-card strong {
  color: #0b75b7;
}

.mailing-main-copy h2 {
  margin: 28px 0 8px;
  color: #1f2a33;
  font-size: 18px;
}

.mailing-service-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 30px;
}

.mailing-service-points div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid #d9e8ef;
  border-radius: 6px;
  background: #f7fbfd;
}

.mailing-service-points strong,
.mailing-service-points span {
  display: block;
}

.mailing-service-points strong {
  margin-bottom: 8px;
  color: #0b75b7;
  font-size: 15px;
}

.mailing-service-points span {
  color: #52616d;
  font-size: 13px;
  line-height: 1.45;
}

.mailing-card {
  overflow: hidden;
  border: 1px solid #d5e3ea;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 55, 70, .08);
}

.mailing-card h2 {
  padding: 13px 18px;
  background: #064380;
  font-size: 15px;
}

.mailing-price-products {
  min-height: 0;
  background: #f5f8fa;
}

.mailing-price-products ul {
  padding: 20px 24px;
  color: #2d3b46;
  font-size: 13px;
  line-height: 1.45;
}

.mailing-price-row {
  background: #14212b;
}

.mailing-price-row strong {
  min-height: 78px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.mailing-card > p,
.mailing-list-card p {
  padding-left: 22px;
  padding-right: 22px;
  color: #43515c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.mailing-list-card {
  padding-bottom: 24px;
}

.mailing-info {
  padding: 30px 0 42px;
  border-top: 1px solid #d9e8ef;
  border-bottom: 1px solid #d9e8ef;
}

.mailing-info > h2,
.mailing-faq > h2 {
  margin: 0 0 18px;
  padding-left: 0;
  color: #1f2a33;
  font-size: 26px;
}

.mailing-info-grid {
  overflow: hidden;
  border: 1px solid #d9e8ef;
  border-radius: 6px;
  background: #fff;
}

.mailing-info-tabs {
  border-right: 1px solid #d9e8ef;
  background: #f4f8fb;
}

.mailing-info-tabs button {
  min-height: 58px;
  border-bottom: 1px solid #d9e8ef;
  background: transparent;
  color: #314351;
  font-size: 17px;
}

.mailing-info-tabs .active {
  color: #0b75b7;
  background: #fff;
  box-shadow: inset 4px 0 0 #0b75b7;
}

.mailing-info-copy {
  padding: 30px 34px 28px;
  color: #475762;
}

.mailing-info-copy h3 {
  margin: 22px 0 8px;
  color: #1f2a33;
  font-size: 17px;
}

.mailing-info-copy h3:first-child {
  margin-top: 0;
}

.mailing-info-panel {
  animation: mailing-tab-fade .24s ease both;
}

.mailing-info-panel[hidden] {
  display: none;
}

.mailing-info-tabs button[aria-selected="true"] {
  color: #0075b7;
  background: #fff;
}

@keyframes mailing-tab-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mailing-faq {
  padding: 48px 0 64px;
}

.mailing-faq > h2 {
  padding: 0;
  border-bottom: 0;
}

.mailing-faq-list {
  overflow: hidden;
  border: 1px solid #d9e8ef;
  border-radius: 6px;
}

.mailing-faq details {
  border-bottom-color: #d9e8ef;
}

.mailing-faq summary {
  min-height: 58px;
  padding: 0 24px;
  color: #22313d;
  font-size: 15px;
}

.mailing-faq details p {
  margin: -4px 64px 18px 24px;
  color: #52616d;
  line-height: 1.55;
}

.mailing-join {
  padding: 50px 0 58px;
  background: #e31578;
}

.mailing-join h2 {
  gap: 34px;
  font-size: 34px;
}

.mailing-join h2::before,
.mailing-join h2::after {
  height: 3px;
}

.mailing-join-form {
  width: min(760px, 100%);
  grid-template-columns: minmax(0, 1fr) 210px;
}

.mailing-join-form input,
.mailing-join-form button {
  height: 58px;
  font-size: 15px;
}

.mailing-join-form button {
  background: #064380;
}

@media (max-width: 900px) {
  .mailing-hero-copy h1 {
    font-size: 30px;
  }

  .mailing-intro,
  .mailing-info-grid {
    grid-template-columns: 1fr;
  }

  .mailing-service-points {
    grid-template-columns: 1fr;
  }

  .mailing-pricing {
    max-width: none;
  }

  .mailing-info-tabs {
    grid-template-columns: 1fr;
    border-right: 0;
  }

  .mailing-join-form {
    grid-template-columns: 1fr;
  }
}

/* Mailing services aligned with custom quote aesthetic */
.mailing-modern {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
  color: #123f70;
}

.mailing-modern .mailing-hero {
  padding-top: 0;
}

.mailing-modern .mailing-breadcrumb {
  height: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #526979;
  font-size: 14px;
  font-weight: 800;
}

.mailing-modern .mailing-hero-band {
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.mailing-modern .mailing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
  min-height: 0;
  padding-top: 46px;
  padding-bottom: 60px;
}

.mailing-modern .mailing-hero-copy {
  max-width: none;
}

.mailing-modern .mailing-eyebrow {
  margin-bottom: 0;
}

.mailing-modern .mailing-hero-copy h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.mailing-modern .mailing-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.mailing-modern .mailing-hero-art {
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.mailing-modern .mailing-hero-art img {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.mailing-modern .mailing-hero-card {
  align-self: center;
}

.mailing-modern .mailing-intro {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
}

.mailing-modern .mailing-main-copy,
.mailing-modern .mailing-info,
.mailing-modern .mailing-faq,
.mailing-modern .mailing-join {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.mailing-modern .mailing-main-copy {
  padding: 32px;
}

.mailing-modern .mailing-lead {
  color: #526979;
  font-size: 17px;
  font-weight: 700;
}

.mailing-modern .mailing-main-copy h2,
.mailing-modern .mailing-info > h2,
.mailing-modern .mailing-faq > h2,
.mailing-modern .mailing-join h2 {
  color: #123f70;
  font-size: clamp(26px, 2.4vw, 34px) !important;
  font-weight: 950;
  line-height: 1.12;
}

.mailing-modern .mailing-main-copy p,
.mailing-modern .mailing-main-copy ol,
.mailing-modern .mailing-main-copy ul,
.mailing-modern .mailing-card p,
.mailing-modern .mailing-info-copy p,
.mailing-modern .mailing-info-copy ul,
.mailing-modern .mailing-faq p {
  color: #526979;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.mailing-modern .mailing-main-copy strong,
.mailing-modern .mailing-card strong,
.mailing-modern .mailing-info-copy strong {
  color: #047fbf;
}

.mailing-modern .mailing-service-points div {
  border-radius: 8px;
  background: #f7fbfd;
}

.mailing-modern .mailing-service-points strong {
  color: #047fbf;
  font-weight: 950;
}

.mailing-modern .mailing-pricing {
  display: grid;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mailing-modern .mailing-card {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.mailing-modern .mailing-card h2 {
  padding: 18px 22px;
  background: #047fbf;
  color: #fff;
  font-size: 19px !important;
  font-weight: 950;
}

.mailing-modern .mailing-price-products {
  background: #f7fbfd;
}

.mailing-modern .mailing-price-row {
  background: #123f70;
}

.mailing-modern .mailing-price-row strong {
  font-size: 16px;
}

.mailing-modern .mailing-info,
.mailing-modern .mailing-faq {
  padding: 28px;
}

.mailing-modern .mailing-info-grid {
  gap: 24px;
}

.mailing-modern .mailing-info-tabs {
  gap: 10px;
}

.mailing-modern .mailing-info-tabs button {
  min-height: 40px;
  border-color: rgba(4, 127, 191, .2);
  border-radius: 999px;
  color: #047fbf;
  background: #f7fbfd;
  font-weight: 900;
}

.mailing-modern .mailing-info-tabs .active,
.mailing-modern .mailing-info-tabs button[aria-selected="true"] {
  color: #fff;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .18);
}

.mailing-modern .mailing-info-copy {
  padding: 28px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #f7fbfd;
}

.mailing-modern .mailing-info-copy h3 {
  color: #123f70;
  font-size: 20px;
  font-weight: 950;
}

.mailing-modern .mailing-join {
  margin-top: 36px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .1), rgba(226, 20, 131, .08)),
    #fff;
}

.mailing-modern .mailing-join-form button {
  border-radius: 7px;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .22);
}

@media (max-width: 1100px) {
  .mailing-modern .mailing-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }
}

@media (max-width: 760px) {
  .mailing-modern {
    padding-bottom: 56px;
  }

  .mailing-modern .mailing-hero-inner,
  .mailing-modern .mailing-intro,
  .mailing-modern .mailing-info-grid,
  .mailing-modern .mailing-service-points {
    grid-template-columns: 1fr !important;
  }

  .mailing-modern .mailing-hero-inner {
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .mailing-modern .mailing-hero-copy h1 {
    font-size: 38px !important;
  }

  .mailing-modern .mailing-main-copy,
  .mailing-modern .mailing-info,
  .mailing-modern .mailing-faq {
    padding: 22px;
  }
}

.sample-page {
  color: #222;
  background: #fff;
  font-family: "Inter", Helvetica, sans-serif;
}

.sample-page .page-width {
  width: min(1220px, calc(100% - 44px));
}

.sample-breadcrumb {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 17px;
  font-weight: 500;
}

.sample-breadcrumb a {
  color: inherit;
}

.sample-hero-band {
  background: #d9edf7;
}

.sample-hero {
  min-height: 196px;
  display: grid;
  align-content: center;
}

.sample-hero h1 {
  margin: 0 0 18px;
  color: #25282b;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.sample-hero p {
  margin: 0;
  color: #25282b;
  font-size: 23px;
  line-height: 1.25;
}

.sample-request-area {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(360px, 500px);
  justify-content: center;
  gap: 64px;
  padding: 40px 0 64px;
  align-items: start;
}

.sample-form {
  width: 100%;
  max-width: 430px;
  margin-left: 0;
}

.sample-form h2 {
  margin: 0 0 18px;
  color: #8a8a8a;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
}

.sample-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  color: #858585;
  font-size: 13px;
  font-weight: 800;
}

.sample-form textarea {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  background: #fff;
  color: #777;
  font: 500 14px/1.2 "Inter", Helvetica, sans-serif;
}

.sample-form textarea {
  height: 54px;
  padding: 15px 14px;
  resize: vertical;
}

.sample-form textarea:focus {
  outline: 1px solid #14a8e0;
  border-color: #14a8e0;
}

.sample-form button {
  display: block;
  margin: 18px auto 0;
  min-width: 112px;
  height: 43px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #22b8e5;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.sample-custom-select {
  position: relative;
  z-index: 5;
}

.sample-custom-select.open {
  z-index: 30;
}

.sample-custom-select > button {
  width: 100%;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  color: #777;
  background: #fff;
  text-align: left;
  font: 500 14px/1.2 "Inter", Helvetica, sans-serif;
  cursor: pointer;
}

.sample-custom-select > button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg) translateY(-2px);
}

.sample-custom-select ul {
  position: absolute;
  inset: calc(100% + 1px) 0 auto 0;
  display: none;
  margin: 0;
  padding: 0;
  border: 1px solid #555;
  background: #fff;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .12);
}

.sample-custom-select.open ul {
  display: block;
}

.sample-custom-select li button {
  width: 100%;
  min-height: 34px;
  display: block;
  margin: 0;
  padding: 6px 16px;
  border: 0;
  border-radius: 0;
  color: #747474;
  background: #fff;
  text-align: left;
  font: 500 18px/1.2 "Inter", Helvetica, sans-serif;
  cursor: pointer;
}

.sample-custom-select li:first-child button {
  color: #fff;
  background: #1f6fd1;
}

.sample-custom-select li button:hover {
  color: #fff;
  background: #1f6fd1;
}

.sample-promo {
  padding-top: 70px;
}

.sample-promo-bar {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 3px;
  color: #fff;
  background: #27bce4;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}

.sample-promo img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.sample-copy {
  padding: 0 0 110px;
  color: #898989;
  font-size: 13px;
  line-height: 1.35;
}

.sample-copy article {
  margin-bottom: 28px;
}

.sample-copy h2 {
  margin: 0 0 12px;
  color: #878787;
  font-size: 14px;
  font-weight: 500;
}

.sample-copy p {
  margin: 0;
}

@media (max-width: 1100px) {
  .sample-request-area {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 560px;
  }

  .sample-form {
    max-width: none;
    margin-left: 0;
  }

  .sample-promo {
    padding-top: 0;
  }

  .sample-promo-bar,
  .sample-promo img {
    width: 100%;
    max-width: none;
  }
}

/* Site-wide mobile hardening */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

/* Shared typography scale */
body {
  font-size: 16px;
  line-height: 1.55;
}

p,
li {
  font-size: 16px !important;
  line-height: 1.65;
}

.main-nav .page-width,
.main-nav a,
.nav-dropdown-toggle,
.mobile-drawer-nav a {
  font-size: 15px !important;
}

h1 {
  font-size: clamp(40px, 4.4vw, 56px) !important;
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 3vw, 40px) !important;
  line-height: 1.16;
}

h3 {
  font-size: clamp(22px, 2.1vw, 28px) !important;
  line-height: 1.22;
}

button,
.button,
.btn,
.blue-button,
.nav-cta,
.product-actions a,
.product-actions button,
.shopping-buttons a,
.account-actions a,
input[type="button"],
input[type="submit"] {
  font-size: 16px !important;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer li,
.footer-utility,
.footer-download span,
.footer-social span {
  font-size: 15px !important;
  line-height: 1.5;
}

.site-footer h3,
.footer-column:nth-child(5) h3,
.support-title h3 {
  font-size: 15px !important;
  line-height: 1.2;
}

/* Modern shared breadcrumb treatment */
.service-breadcrumb,
.design-breadcrumb,
.ecoupon-breadcrumb,
.portfolio-breadcrumb,
.mailing-breadcrumb,
.sample-breadcrumb {
  width: min(1220px, calc(100% - 44px));
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 0 16px;
  color: #5d6b73;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  animation: breadcrumb-rise .46s ease both;
}

.service-breadcrumb a,
.design-breadcrumb a,
.ecoupon-breadcrumb a,
.portfolio-breadcrumb a,
.mailing-breadcrumb a,
.sample-breadcrumb a {
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #057da5;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-breadcrumb a:hover,
.design-breadcrumb a:hover,
.ecoupon-breadcrumb a:hover,
.portfolio-breadcrumb a:hover,
.mailing-breadcrumb a:hover,
.sample-breadcrumb a:hover {
  color: #045f7d;
  background: rgba(7, 159, 208, .09);
  border-color: rgba(7, 159, 208, .18);
  box-shadow: 0 8px 20px rgba(7, 159, 208, .11);
  transform: translateY(-1px);
}

.service-breadcrumb a:focus-visible,
.design-breadcrumb a:focus-visible,
.ecoupon-breadcrumb a:focus-visible,
.portfolio-breadcrumb a:focus-visible,
.mailing-breadcrumb a:focus-visible,
.sample-breadcrumb a:focus-visible {
  outline: 2px solid #079fd0;
  outline-offset: 2px;
}

.service-breadcrumb span,
.design-breadcrumb span,
.ecoupon-breadcrumb span,
.portfolio-breadcrumb span,
.mailing-breadcrumb span,
.sample-breadcrumb span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #76848b;
}

.service-breadcrumb span:not(:last-child),
.design-breadcrumb span:not(:last-child),
.ecoupon-breadcrumb span:not(:last-child),
.portfolio-breadcrumb span:not(:last-child),
.mailing-breadcrumb span:not(:last-child),
.sample-breadcrumb span:not(:last-child) {
  width: 18px;
  justify-content: center;
  color: transparent;
  overflow: hidden;
}

.service-breadcrumb span:not(:last-child)::before,
.design-breadcrumb span:not(:last-child)::before,
.ecoupon-breadcrumb span:not(:last-child)::before,
.portfolio-breadcrumb span:not(:last-child)::before,
.mailing-breadcrumb span:not(:last-child)::before,
.sample-breadcrumb span:not(:last-child)::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #9fb0b8;
  border-right: 2px solid #9fb0b8;
  transform: rotate(45deg);
}

.service-breadcrumb span:last-child,
.design-breadcrumb span:last-child,
.ecoupon-breadcrumb span:last-child,
.portfolio-breadcrumb span:last-child,
.mailing-breadcrumb span:last-child,
.sample-breadcrumb span:last-child {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f0f7fa;
  color: #24323a;
  font-weight: 900;
}

@keyframes breadcrumb-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-hero h1,
  .promo-hero p,
  .promo-actions,
  .promo-feature-card,
  .promo-benefits article,
  .ecoupon-modern-copy h1,
  .ecoupon-modern-copy p,
  .ecoupon-modern-art,
  .ecoupon-benefits article,
  .help-hero h1,
  .help-hero p,
  .help-search,
  .help-hero-actions,
  .help-hero-media {
    animation: none;
  }

  .promo-actions a,
  .promo-feature-body a,
  .promo-mini-grid a,
  .promo-feature-card img,
  .reviews-web-actions a,
  .reviews-web-cta a,
  .ecoupon-modern-form button,
  .ecoupon-modern-newsletter button,
  .help-search button,
  .help-hero-actions a,
  .help-cta a {
    transition: none;
  }

  .reviews-web-copy h1,
  .reviews-web-copy p,
  .reviews-web-actions,
  .reviews-web-showcase,
  .reviews-web-logo-grid .review-logo {
    animation: none;
  }

  .service-breadcrumb,
  .design-breadcrumb,
  .ecoupon-breadcrumb,
  .portfolio-breadcrumb,
  .mailing-breadcrumb,
  .sample-breadcrumb {
    animation: none;
  }

  .service-breadcrumb a,
  .design-breadcrumb a,
  .ecoupon-breadcrumb a,
  .portfolio-breadcrumb a,
  .mailing-breadcrumb a,
  .sample-breadcrumb a {
    transition: none;
  }
}

@media (max-width: 768px) {
  .service-breadcrumb,
  .design-breadcrumb,
  .ecoupon-breadcrumb,
  .portfolio-breadcrumb,
  .mailing-breadcrumb,
  .sample-breadcrumb {
    width: min(100% - 28px, 1220px);
    gap: 7px;
    padding: 16px 0 12px;
    font-size: 12px;
  }

  .service-breadcrumb a,
  .design-breadcrumb a,
  .ecoupon-breadcrumb a,
  .portfolio-breadcrumb a,
  .mailing-breadcrumb a,
  .sample-breadcrumb a,
  .service-breadcrumb span:last-child,
  .design-breadcrumb span:last-child,
  .ecoupon-breadcrumb span:last-child,
  .portfolio-breadcrumb span:last-child,
  .mailing-breadcrumb span:last-child,
  .sample-breadcrumb span:last-child {
    min-height: 30px;
    padding-inline: 10px;
  }

  .service-breadcrumb span:last-child,
  .design-breadcrumb span:last-child,
  .ecoupon-breadcrumb span:last-child,
  .portfolio-breadcrumb span:last-child,
  .mailing-breadcrumb span:last-child,
  .sample-breadcrumb span:last-child {
    max-width: 100%;
  }

  .page-width,
  .receipt-page .page-width,
  .custom-quote-page .page-width,
  .contact-page .page-width,
  .service-page .page-width,
  .product-page .page-width,
  .portfolio-page .page-width,
  .mailing-page .page-width,
  .sample-page .page-width,
  .community-page .page-width {
    width: min(100% - 28px, 1220px);
  }

  .help-strip {
    min-height: 28px;
    height: auto;
    padding: 6px 14px;
    text-align: center;
    line-height: 1.35;
  }

  .header-main {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: min(210px, 58vw);
  }

  .header-actions {
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
  }

  .header-actions > a,
  .header-divider,
  .sparkle-mark {
    display: none;
  }

  .cart {
    width: 44px;
    height: 44px;
  }

  .cart svg {
    width: 22px;
    height: 22px;
  }

  .search {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    margin-top: 2px;
  }

  .search input {
    min-width: 0;
    padding-inline: 12px;
    font-size: 14px;
  }

  .search button {
    width: 48px;
    min-width: 48px;
  }

  .main-nav {
    display: none;
  }

  .mobile-drawer {
    width: min(344px, calc(100vw - 32px));
  }

  .service-breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  h1,
  .service-title-band h1,
  .privacy-hero h1,
  .community-title h1,
  .link-title-copy h1,
  .signup-hero h1,
  .turnaround-hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  h2,
  .privacy-card h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  p,
  li {
    overflow-wrap: anywhere;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  iframe {
    min-height: 260px;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
    font-size: 16px;
  }

  button,
  .button,
  .btn,
  .nav-cta,
  .store-badge,
  .footer-social a,
  .review-logo,
  .product-actions a,
  .product-actions button,
  .account-actions a {
    min-height: 44px;
  }

  .hero,
  .service-title-band,
  .privacy-hero,
  .community-title,
  .link-title,
  .signup-hero,
  .turnaround-hero {
    min-height: 0;
  }

  .footer-grid,
  .footer-bottom,
  .footer-utility,
  .privacy-hero-inner,
  .privacy-content,
  .community-title .page-width,
  .link-title,
  .signup-form,
  .turnaround-intro,
  .business-services-grid,
  .product-grid,
  .product-layout,
  .checkout-layout,
  .cart-layout,
  .account-grid,
  .contact-grid,
  .quote-grid,
  .mailing-hero,
  .mailing-process,
  .sample-request-area {
    grid-template-columns: 1fr;
  }

  .footer-utility,
  .footer-download,
  .footer-social,
  .payment-cards {
    flex-wrap: wrap;
  }

  .footer-utility {
    gap: 18px;
  }

  .footer-download,
  .footer-social {
    width: 100%;
  }

  .community-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 74px;
  }

  .community-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .community-hero p {
    font-size: 16px;
  }

  .community-actions a {
    width: 100%;
  }

  .community-visual,
  .community-visual img {
    min-height: 320px;
  }

  .community-visual-card {
    min-width: 150px;
    padding: 12px 13px;
  }

  .community-visual-card-one {
    top: 16px;
    right: 16px;
  }

  .community-visual-card-two {
    left: 16px;
    bottom: 16px;
  }

  .community-stats,
  .community-feature-grid,
  .community-showcase {
    grid-template-columns: 1fr;
  }

  .community-stats {
    margin-top: -44px;
  }

  .community-modern-panel {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .community-section-head h2,
  .community-showcase h2 {
    font-size: 27px;
  }

  .community-feature-grid article {
    min-height: 0;
  }

  .community-showcase {
    gap: 24px;
    padding: 18px;
  }

  .info-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 70px;
  }

  .info-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .info-hero p {
    font-size: 16px;
  }

  .info-cta {
    width: 100%;
  }

  .info-hero-media,
  .info-hero-media img {
    min-height: 300px;
  }

  .info-stats,
  .info-content {
    grid-template-columns: 1fr;
  }

  .info-stats {
    margin-top: -42px;
  }

  .info-content {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .info-content article {
    min-height: 0;
  }

  .about-hero-inner,
  .about-feature,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-hero-inner {
    min-height: 0;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .about-hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-actions a,
  .about-cta a {
    width: 100%;
  }

  .about-hero-media {
    min-height: 360px;
  }

  .about-main-img {
    width: 100%;
    min-height: 300px;
  }

  .about-float-img {
    width: 48%;
    min-height: 140px;
    border-width: 7px;
  }

  .about-service-badge {
    right: 14px;
    bottom: 20px;
    width: 134px;
    min-height: 108px;
    padding: 14px;
  }

  .about-service-badge strong {
    font-size: 28px;
  }

  .about-stats,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    margin-top: -42px;
  }

  .about-story {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .about-section-head h2,
  .about-feature-copy h2,
  .about-cta h2 {
    font-size: 27px;
  }

  .about-story-grid article {
    min-height: 0;
  }

  .about-feature {
    gap: 26px;
    padding-top: 24px;
    padding-bottom: 52px;
  }

  .about-cta {
    margin-bottom: 54px;
    padding: 24px;
  }

  .promo-hero-inner,
  .promo-benefits,
  .promo-showcase {
    grid-template-columns: 1fr;
  }

  .promo-hero-inner {
    min-height: 0;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .promo-hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .promo-hero p,
  .promo-showcase-copy p {
    font-size: 16px;
  }

  .promo-actions a,
  .promo-feature-body a,
  .promo-mini-grid a {
    width: 100%;
  }

  .promo-feature-body h2 {
    font-size: 34px;
  }

  .promo-benefits {
    margin-top: -42px;
  }

  .promo-benefits article {
    min-height: 0;
  }

  .promo-showcase {
    gap: 26px;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .promo-showcase-copy h2 {
    font-size: 27px;
  }

  .reviews-web-hero-inner,
  .reviews-web-stats,
  .reviews-web-cta {
    grid-template-columns: 1fr;
  }

  .reviews-web-hero-inner {
    min-height: 0;
    gap: 32px;
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .reviews-web-copy h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .reviews-web-copy p,
  .reviews-web-heading p {
    font-size: 16px;
  }

  .reviews-web-actions a,
  .reviews-web-cta a {
    width: 100%;
  }

  .reviews-web-showcase {
    min-height: 430px;
  }

  .reviews-web-feature-logo:first-child {
    left: 0;
    width: 72%;
    min-height: 170px;
  }

  .reviews-web-feature-logo:nth-child(2) {
    right: 0;
    bottom: 74px;
    width: 76%;
    min-height: 170px;
  }

  .reviews-web-score {
    left: 12px;
    bottom: 0;
    width: 190px;
    min-height: 112px;
  }

  .reviews-web-stats {
    margin-top: -42px;
  }

  .reviews-web-panel {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .reviews-web-heading h2,
  .reviews-web-cta h2 {
    font-size: 27px;
  }

  .reviews-web-logo-grid {
    padding: 16px;
  }

  .reviews-web-cta {
    margin-bottom: 54px;
    padding: 24px;
  }

  .ecoupon-modern-inner,
  .ecoupon-modern-panel,
  .ecoupon-benefits,
  .ecoupon-modern-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .ecoupon-modern-inner {
    min-height: 0;
    gap: 34px;
    padding-top: 32px;
    padding-bottom: 74px;
  }

  .ecoupon-modern-copy h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .ecoupon-modern-copy p,
  .ecoupon-signup-copy p {
    font-size: 16px;
  }

  .ecoupon-modern-art {
    min-height: 330px;
  }

  .ecoupon-art-main {
    min-height: 300px;
  }

  .ecoupon-offer-card {
    left: 14px;
    bottom: -18px;
    width: 180px;
    min-height: 108px;
    padding: 16px;
  }

  .ecoupon-modern-panel {
    margin-top: 48px;
    padding: 20px;
    gap: 24px;
  }

  .ecoupon-signup-copy h2,
  .ecoupon-modern-newsletter h2 {
    font-size: 27px;
  }

  .ecoupon-modern-form {
    padding: 18px;
  }

  .ecoupon-benefits {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .ecoupon-benefits article {
    min-height: 0;
  }

  .ecoupon-modern-newsletter {
    padding-bottom: 54px;
  }

  .ecoupon-modern-newsletter-inner {
    padding: 24px;
  }

  .ecoupon-modern-newsletter form {
    grid-template-columns: 1fr;
  }

  .help-hero-inner,
  .help-quick,
  .help-topic-grid,
  .help-cta {
    grid-template-columns: 1fr;
  }

  .help-hero-inner {
    min-height: 0;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .help-hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .help-hero p {
    font-size: 16px;
  }

  .help-search {
    grid-template-columns: 1fr;
  }

  .help-search button,
  .help-hero-actions a,
  .help-cta a {
    width: 100%;
  }

  .help-hero-media img {
    min-height: 300px;
  }

  .help-response-card {
    left: 14px;
    bottom: -18px;
    width: 190px;
    min-height: 108px;
    padding: 16px;
  }

  .help-quick {
    margin-top: -42px;
  }

  .help-topics,
  .help-faq {
    padding-top: 48px;
  }

  .help-section-head h2,
  .help-cta h2 {
    font-size: 27px;
  }

  .help-topic-grid article {
    min-height: 0;
  }

  .help-cta {
    margin-bottom: 54px;
    padding: 24px;
  }

  .review-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .review-logo {
    min-height: 96px;
    padding: 8px;
  }

  .review-logo img,
  .review-logo-wide img {
    max-width: 100%;
    max-height: 72px;
  }

  .privacy-card,
  .community-card-body,
  .link-panel,
  .review-panel-body,
  .web-reviews-body,
  .go-green-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .account-dialog {
    width: min(100% - 28px, 420px);
  }
}

@media (max-width: 480px) {
  .page-width,
  .receipt-page .page-width,
  .custom-quote-page .page-width,
  .contact-page .page-width,
  .service-page .page-width,
  .product-page .page-width,
  .portfolio-page .page-width,
  .mailing-page .page-width,
  .sample-page .page-width {
    width: min(100% - 24px, 1220px);
  }

  .brand img {
    width: min(190px, 56vw);
  }

  h1,
  .service-title-band h1,
  .privacy-hero h1,
  .community-title h1,
  .link-title-copy h1,
  .signup-hero h1,
  .turnaround-hero h1 {
    font-size: 27px;
  }

  h2,
  .privacy-card h2 {
    font-size: 20px;
  }

  .review-logo-grid,
  .reward-stats,
  .privacy-toc,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .review-logo {
    min-height: 86px;
  }

  .review-logo img,
  .review-logo-wide img {
    max-height: 66px;
  }

  .privacy-summary,
  .privacy-card,
  .web-reviews-body,
  .review-panel-body,
  .link-panel {
    padding: 20px 16px;
  }

  .footer-wrap {
    width: min(100% - 28px, 1080px);
  }
}

/* Modern site-wide layout refresh */
:root {
  --modern-bg: #f6fafc;
  --modern-surface: #ffffff;
  --modern-ink: #142631;
  --modern-subtle: #5f7180;
  --modern-border: rgba(20, 55, 76, .12);
  --modern-shadow: 0 18px 45px rgba(16, 49, 70, .1);
  --modern-shadow-soft: 0 10px 28px rgba(16, 49, 70, .08);
}

body {
  color: var(--modern-ink);
  background: var(--modern-bg);
}

.site-header {
  position: relative;
  z-index: 80;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 49, 70, .08);
}

.header-main {
  min-height: 128px;
}

.search {
  height: 48px;
  border-color: #d7e4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 58, 84, .06);
}

.search input {
  font-size: 16px;
}

.search button {
  width: 58px;
  background: #047fbf;
}

.main-nav {
  height: auto;
  border-color: #e6eef2;
  box-shadow: 0 10px 24px rgba(18, 58, 84, .05);
}

.main-nav .page-width {
  min-height: 62px;
}

.main-nav a,
.nav-dropdown-toggle {
  min-height: 42px;
  border-radius: 7px;
  padding: 0 8px;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible {
  color: #047fbf;
  background: #eef8fc;
  outline: none;
}

.nav-cta {
  border-radius: 8px;
  background: #123f70;
  box-shadow: 0 12px 24px rgba(18, 63, 112, .18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff !important;
  background: #0d3158 !important;
}

.nav-dropdown-menu {
  border-color: #dbe8ef;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(16, 49, 70, .16);
}

.nav-dropdown-menu a {
  border-radius: 6px;
}

.hero,
.service-hero,
.promo-hero,
.ecoupon-modern-hero,
.community-hero,
.info-hero,
.help-hero,
.about-hero,
.reviews-web-hero,
.customer-reviews-hero,
.privacy-hero,
.contact-hero,
.portfolio-hero,
.mailing-hero,
.sample-hero,
.design-hero-band,
.turnaround-hero,
.rgb-hero {
  background-color: #f1f8fb;
}

.category-strip,
.product-section,
.process-band,
.design-path,
.service-proof,
.seo-copy,
.service-page,
.product-page,
.contact-page,
.checkout-page,
.shopping-page,
.receipt-page,
.privacy-page,
.custom-quote-page,
.portfolio-page,
.mailing-page,
.sample-page,
.account-page {
  background: transparent;
}

.process-band {
  padding: 42px 0;
  color: #173343;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .15), rgba(226, 20, 131, .08)),
    #eef8fc;
}

.process-content {
  min-height: 0;
}

.process-band h2 {
  color: #123f70;
}

.process-band p {
  color: #526979 !important;
}

.process-content ol {
  gap: 22px;
}

.process-content li {
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 58, 84, .08);
}

.process-content li + li:before {
  content: "";
  top: 50%;
  left: -28px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #8fd3eb, #e79cc8);
  transform: translateY(-50%);
}

.process-content li + li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #e21483;
  border-right: 2px solid #e21483;
  transform: translateY(-50%) rotate(45deg);
}

.process-content span {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #047fbf, #12b6d4);
  box-shadow: 0 14px 26px rgba(2, 148, 221, .22);
}

.process-content b {
  color: #173343;
}

.process-content small {
  color: #667987 !important;
}

.product-card,
.wedding-grid article,
.path-grid article,
.proof-card > div,
.service-product-card,
.contact-card,
.privacy-card,
.turnaround-card,
.go-green-card,
.mailing-card,
.mailing-list-card,
.portfolio-panel,
.review-logo,
.customer-review-card,
.promo-feature-card,
.ecoupon-offer-card,
.help-topic-grid article,
.account-detail-grid article,
.order-card,
.order-table-card,
.checkout-form,
.coupon-box,
.shipping-rate,
.checkout-price,
.receipt-card,
.login-column {
  border: 1px solid var(--modern-border);
  border-radius: 8px;
  background: var(--modern-surface);
  box-shadow: var(--modern-shadow-soft);
}

.product-card,
.wedding-grid article,
.path-grid article,
.service-product-card,
.contact-card,
.turnaround-card,
.mailing-card,
.portfolio-panel,
.review-logo,
.customer-review-card,
.promo-feature-card,
.help-topic-grid article,
.order-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover,
.wedding-grid article:hover,
.path-grid article:hover,
.service-product-card:hover,
.contact-card:hover,
.turnaround-card:hover,
.mailing-card:hover,
.portfolio-panel:hover,
.review-logo:hover,
.customer-review-card:hover,
.promo-feature-card:hover,
.help-topic-grid article:hover,
.order-card:hover {
  border-color: rgba(2, 148, 221, .22);
  box-shadow: var(--modern-shadow);
  transform: translateY(-3px);
}

input,
select,
textarea,
.custom-select-button {
  border-color: #cfdde5 !important;
  border-radius: 7px !important;
  background-color: #fff !important;
}

input:focus,
select:focus,
textarea:focus,
.custom-select.open .custom-select-button {
  border-color: #047fbf !important;
  box-shadow: 0 0 0 4px rgba(2, 148, 221, .12) !important;
  outline: none;
}

button,
.blue-button,
.shopping-buttons a,
.product-actions button,
.product-actions a,
.account-detail-grid article button,
.date-search button,
.order-card button,
.order-table-card button,
.proof-actions button,
.quote-side button,
.sample-form button,
.mailing-join-form button {
  border-radius: 7px;
}

.account-page {
  width: min(1220px, calc(100% - 44px));
  padding: 44px 0 88px;
}

.account-success {
  min-height: 58px;
  margin-bottom: 22px;
  padding: 14px 22px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  color: #17445f;
  background: #eaf7fd;
  font-size: 15px;
}

.account-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--modern-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--modern-shadow-soft);
}

.account-sidebar button {
  min-height: 48px;
  justify-content: flex-start;
  padding: 0 12px 0 42px;
  border: 0;
  border-radius: 7px;
  color: #1f303b;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.account-sidebar button::before {
  left: 16px;
  border-left-color: #83919a;
  transition: transform .18s ease, border-left-color .18s ease;
}

.account-sidebar button:hover,
.account-sidebar button:focus-visible {
  color: #047fbf;
  background: #eef8fc;
  outline: none;
}

.account-sidebar button:hover::before,
.account-sidebar button:focus-visible::before {
  border-left-color: #047fbf;
  transform: translateX(2px);
}

.account-sidebar button.active {
  color: #fff;
  background: linear-gradient(135deg, #047fbf, #e21483);
  box-shadow: 0 12px 24px rgba(2, 118, 180, .18);
}

.account-sidebar button.active::before {
  border-left-color: #fff;
}

.history-panel {
  overflow: hidden;
  border: 1px solid var(--modern-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--modern-shadow-soft);
}

.history-panel h1 {
  margin: 0;
  padding: 24px 28px;
  border-bottom: 1px solid #e6eef2;
  color: #152d3c;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .1), rgba(226, 20, 131, .08)),
    #fff;
  font-size: 30px !important;
}

.history-content,
.detail-content,
.artwork-content,
.password-content,
.proof-content,
.tracking-content,
.studio-content,
.quotes-content {
  padding: 28px;
}

.date-search,
.password-content {
  gap: 14px;
}

.account-table-wrap {
  border: 1px solid #e3edf2;
  border-radius: 8px;
  overflow: auto;
  background: #fff;
}

.account-table,
.order-history-table,
.receipt-table,
.cart-table table {
  border-collapse: collapse;
}

.account-table th,
.order-history-table th,
.quotes-table th {
  color: #17445f;
  background: #eef8fc;
}

.account-table th,
.account-table td,
.order-history-table th,
.order-history-table td,
.quotes-table th,
.quotes-table td {
  border-color: #e4edf2;
}

.studio-grid button {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .16), rgba(226, 20, 131, .12)),
    #fff;
}

/* Light brand treatment for promo/CTA panels */
.ecoupon-modern-newsletter-inner,
.ecoupon-offer-card,
.info-hero .info-stat,
.help-response-card,
.about-value-card,
.reviews-web-score,
.customer-reviews-score-card,
.mailing-join,
.sample-copy-highlight {
  border: 1px solid rgba(2, 148, 221, .16) !important;
  color: #123f70 !important;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #eef9fd !important;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12) !important;
}

.ecoupon-modern-newsletter .ecoupon-kicker,
.ecoupon-offer-card span,
.reviews-web-score span,
.customer-reviews-score-card p,
.help-response-card span {
  color: #04739f !important;
}

.ecoupon-modern-newsletter .ecoupon-kicker {
  border: 1px solid rgba(2, 148, 221, .16);
  background: rgba(255, 255, 255, .78) !important;
}

.ecoupon-modern-newsletter h2,
.ecoupon-offer-card strong,
.reviews-web-score strong,
.customer-reviews-score-card strong,
.help-response-card strong,
.mailing-join h2 {
  color: #123f70 !important;
}

.ecoupon-modern-newsletter input {
  border: 1px solid #cfe1e8 !important;
  background: #fff !important;
}

/* Keep desktop navigation on one row */
@media (min-width: 769px) {
  .main-nav {
    overflow: visible;
  }

  .main-nav .page-width {
    display: flex;
    flex-wrap: nowrap;
    min-height: 54px;
    gap: clamp(8px, 1vw, 18px);
    overflow: visible;
    white-space: nowrap;
  }

  .main-nav a,
  .main-nav .nav-dropdown-toggle {
    height: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    padding-inline: 10px;
    font-size: clamp(12px, .95vw, 14px) !important;
    line-height: 1;
    white-space: nowrap;
  }

  .main-nav .nav-cta {
    min-width: clamp(148px, 14vw, 190px);
    height: 44px;
    min-height: 44px;
    padding-inline: 16px;
    margin: 0;
    border-radius: 6px;
  }
}

/* How to Order redesign */
.order-guide-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f2fbfe 0, #fff 420px, #f7fbfd 100%);
}

.order-guide-hero {
  padding: 34px 0 64px;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .13), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.order-guide-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
}

.order-guide-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(2, 148, 221, .18);
  border-radius: 999px;
  color: #057da5;
  background: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order-guide-copy h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  line-height: 1.04;
}

.order-guide-copy p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  line-height: 1.65;
  font-weight: 700;
}

.order-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.order-guide-actions a,
.order-guide-help a,
.order-guide-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 900;
}

.order-guide-actions a:first-child,
.order-guide-cta a {
  color: #fff;
  background: #047fbf;
  box-shadow: 0 14px 28px rgba(2, 118, 180, .2);
}

.order-guide-actions a:last-child,
.order-guide-help a {
  border: 1px solid rgba(2, 148, 221, .22);
  color: #057da5;
  background: #fff;
}

.order-guide-visual {
  position: relative;
}

.order-guide-visual img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(18, 58, 84, .16);
}

.order-guide-status {
  position: absolute;
  right: 22px;
  bottom: -22px;
  width: min(250px, calc(100% - 44px));
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 58, 84, .12);
}

.order-guide-status strong {
  color: #123f70;
  font-size: 18px;
}

.order-guide-status span {
  color: #60717d;
  font-size: 14px;
  font-weight: 800;
}

.order-guide-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.order-guide-quick a,
.order-guide-card,
.order-guide-steps article,
.order-guide-faq-list details {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 49, 70, .08);
}

.order-guide-quick a {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.order-guide-quick strong {
  color: #123f70;
  font-size: 20px;
}

.order-guide-quick span {
  color: #637482;
  line-height: 1.55;
  font-weight: 700;
}

.order-guide-flow,
.order-guide-details,
.order-guide-faq,
.order-guide-cta {
  margin-top: 72px;
}

.order-guide-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.order-guide-section-head h2,
.order-guide-card h2,
.order-guide-cta h2 {
  margin: 14px 0 0;
  color: #123f70;
}

.order-guide-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.order-guide-steps article {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.order-guide-steps article span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #047fbf, #e21483);
  font-size: 15px;
  font-weight: 900;
}

.order-guide-steps h3 {
  margin: 0 0 12px;
  color: #173343;
  font-size: 24px !important;
}

.order-guide-steps p,
.order-guide-card p,
.order-guide-faq-list p {
  color: #60717d;
  font-size: 16px !important;
  line-height: 1.65;
  font-weight: 700;
}

.order-guide-details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: stretch;
}

.order-guide-card {
  padding: 30px;
}

.order-guide-checklist ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.order-guide-checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: #2b3d49;
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.55;
}

.order-guide-checklist li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #047fbf, #16c29a);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.86);
}

.order-guide-help {
  display: grid;
  align-content: start;
}

.order-guide-help img {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef8fc;
}

.order-guide-help p {
  margin: 14px 0 24px;
}

.order-guide-faq-list {
  display: grid;
  gap: 14px;
}

.order-guide-faq-list details {
  padding: 20px 22px;
}

.order-guide-faq-list summary {
  cursor: pointer;
  color: #173343;
  font-size: 18px;
  font-weight: 900;
}

.order-guide-faq-list p {
  margin: 14px 0 0;
}

.order-guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 82px;
  padding: 30px 34px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #eef9fd;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

/* Review Us redesign */
.review-us-page {
  background:
    linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.review-us-hero {
  padding: 36px 0 70px;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .13), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.review-us-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 46px;
  align-items: center;
}

.review-us-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(2, 148, 221, .18);
  border-radius: 999px;
  color: #057da5;
  background: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-us-copy h1 {
  max-width: 760px;
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  line-height: 1.04;
}

.review-us-copy p,
.review-us-intro p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  line-height: 1.65;
  font-weight: 700;
}

.review-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.review-us-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 900;
}

.review-us-actions a:first-child {
  color: #fff;
  background: #047fbf;
  box-shadow: 0 14px 28px rgba(2, 118, 180, .2);
}

.review-us-actions a:last-child {
  border: 1px solid rgba(2, 148, 221, .22);
  color: #057da5;
  background: #fff;
}

.review-us-showcase {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.review-us-showcase img {
  width: 120px;
  height: 120px;
  margin: 0 0 18px auto;
  border-radius: 50%;
  object-fit: cover;
  background: #eef8fc;
}

.review-us-score {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .12), rgba(226, 20, 131, .08)),
    #eef9fd;
}

.review-us-score strong {
  color: #e21483;
  font-size: 58px;
  line-height: 1;
}

.review-us-score span {
  color: #123f70;
  font-size: 22px;
  font-weight: 900;
}

.review-us-score p {
  margin: 0;
  color: #60717d;
  font-size: 16px !important;
  line-height: 1.55;
  font-weight: 700;
}

.review-us-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -30px;
}

.review-us-points article,
.review-us-intro,
.review-us-layout .review-panel {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 49, 70, .08);
}

.review-us-points article {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.review-us-points strong {
  color: #123f70;
  font-size: 20px;
}

.review-us-points span {
  color: #637482;
  line-height: 1.55;
  font-weight: 700;
}

.review-us-platforms {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
  margin-top: 72px;
}

.review-us-platforms h2 {
  margin: 14px 0 0;
  color: #123f70;
}

.review-us-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-us-platform-grid a {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 49, 70, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.review-us-platform-grid a:hover,
.review-us-platform-grid a:focus-visible {
  border-color: rgba(2, 148, 221, .22);
  box-shadow: 0 18px 45px rgba(16, 49, 70, .1);
  outline: none;
  transform: translateY(-2px);
}

.review-us-platform-grid strong {
  color: #123f70;
  font-size: 19px;
}

.review-us-platform-grid span {
  color: #637482;
  line-height: 1.55;
  font-weight: 700;
}

.review-us-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
  margin-top: 46px;
  margin-bottom: 86px;
}

.review-us-intro {
  padding: 30px;
}

.review-us-intro h2 {
  margin: 14px 0 16px;
  color: #123f70;
}

.review-us-intro ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.review-us-intro li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: #2b3d49;
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.55;
}

.review-us-intro li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #047fbf, #16c29a);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.86);
}

.review-us-layout .review-panel {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.review-us-layout .review-panel-head {
  min-height: 68px;
  justify-content: flex-start;
  padding: 0 28px;
  color: #123f70;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #eef9fd;
  font-size: 22px;
}

.review-us-layout .review-panel-body {
  padding: 28px;
}

.review-us-layout .review-form {
  width: 100%;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-us-layout .review-form label {
  display: grid;
  gap: 8px;
}

.review-us-layout .review-form label span {
  padding: 0;
  color: #293b47;
  font-size: 15px;
}

.review-us-layout .review-comments,
.review-us-layout .review-captcha,
.review-us-layout .review-form button {
  grid-column: 1 / -1;
}

.review-us-layout .review-form input,
.review-us-layout .review-form textarea {
  min-height: 50px;
  border-radius: 7px;
  padding: 0 15px;
  color: #172d3b;
  font-size: 16px;
}

.review-us-layout .review-form textarea {
  min-height: 140px;
  padding-top: 14px;
}

.review-us-layout .review-captcha {
  width: min(100%, 340px);
  min-height: 76px;
  grid-template-columns: 30px minmax(0, 1fr) 72px;
  align-items: center;
  border-color: #d8e2e8;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(16, 42, 58, .08);
}

.review-us-layout .captcha-check {
  border-radius: 4px;
}

.review-us-layout .review-captcha p {
  font-size: 15px !important;
}

.review-us-layout .review-form button {
  justify-self: start;
  min-width: 180px;
  min-height: 48px;
  border-radius: 7px;
  background: #047fbf;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(2, 118, 180, .2);
}

/* Keep product listing card titles compact */
.service-product-card h2,
.service-product-card h3 {
  min-height: 58px;
  margin: 16px 14px 10px;
  color: #22313b;
  font-size: clamp(18px, 1.45vw, 22px) !important;
  line-height: 1.18;
}

.service-product-card p {
  font-size: 13px !important;
}

/* Review Us simplified final layout */
.review-us-page {
  background: #f6fafc;
}

.review-us-page .service-breadcrumb {
  padding-top: 28px;
}

.review-us-layout {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 26px;
  margin-bottom: 88px;
}

.review-us-intro {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #eef9fd;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.review-us-intro h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(40px, 4vw, 52px) !important;
  line-height: 1.06;
}

.review-us-intro p {
  color: #526979;
  font-size: 18px !important;
}

.review-us-intro ul {
  margin-top: 32px;
}

.review-us-secondary-link {
  min-height: 48px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid rgba(2, 148, 221, .22);
  border-radius: 7px;
  color: #057da5;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
}

.review-us-layout .review-panel {
  border-radius: 8px;
}

.review-us-layout .review-panel-head {
  min-height: 74px;
  background: #fff;
  border-bottom: 1px solid #e1edf2;
}

.review-us-layout .review-panel-body {
  padding: 34px;
}

.review-us-layout .review-form {
  gap: 20px;
}

.review-us-layout .review-form button {
  width: max-content;
}

/* Custom Quote redesign */
.custom-quote-modern {
  width: 100%;
  padding: 0 0 96px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 420px, #f7fbfd 100%);
}

.custom-quote-hero {
  padding: 44px 0 66px;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.custom-quote-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
}

.custom-quote-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #057da5;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(2, 148, 221, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-quote-hero h1 {
  margin: 18px 0;
  padding: 0;
  color: #123f70;
  background: none;
  text-align: left;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  line-height: 1.04;
}

.custom-quote-hero p {
  max-width: 660px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.custom-quote-hero-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.custom-quote-hero-card strong {
  color: #e21483;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.custom-quote-hero-card span {
  color: #123f70;
  font-size: 18px;
  font-weight: 900;
}

.custom-quote-hero-card a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: #047fbf;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .22);
}

.custom-quote-modern .quote-intro {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -28px;
  padding: 28px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  color: #526979;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.custom-quote-modern .quote-intro h2 {
  margin: 12px 0 0;
  padding: 0;
  color: #123f70;
  background: none;
  text-align: left;
  font-size: clamp(28px, 3vw, 36px) !important;
  line-height: 1.12;
}

.custom-quote-modern .quote-intro ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #526979;
  background: none;
  box-shadow: none;
  list-style: none;
}

.custom-quote-modern .quote-intro li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.custom-quote-modern .quote-intro li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #08a7d8;
  box-shadow: 0 0 0 5px rgba(8, 167, 216, .12);
}

.custom-quote-form-shell {
  margin-top: 36px;
}

.custom-quote-modern .quote-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .42fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.custom-quote-modern .quote-fields,
.custom-quote-modern .quote-side {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 63, 112, .08);
}

.custom-quote-modern .quote-form label,
.custom-quote-modern .quote-form fieldset {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  color: #293b47;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.custom-quote-modern .quote-form input,
.custom-quote-modern .quote-form select,
.custom-quote-modern .quote-form textarea {
  min-height: 48px;
  width: 100%;
  height: auto;
  padding: 0 14px;
  border: 1px solid #d5e6ed;
  border-radius: 7px;
  color: #172d3b;
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
}

.custom-quote-modern .quote-form textarea {
  min-height: 150px;
  padding-top: 12px;
  resize: vertical;
}

.custom-quote-modern .quote-form input:focus,
.custom-quote-modern .quote-form select:focus,
.custom-quote-modern .quote-form textarea:focus {
  border-color: #08a7d8;
  outline: 3px solid rgba(8, 167, 216, .16);
}

.custom-quote-modern .quote-qty {
  display: grid;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.custom-quote-modern .quote-qty-label,
.custom-quote-modern .quote-radio-label {
  color: #293b47;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.custom-quote-modern .quote-radios {
  display: grid;
  grid-template-columns: 160px max-content max-content;
  gap: 14px 18px;
  align-items: center;
}

.custom-quote-modern .quote-radios label,
.custom-quote-modern .quote-radios.compact label {
  display: inline-flex;
  grid-template-columns: none;
  gap: 8px;
  align-items: center;
  color: #526979;
  font-size: 15px;
  font-weight: 900;
}

.custom-quote-modern .quote-radios input[type="radio"] {
  min-height: 0;
  width: 16px;
  height: 16px;
}

.custom-quote-modern .quote-fields p {
  margin: 4px 0 0 174px;
  color: #7a8f9d;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.5;
}

.custom-quote-modern .quote-side {
  align-content: start;
  position: sticky;
  top: 18px;
}

.custom-quote-modern .quote-side fieldset {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  border: 0;
}

.custom-quote-modern .quote-side legend {
  margin: 0;
  color: #293b47;
  font-size: 15px;
  font-weight: 900;
}

.custom-quote-modern .quote-print-collage {
  height: auto;
  margin: 8px 0 0;
  padding: 18px;
  border-radius: 8px;
  background: #eef9fd;
  overflow: hidden;
}

.custom-quote-modern .quote-print-collage img {
  position: static;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(18, 63, 112, .16));
}

.custom-quote-modern .quote-side button[type="submit"] {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #047fbf;
  box-shadow: 0 14px 28px rgba(4, 127, 191, .24);
  font-size: 16px !important;
  font-weight: 950;
}

.custom-quote-modern .quote-side button[type="submit"]:hover {
  background: #e21483;
}

@media (max-width: 1000px) {
  .review-us-layout {
    grid-template-columns: 1fr;
  }

  .review-us-intro {
    min-height: 0;
  }

  .custom-quote-hero-inner,
  .custom-quote-modern .quote-intro,
  .custom-quote-modern .quote-form {
    grid-template-columns: 1fr;
  }

  .custom-quote-modern .quote-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .review-us-layout {
    margin-top: 18px;
    margin-bottom: 62px;
  }

  .review-us-intro,
  .review-us-layout .review-panel-body {
    padding: 22px;
  }

  .review-us-intro h1 {
    font-size: 34px !important;
  }

  .review-us-secondary-link,
  .review-us-layout .review-form button {
    width: 100%;
  }

  .custom-quote-modern {
    padding-bottom: 64px;
  }

  .custom-quote-hero {
    padding: 30px 0 52px;
  }

  .custom-quote-hero h1 {
    font-size: 34px !important;
  }

  .custom-quote-hero p {
    font-size: 16px !important;
  }

  .custom-quote-hero-card,
  .custom-quote-modern .quote-intro,
  .custom-quote-modern .quote-fields,
  .custom-quote-modern .quote-side {
    padding: 22px;
  }

  .custom-quote-modern .quote-form label,
  .custom-quote-modern .quote-form fieldset,
  .custom-quote-modern .quote-qty,
  .custom-quote-modern .quote-radios {
    grid-template-columns: 1fr;
  }

  .custom-quote-modern .quote-fields p {
    margin-left: 0;
  }
}

@media (max-width: 1000px) {
  .order-guide-hero-inner,
  .order-guide-details,
  .order-guide-cta {
    grid-template-columns: 1fr;
  }

  .order-guide-quick {
    grid-template-columns: 1fr;
  }

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

  .review-us-hero-inner,
  .review-us-layout,
  .review-us-platforms {
    grid-template-columns: 1fr;
  }

  .review-us-points,
  .review-us-platform-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .order-guide-hero {
    padding: 26px 0 48px;
  }

  .order-guide-copy h1 {
    font-size: 34px !important;
  }

  .order-guide-copy p {
    font-size: 16px !important;
  }

  .order-guide-actions,
  .order-guide-actions a,
  .order-guide-cta a {
    width: 100%;
  }

  .order-guide-status {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .order-guide-flow,
  .order-guide-details,
  .order-guide-faq,
  .order-guide-cta {
    margin-top: 46px;
  }

  .order-guide-steps {
    grid-template-columns: 1fr;
  }

  .order-guide-steps article {
    min-height: 0;
  }

  .order-guide-card,
  .order-guide-cta {
    padding: 22px;
  }

  .review-us-hero {
    padding: 28px 0 50px;
  }

  .review-us-copy h1 {
    font-size: 34px !important;
  }

  .review-us-copy p,
  .review-us-intro p {
    font-size: 16px !important;
  }

  .review-us-actions,
  .review-us-actions a {
    width: 100%;
  }

  .review-us-layout {
    margin-top: 46px;
  }

  .review-us-layout .review-form {
    grid-template-columns: 1fr;
  }

  .account-page {
    width: min(100% - 28px, 1220px);
    padding: 28px 0 64px;
  }

  .header-main {
    min-height: 0;
  }

  .account-sidebar {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .history-panel h1 {
    padding: 20px;
    font-size: 26px !important;
  }

  .history-content,
  .detail-content,
  .artwork-content,
  .password-content,
  .proof-content,
  .tracking-content,
  .studio-content,
  .quotes-content {
    padding: 20px;
  }
}

/* Custom Quote final visual reset */
.quote-full-color.custom-quote-page.custom-quote-modern {
  width: 100% !important;
  max-width: none !important;
  padding: 0 0 90px !important;
  background: #f5fbfe !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .page-width {
  width: min(1180px, calc(100% - 48px));
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero {
  padding: 42px 0 50px;
  background:
    radial-gradient(circle at 12% 12%, rgba(226, 20, 131, .12), transparent 34%),
    linear-gradient(135deg, #e9f8fd 0%, #fff 58%, #f7fbff 100%);
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .58fr);
  gap: 38px;
  align-items: center;
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero h1 {
  display: block !important;
  min-height: 0 !important;
  justify-content: flex-start !important;
  margin: 16px 0 16px !important;
  color: #103f70 !important;
  background: transparent !important;
  font-size: clamp(40px, 4vw, 54px) !important;
  font-weight: 950 !important;
  line-height: 1.04 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero p {
  max-width: 640px;
  color: #526979;
  font-size: 17px !important;
  line-height: 1.62;
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-card {
  min-height: 250px;
  align-content: center;
  padding: 30px;
  border: 0;
  border-left: 6px solid #08a7d8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 63, 112, .14);
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-card strong {
  color: #103f70;
  font-size: 30px;
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-card a {
  width: max-content;
  background: #e21483;
  box-shadow: 0 12px 26px rgba(226, 20, 131, .22);
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-intro {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr) !important;
  margin-top: -24px !important;
  margin-bottom: 30px !important;
  padding: 24px 28px !important;
  border: 1px solid #dfeef5 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(16, 63, 112, .1) !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-intro h2 {
  padding: 0 !important;
  color: #103f70 !important;
  font-size: clamp(26px, 2.6vw, 34px) !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-intro ul {
  padding: 0 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-form-shell {
  margin-top: 0 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 22px !important;
  padding: 0 !important;
  background: transparent !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-fields,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-side {
  gap: 16px !important;
  padding: 28px !important;
  border: 1px solid #dfeef5 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(16, 63, 112, .09) !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-form label,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-form fieldset {
  grid-template-columns: 148px minmax(0, 1fr) !important;
  gap: 14px !important;
  color: #253947 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-form input,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-form select,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-form textarea {
  min-height: 46px !important;
  height: auto !important;
  border: 1px solid #d4e5ed !important;
  border-radius: 6px !important;
  background: #fbfdfe !important;
  color: #172d3b !important;
  font-size: 15px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-form textarea {
  min-height: 132px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-qty {
  display: grid !important;
  grid-template-columns: 148px repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-qty-label,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-radio-label {
  flex: none !important;
  color: #253947 !important;
  font-size: 14px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-qty input {
  width: 100% !important;
  flex: none !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-radios {
  display: grid !important;
  grid-template-columns: 148px max-content max-content !important;
  gap: 12px 18px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-radios label {
  display: inline-flex !important;
  grid-template-columns: none !important;
  gap: 8px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-radios input[type="radio"] {
  width: 16px !important;
  height: 16px !important;
  min-height: 0 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-group {
  display: grid !important;
  grid-template-columns: 148px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-label {
  display: block !important;
  color: #253947 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options {
  min-width: 0;
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options label {
  min-height: 46px;
  min-width: 146px;
  flex: 1 1 146px !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px !important;
  padding: 0 12px;
  border: 1px solid #d4e5ed;
  border-radius: 6px;
  color: #253947 !important;
  background: #fbfdfe;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: left;
  cursor: pointer;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options span {
  display: block;
  overflow-wrap: normal;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options input {
  width: 15px !important;
  height: 15px !important;
  min-height: 0 !important;
  flex: 0 0 auto;
  accent-color: #047fbf;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options label:has(input:checked) {
  border-color: #08a7d8;
  color: #047fbf !important;
  background: #eef9fd;
  box-shadow: inset 0 0 0 1px rgba(8, 167, 216, .16);
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-fields > p {
  margin: 2px 0 0 162px !important;
  color: #6f8492 !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-side {
  position: sticky !important;
  top: 18px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-side label,
.quote-full-color.custom-quote-page.custom-quote-modern .quote-side fieldset {
  grid-template-columns: 1fr !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-radios.compact {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-radios.compact legend {
  grid-column: 1 / -1;
  flex: none !important;
  color: #253947;
  font-size: 14px;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-print-collage {
  height: auto !important;
  margin: 6px 0 0 !important;
  padding: 14px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #eef9fd, #fff) !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-print-collage img {
  height: auto !important;
  object-fit: contain !important;
}

.quote-full-color.custom-quote-page.custom-quote-modern .quote-side button[type="submit"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  margin-top: 6px !important;
  border-radius: 6px !important;
  background: #047fbf !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

.quote-login-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 8px;
  background: #fff1f2;
  color: #991b1b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.quote-login-message a {
  color: #0f62a8;
  text-decoration: underline;
}

body.quote-login-modal-open {
  overflow: hidden;
}

body.quote-login-modal-open > :not(.quote-login-modal) {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.quote-login-modal[hidden] {
  display: none;
}

.quote-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quote-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.quote-login-dialog {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  text-align: center;
}

.quote-login-kicker {
  display: block;
  margin-bottom: 8px;
  color: #047fbf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-login-dialog h3 {
  margin: 0;
  color: #17212b;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.quote-login-dialog p {
  margin: 10px auto 18px;
  max-width: 280px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.quote-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.quote-login-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.quote-login-primary {
  background: #047fbf;
  color: #fff;
}

.quote-login-secondary {
  border: 1px solid rgba(4, 127, 191, 0.28);
  background: #f3f9fc;
  color: #0f62a8;
}

@media (max-width: 520px) {
  .quote-login-dialog {
    padding: 24px 18px;
  }

  .quote-login-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-inner,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-intro,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-form {
    grid-template-columns: 1fr !important;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .quote-side {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .quote-full-color.custom-quote-page.custom-quote-modern .page-width {
    width: min(100% - 28px, 1180px);
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero h1 {
    font-size: 34px !important;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .custom-quote-hero-card,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-intro,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-fields,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-side {
    padding: 20px !important;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .quote-form label,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-form fieldset,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-group,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-qty,
  .quote-full-color.custom-quote-page.custom-quote-modern .quote-radios {
    grid-template-columns: 1fr !important;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .quote-choice-options label {
    min-width: 0;
  }

  .quote-full-color.custom-quote-page.custom-quote-modern .quote-fields > p {
    margin-left: 0 !important;
  }
}

/* Sample Request redesign */
.sample-request-modern {
  color: #172d3b;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.sample-request-modern .page-width {
  width: min(1180px, calc(100% - 48px));
}

.sample-request-modern .sample-hero-band {
  padding: 34px 0 58px;
  background:
    radial-gradient(circle at 14% 10%, rgba(226, 20, 131, .11), transparent 34%),
    linear-gradient(135deg, #eaf8fd 0%, #fff 62%, #f7fbff 100%);
  border-bottom: 1px solid #dcecf3;
}

.sample-request-modern .sample-hero {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  grid-template-areas:
    "crumb crumb"
    "copy card";
  gap: 28px 42px;
  align-items: center;
}

.sample-request-modern .sample-breadcrumb {
  grid-area: crumb;
  height: auto;
  min-height: 0;
  width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #5f7481;
  font-size: 14px;
  font-weight: 800;
}

.sample-request-modern .sample-breadcrumb a {
  color: #057da5;
}

.sample-hero-copy {
  grid-area: copy;
  max-width: 720px;
}

.sample-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #057da5;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(2, 148, 221, .16);
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sample-request-modern .sample-hero h1 {
  margin: 18px 0;
  color: #103f70;
  font-size: clamp(40px, 4.2vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.sample-request-modern .sample-hero p {
  max-width: 650px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.sample-hero-card {
  grid-area: card;
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 230px;
  padding: 30px;
  border-left: 6px solid #08a7d8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 63, 112, .14);
}

.sample-hero-card strong {
  color: #e21483;
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.sample-hero-card span {
  color: #103f70;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.sample-request-modern .sample-request-area {
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 26px;
  align-items: start;
  padding: 44px 0 58px;
}

.sample-request-modern .sample-form,
.sample-request-modern .sample-promo {
  max-width: none;
  padding: 30px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 63, 112, .09);
}

.sample-form-heading {
  margin-bottom: 24px;
}

.sample-request-modern .sample-form h2 {
  margin: 14px 0 8px;
  color: #103f70;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 950;
  line-height: 1.1;
}

.sample-form-heading p {
  margin: 0;
  color: #617888;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.55;
}

.sample-request-modern .sample-form label,
.sample-request-modern .sample-form .sample-field {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: #253947;
  font-size: 15px;
  font-weight: 900;
}

.sample-request-modern .sample-custom-select {
  z-index: 2;
}

.sample-request-modern .sample-custom-select.open {
  z-index: 20;
}

.sample-request-modern .sample-product-picker {
  border: 1px solid #d4e5ed;
  border-radius: 7px;
  background: #fbfdfe;
  overflow: hidden;
}

.sample-request-modern .sample-product-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #d4e5ed;
  color: #172d3b;
  font-size: 14px;
}

.sample-request-modern .sample-product-picker-head strong {
  font-weight: 950;
}

.sample-request-modern .sample-product-picker-head em {
  color: #047fbf;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.sample-request-modern .sample-product-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-height: 290px;
  overflow-y: auto;
}

.sample-request-modern .sample-form .sample-product-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  margin: 0;
  padding: 9px 12px;
  border-bottom: 1px solid #e7f0f4;
  color: #253947;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.sample-request-modern .sample-product-options label:nth-child(odd) {
  border-right: 1px solid #e7f0f4;
}

.sample-request-modern .sample-product-options input {
  width: 16px;
  height: 16px;
  accent-color: #047fbf;
  flex: 0 0 auto;
}

.sample-request-modern .sample-product-options label:has(input:checked) {
  color: #047fbf;
  background: #eef8fd;
}

.sample-request-modern .sample-product-options label:has(input:disabled) {
  color: #99aab5;
  cursor: not-allowed;
}

.sample-request-modern .sample-custom-select > button,
.sample-request-modern .sample-form textarea {
  min-height: 48px;
  border: 1px solid #d4e5ed;
  border-radius: 7px;
  color: #172d3b;
  background: #fbfdfe;
  font-size: 16px;
  font-weight: 750;
}

.sample-request-modern .sample-custom-select > button {
  height: 48px;
  padding: 0 15px;
}

.sample-request-modern .sample-custom-select ul {
  max-height: 230px;
  overflow-y: auto;
  border: 1px solid #cde4ee;
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(16, 63, 112, .16);
}

.sample-request-modern .sample-custom-select li button {
  min-height: 40px;
  color: #253947;
  font-size: 15px;
  font-weight: 800;
}

.sample-request-modern .sample-custom-select li:first-child button,
.sample-request-modern .sample-custom-select li button:hover {
  color: #fff;
  background: #047fbf;
}

.sample-request-modern .sample-form textarea {
  height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

.sample-request-modern .sample-form button[type="submit"] {
  width: 100%;
  min-height: 52px;
  margin: 8px 0 0;
  border-radius: 7px;
  background: #047fbf;
  box-shadow: 0 14px 28px rgba(4, 127, 191, .22);
  font-size: 16px !important;
  font-weight: 950;
}

.sample-request-modern .sample-form button[type="submit"]:hover {
  background: #e21483;
}

.sample-request-modern .sample-promo {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 20px;
  padding-top: 24px;
}

.sample-request-modern .sample-promo-bar {
  min-height: 0;
  margin: 0;
  padding: 18px 20px;
  border-radius: 8px;
  color: #103f70;
  background: #eef9fd;
  font-size: 17px;
  line-height: 1.4;
}

.sample-request-modern .sample-promo img {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(16, 63, 112, .14));
}

.sample-promo-points {
  display: grid;
  gap: 12px;
}

.sample-promo-points span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: #526979;
  font-size: 15px;
  font-weight: 850;
}

.sample-promo-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: #08a7d8;
  box-shadow: 0 0 0 5px rgba(8, 167, 216, .12);
}

.sample-request-modern .sample-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0 0 90px;
}

.sample-request-modern .sample-copy article {
  margin: 0;
  padding: 24px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 63, 112, .07);
}

.sample-request-modern .sample-copy h2 {
  margin: 0 0 10px;
  color: #103f70;
  font-size: 22px !important;
  font-weight: 950;
}

.sample-request-modern .sample-copy p {
  color: #617888;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .sample-request-modern .sample-hero,
  .sample-request-modern .sample-request-area,
  .sample-request-modern .sample-copy {
    grid-template-columns: 1fr;
  }

  .sample-request-modern .sample-hero {
    grid-template-areas:
      "crumb"
      "copy"
      "card";
  }

  .sample-request-modern .sample-promo {
    position: static;
  }
}

@media (max-width: 768px) {
  .sample-request-modern .page-width {
    width: min(100% - 28px, 1180px);
  }

  .sample-request-modern .sample-hero-band {
    padding: 24px 0 42px;
  }

  .sample-request-modern .sample-hero h1 {
    font-size: 34px !important;
  }

  .sample-request-modern .sample-hero p {
    font-size: 16px !important;
  }

  .sample-request-modern .sample-form,
  .sample-request-modern .sample-promo,
  .sample-request-modern .sample-copy article,
  .sample-hero-card {
    padding: 20px;
  }

  .sample-request-modern .sample-product-options {
    grid-template-columns: 1fr;
  }

  .sample-request-modern .sample-product-options label:nth-child(odd) {
    border-right: 0;
  }
}

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

.industry-page {
  color: #172d3b;
  background: linear-gradient(180deg, #f3fbfe 0, #fff 480px, #f7fbfd 100%);
  font-family: "Inter", Helvetica, sans-serif;
}

.industry-page .page-width {
  width: min(1200px, calc(100% - 48px));
}

.industry-breadcrumb {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #617888;
  font-size: 14px;
  font-weight: 800;
}

.industry-breadcrumb a {
  color: #057da5;
}

.industry-hero {
  padding: 38px 0 66px;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcecf3;
  background:
    radial-gradient(circle at 14% 10%, rgba(226, 20, 131, .11), transparent 34%),
    linear-gradient(135deg, #eaf8fd 0%, #fff 60%, #f7fbff 100%);
}

.industry-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 44px;
  align-items: center;
}

.industry-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #057da5;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(2, 148, 221, .16);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industry-hero h1 {
  max-width: 800px;
  margin: 18px 0;
  color: #103f70;
  font-size: clamp(42px, 4.6vw, 56px) !important;
  font-weight: 950;
  line-height: 1.04;
}

.industry-hero p {
  max-width: 670px;
  margin: 0;
  color: #526979;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.industry-hero-actions,
.industry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.industry-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 950;
}

.industry-button.primary {
  color: #fff;
  background: #047fbf;
  box-shadow: 0 14px 28px rgba(4, 127, 191, .22);
}

.industry-button.secondary {
  color: #057da5;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(2, 148, 221, .22);
}

.industry-hero-visual {
  margin: 0;
  padding: 24px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 63, 112, .14);
}

.industry-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(16, 63, 112, .14));
}

.industry-search {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: -28px;
  padding: 24px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 63, 112, .1);
}

.industry-search-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #d4e5ed;
  border-radius: 7px;
  color: #172d3b;
  background: #fbfdfe;
  font-size: 16px;
  font-weight: 800;
}

.industry-search-box input:focus,
.industry-filters button:focus-visible,
.industry-card:focus-visible,
.industry-product-list a:focus-visible,
.industry-button:focus-visible {
  outline: 3px solid rgba(8, 167, 216, .26);
  outline-offset: 3px;
}

.industry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-filters button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #d4e5ed;
  border-radius: 999px;
  color: #526979;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.industry-filters button.is-active,
.industry-filters button:hover {
  color: #fff;
  border-color: #047fbf;
  background: #047fbf;
}

.industry-grid-section,
.industry-products,
.industry-steps,
.industry-final-cta {
  margin-top: 72px;
}

.industry-section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.industry-section-heading h2,
.industry-final-cta h2 {
  margin: 14px 0 0;
  color: #103f70;
  font-size: clamp(30px, 3vw, 40px) !important;
  font-weight: 950;
  line-height: 1.1;
}

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

.industry-card {
  min-width: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: 178px auto auto auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  color: #172d3b;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 63, 112, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 127, 191, .32);
  box-shadow: 0 22px 46px rgba(16, 63, 112, .14);
}

.industry-card[hidden] {
  display: none;
}

.industry-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 7px;
  background: #eef9fd;
}

.industry-card h3 {
  margin: 0 0 8px;
  color: #103f70;
  font-size: 23px !important;
  font-weight: 950;
  line-height: 1.15;
}

.industry-card p {
  margin: 0;
  color: #617888;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.55;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.industry-tags span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #057da5;
  background: #eef9fd;
  font-size: 12px;
  font-weight: 900;
}

.industry-card-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  border-radius: 7px;
  color: #fff;
  background: #047fbf;
  font-size: 15px;
  font-weight: 950;
}

.industry-empty {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  color: #526979;
  background: #fff;
  font-size: 16px !important;
  font-weight: 800;
}

.industry-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-product-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  color: #103f70;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 63, 112, .06);
  font-size: 16px;
  font-weight: 950;
}

.industry-product-list a:hover {
  color: #fff;
  border-color: #047fbf;
  background: #047fbf;
}

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

.industry-step-grid article,
.industry-final-cta {
  padding: 28px;
  border: 1px solid #dfeef5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08);
}

.industry-step-grid span {
  color: #e21483;
  font-size: 13px;
  font-weight: 950;
}

.industry-step-grid h3 {
  margin: 10px 0;
  color: #103f70;
  font-size: 24px !important;
  font-weight: 950;
}

.industry-step-grid p,
.industry-final-cta p {
  margin: 0;
  color: #617888;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.6;
}

.industry-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 92px;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .12), rgba(226, 20, 131, .08)),
    #fff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .reveal-on-scroll {
    transition: none;
  }

  .industry-card:hover,
  .reveal-on-scroll {
    transform: none;
  }

  .reveal-on-scroll {
    opacity: 1;
  }
}

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

@media (max-width: 900px) {
  .industry-hero-inner,
  .industry-search,
  .industry-step-grid,
  .industry-final-cta {
    grid-template-columns: 1fr;
  }

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

  .industry-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .industry-page .page-width {
    width: min(100% - 28px, 1200px);
  }

  .industry-hero {
    padding: 28px 0 48px;
  }

  .industry-hero h1 {
    font-size: 34px !important;
  }

  .industry-hero p {
    font-size: 16px !important;
  }

  .industry-hero-actions,
  .industry-hero-actions a,
  .industry-cta-actions,
  .industry-cta-actions a {
    width: 100%;
  }

  .industry-search {
    margin-top: -20px;
    padding: 18px;
  }

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

  .industry-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .industry-product-list a {
    min-height: 54px;
    padding: 0 12px;
    font-size: 14px;
  }

  .industry-card {
    grid-template-rows: 170px auto auto auto;
  }

  .industry-card img {
    height: 170px;
  }

  .industry-step-grid article,
  .industry-final-cta,
  .industry-hero-visual {
    padding: 20px;
  }
}

/* Account dashboard professional refinement */
.account-page {
  width: min(1240px, calc(100% - 48px)) !important;
  padding: 36px 0 92px !important;
  color: #172d3b;
}

.account-success {
  min-height: 52px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px !important;
  padding: 12px 18px !important;
  border: 1px solid #cfe6ef !important;
  border-left: 5px solid #047fbf !important;
  border-radius: 8px !important;
  color: #17445f !important;
  background: #f4fbfe !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 800;
}

.account-layout {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.account-sidebar {
  position: sticky !important;
  top: 18px !important;
  display: grid !important;
  gap: 4px !important;
  padding: 10px !important;
  border: 1px solid #dfeaf0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08) !important;
}

.account-sidebar button {
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 12px 0 36px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  color: #243947 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  text-align: left !important;
}

.account-sidebar button::before {
  left: 14px !important;
  border-left-color: #8aa0ad !important;
}

.account-sidebar button:hover,
.account-sidebar button:focus-visible {
  color: #047fbf !important;
  border-color: #d5e8f0 !important;
  background: #f3fafd !important;
  outline: 3px solid rgba(8, 167, 216, .16) !important;
  outline-offset: 1px !important;
}

.account-sidebar button.active {
  color: #fff !important;
  border-color: #047fbf !important;
  background: #047fbf !important;
  box-shadow: 0 10px 22px rgba(4, 127, 191, .18) !important;
}

.account-sidebar button.active::before {
  border-left-color: #fff !important;
}

.history-panel {
  overflow: hidden !important;
  border: 1px solid #dfeaf0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08) !important;
}

.history-panel h1 {
  margin: 0 !important;
  padding: 24px 28px 20px !important;
  border-bottom: 1px solid #e4eef3 !important;
  color: #172d3b !important;
  background: #fff !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
}

.history-content,
.detail-content,
.artwork-content,
.password-content,
.proof-content,
.tracking-content,
.studio-content,
.quotes-content {
  padding: 28px !important;
}

.history-content p {
  max-width: 760px;
  margin: 0 0 10px !important;
  color: #61727e !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.65 !important;
}

.history-content h2 {
  margin: 28px 0 18px !important;
  color: #103f70 !important;
  font-size: clamp(24px, 2.5vw, 32px) !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  text-align: left !important;
}

.date-search {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(190px, 1fr)) auto auto !important;
  gap: 14px !important;
  align-items: end !important;
  padding: 18px !important;
  border: 1px solid #dfeaf0 !important;
  border-radius: 8px !important;
  background: #f8fbfd !important;
}

.date-search label {
  display: grid !important;
  gap: 8px !important;
  color: #405360 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.date-search span {
  display: block !important;
  position: relative;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
}

.date-search b {
  display: none !important;
}

.date-search input {
  width: 100% !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #cfe2eb !important;
  border-radius: 6px !important;
  color: #172d3b !important;
  background: #fff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.date-search input:focus {
  border-color: #08a7d8 !important;
  outline: 3px solid rgba(8, 167, 216, .18) !important;
}

.date-search button {
  min-width: 82px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid #047fbf !important;
  border-radius: 6px !important;
  color: #fff !important;
  background: #047fbf !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.date-search button[type="reset"] {
  color: #047fbf !important;
  background: #fff !important;
}

.order-list {
  margin-left: 284px;
  margin-top: 24px;
}

.order-card,
.order-table-card {
  border: 1px solid #dfeaf0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08) !important;
}

.account-table-wrap {
  border: 1px solid #e2edf3 !important;
  border-radius: 8px !important;
}

.account-table th,
.order-history-table th,
.quotes-table th {
  color: #17445f !important;
  background: #f1f8fb !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.account-table td,
.order-history-table td,
.quotes-table td {
  color: #344956 !important;
  font-size: 14px !important;
}

.quotes-table .quote-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #047fbf;
  background: #eef9fd;
  font-size: 13px;
  font-weight: 500;
}

.quotes-table .quote-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quotes-table .quote-actions a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #047fbf !important;
  background: #eef9fd;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.quotes-table .quote-actions a:last-child {
  color: #fff !important;
  background: #047fbf;
}

.quotes-table .quote-actions a:hover,
.quotes-table .quote-actions a:focus-visible {
  color: #fff !important;
  background: #e21483;
  outline: 3px solid rgba(226, 20, 131, .14);
  outline-offset: 2px;
}

@media (max-width: 1000px) {
  .account-layout {
    grid-template-columns: 1fr !important;
  }

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

  .order-list {
    margin-left: 0;
  }

  .date-search {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 680px) {
  .account-page {
    width: min(100% - 28px, 1240px) !important;
    padding-top: 26px !important;
  }

  .account-sidebar,
  .date-search {
    grid-template-columns: 1fr !important;
  }

  .history-panel h1,
  .history-content,
  .detail-content,
  .artwork-content,
  .password-content,
  .proof-content,
  .tracking-content,
  .studio-content,
  .quotes-content {
    padding: 20px !important;
  }

  .history-content h2 {
    font-size: 24px !important;
  }

  .date-search button {
    width: 100% !important;
  }
}

/* Account sidebar clipping fix */
.account-layout {
  grid-template-columns: 300px minmax(0, 1fr) !important;
}

.account-sidebar {
  width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.account-sidebar button {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 46px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  padding-right: 14px !important;
}

.account-sidebar button.active {
  min-height: 50px !important;
}

.order-list {
  margin-left: 324px !important;
}

@media (max-width: 1000px) {
  .account-layout {
    grid-template-columns: 1fr !important;
  }

  .order-list {
    margin-left: 0 !important;
  }
}

@media (max-width: 680px) {
  .account-sidebar button {
    min-height: 44px !important;
    padding-left: 34px !important;
  }
}

/* Account sidebar compact readability fix */
.account-layout {
  grid-template-columns: 260px minmax(0, 1fr) !important;
}

.account-sidebar {
  padding: 8px !important;
}

.account-sidebar button {
  min-height: 42px !important;
  padding: 9px 10px 9px 30px !important;
  font-size: 13px !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.account-sidebar button::before {
  left: 12px !important;
}

.account-sidebar button.active {
  min-height: 44px !important;
}

.order-list {
  margin-left: 284px !important;
}

@media (max-width: 1120px) {
  .account-layout {
    grid-template-columns: 1fr !important;
  }

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

  .order-list {
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  .account-sidebar {
    grid-template-columns: 1fr !important;
  }
}

/* Account page tab bar layout fix */
.account-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

.account-sidebar {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 12px !important;
  overflow: visible !important;
}

.account-sidebar button {
  min-height: 46px !important;
  justify-content: flex-start !important;
  padding: 10px 12px 10px 34px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: 14px !important;
}

.account-sidebar button::before {
  left: 14px !important;
}

.order-list {
  margin-left: 0 !important;
  margin-top: 22px !important;
}

@media (max-width: 680px) {
  .account-sidebar {
    grid-template-columns: 1fr !important;
  }
}

/* Payment field containment - must stay after account overrides */
.franchise-payment-step {
  padding-left: clamp(20px, 3vw, 34px) !important;
  padding-right: clamp(20px, 3vw, 34px) !important;
}

.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 288px) !important;
  gap: clamp(24px, 4vw, 40px) !important;
}

.franchise-payment-step .franchise-payment-card,
.franchise-payment-step .franchise-pay-panel,
.franchise-payment-step .franchise-card-form,
.franchise-payment-step .franchise-card-form label,
.franchise-payment-step .franchise-card-form input {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.franchise-payment-step .franchise-card-form input:not([type="checkbox"]) {
  display: block !important;
  width: 100% !important;
}

.franchise-payment-step .franchise-card-form {
  width: 100% !important;
  overflow: hidden !important;
}

.franchise-payment-step .franchise-card-form div {
  min-width: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
  .franchise-payment-step .franchise-payment-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pay Later exact reference layout */
.franchise-payment-step {
  padding: 22px 28px 32px !important;
  border: 1px solid #e4edf5 !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.franchise-payment-step .franchise-detail-back {
  min-width: 248px !important;
  min-height: 44px !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin: 0 0 40px !important;
  padding: 0 18px !important;
  border: 1px solid #dbe7f0 !important;
  border-radius: 7px !important;
  color: #06122d !important;
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(15, 54, 89, .08) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.franchise-payment-step .franchise-detail-back .franchise-icon {
  width: 21px !important;
  height: 21px !important;
  color: #06122d !important;
  stroke-width: 2.5 !important;
}

.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 350px) !important;
  gap: 36px !important;
  align-items: start !important;
}

.franchise-payment-step .franchise-payment-card {
  max-width: none !important;
}

.franchise-payment-step .franchise-step-label {
  min-height: 18px !important;
  margin-bottom: 12px !important;
  color: #006dff !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-card h2 {
  max-width: 430px !important;
  margin: 0 0 10px !important;
  color: #06122d !important;
  font-size: 52px !important;
  font-weight: 950 !important;
  line-height: .95 !important;
}

.franchise-payment-step .franchise-payment-card h2::after {
  width: 58px !important;
  height: 5px !important;
  margin-top: 14px !important;
}

.franchise-payment-step .franchise-payment-secure {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 0 22px !important;
  color: #526579 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.franchise-payment-step .franchise-payment-secure span {
  width: 14px !important;
  color: #006dff !important;
  font-size: 13px !important;
  overflow: hidden !important;
}

.franchise-payment-step .franchise-pay-later-panel {
  min-height: 142px !important;
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 28px !important;
  border: 1px solid #dfe9f2 !important;
  border-radius: 10px !important;
  color: #06122d !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(15, 54, 89, .08) !important;
}

.franchise-pay-method-icon {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #eef6ff !important;
}

.franchise-pay-method-icon img {
  width: 28px !important;
  height: 28px !important;
}

.franchise-payment-step .franchise-pay-later-panel h3 {
  margin: 0 0 10px !important;
  color: #06122d !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-pay-later-panel p {
  margin: 0 !important;
  color: #526579 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
}

.franchise-payment-step .franchise-payment-summary {
  gap: 20px !important;
  padding-top: 46px !important;
}

.franchise-payment-step .franchise-payment-total-card {
  gap: 24px !important;
  padding: 22px 20px 18px !important;
  border: 1px solid #dfe9f2 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(15, 54, 89, .1) !important;
}

.franchise-payment-step .franchise-order-summary-head {
  padding-bottom: 20px !important;
  border-bottom: 1px solid #dfe8ef !important;
}

.franchise-payment-step .franchise-order-summary-head > span {
  width: 53px !important;
  height: 53px !important;
  border-radius: 50% !important;
}

.franchise-payment-step .franchise-order-summary-head strong {
  font-size: 22px !important;
  line-height: 1.05 !important;
}

.franchise-payment-step .franchise-order-summary-head small {
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-summary p {
  color: #06122d !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

.franchise-payment-step .franchise-payment-summary p:nth-child(3) span {
  color: black !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total {
  margin: 2px -2px 0 !important;
  padding: 20px 16px !important;
  border: 1px solid #e2ecf5 !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
  font-size: 16px !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total span {
  color: #0077ff !important;
  font-size: 28px !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-summary button {
  min-height: 60px !important;
  border-radius: 7px !important;
  font-size: 18px !important;
  box-shadow: 0 18px 34px rgba(0, 109, 255, .28) !important;
}

.franchise-payment-step .franchise-payment-summary button b {
  margin-right: 12px !important;
  font-size: 15px !important;
  overflow: hidden !important;
}

.franchise-payment-step .franchise-payment-lock {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  justify-content: start !important;
  gap: 4px 8px !important;
  color: #526579 !important;
  text-align: left !important;
  font-size: 12px !important;
}

.franchise-payment-step .franchise-payment-lock::before {
  grid-row: 1 / span 2 !important;
  margin-top: 2px !important;
  color: #006dff !important;
}

.franchise-payment-step .franchise-payment-lock b {
  color: #06122d !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-lock span {
  grid-column: 2 !important;
}

@media (max-width: 980px) {
  .franchise-payment-step .franchise-payment-grid {
    grid-template-columns: 1fr !important;
  }

  .franchise-payment-step .franchise-payment-summary {
    padding-top: 0 !important;
  }
}

/* Bill-to-company exact payment layout */
.franchise-payment-step {
  padding: 26px 28px 26px !important;
  border: 1px solid #e4edf5 !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.franchise-payment-step .franchise-detail-back {
  min-width: 204px !important;
  min-height: 39px !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin: 0 0 26px !important;
  padding: 0 16px !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  box-shadow: 0 8px 18px rgba(15, 54, 89, .08) !important;
}

.franchise-payment-step .franchise-detail-back .franchise-icon {
  width: 20px !important;
  height: 20px !important;
}

.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(292px, 324px) !important;
  gap: 36px !important;
}

.franchise-payment-step .franchise-payment-card {
  max-width: none !important;
}

.franchise-payment-step .franchise-step-label {
  min-height: 18px !important;
  margin-bottom: 8px !important;
  color: #006dff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-card h2 {
  margin: 0 0 8px !important;
  font-size: 40px !important;
  line-height: 1 !important;
}

.franchise-payment-step .franchise-payment-card h2::after {
  width: 54px !important;
  height: 4px !important;
  margin-top: 10px !important;
}

.franchise-payment-step .franchise-payment-secure {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 0 14px !important;
  color: #526579 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.franchise-payment-step .franchise-payment-secure span {
  color: #006dff !important;
  font-size: 14px !important;
}

.franchise-bill-form {
  display: grid;
  gap: 13px;
  padding: 18px !important;
}

.franchise-billing-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 3px;
}

.franchise-billing-head > span,
.franchise-order-summary-head > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #d5e8ff;
}

.franchise-billing-head img,
.franchise-order-summary-head img {
  width: 24px;
  height: 24px;
}

.franchise-billing-head h3 {
  margin: 0 0 4px;
  color: #06122d;
  font-size: 16px;
  font-weight: 950;
}

.franchise-billing-head p {
  margin: 0;
  color: #526579;
  font-size: 12px;
  font-weight: 800;
}

.franchise-bill-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #06122d;
  font-size: 11px;
  font-weight: 950;
}

.franchise-bill-form > div:not(.franchise-billing-head) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.franchise-bill-form .franchise-bill-three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.franchise-bill-form input {
  width: 100%;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #cfdbe6;
  border-radius: 6px;
  color: #06122d;
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  box-sizing: border-box;
}

.franchise-bill-form input:focus {
  border-color: #9ac8ff;
  outline: 3px solid rgba(0, 109, 255, .12);
}

.franchise-bill-form .franchise-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0;
  color: #06122d;
  font-size: 12px;
  font-weight: 850;
}

.franchise-bill-form .franchise-check input {
  width: 15px;
  height: 15px;
  min-height: auto;
  flex: 0 0 15px;
  accent-color: #0077ff;
}

.franchise-payment-step .franchise-payment-summary {
  gap: 18px !important;
  padding-top: 42px !important;
}

.franchise-payment-step .franchise-payment-total-card {
  gap: 22px !important;
  padding: 20px 20px 16px !important;
  border-radius: 10px !important;
}

.franchise-order-summary-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfe8ef;
}

.franchise-order-summary-head strong {
  display: block;
  color: #06122d;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.franchise-order-summary-head small {
  color: #526579;
  font-size: 12px;
  font-weight: 800;
}

.franchise-payment-step .franchise-payment-summary p {
  font-size: 13px !important;
  font-weight: 850 !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total {
  margin: 2px -6px 0 !important;
  padding: 15px 14px !important;
  border: 1px solid #e2ecf5 !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total span {
  font-size: 23px !important;
}

.franchise-payment-step .franchise-payment-summary button {
  min-height: 47px !important;
  border-radius: 7px !important;
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-summary button b {
  margin-right: 10px;
  font-size: 14px;
}

.franchise-payment-step .franchise-payment-lock {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  justify-content: start !important;
  text-align: left;
  gap: 4px 8px !important;
  color: #526579 !important;
  font-size: 11px !important;
}

.franchise-payment-step .franchise-payment-lock::before {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 2px;
  color: #006dff;
}

.franchise-payment-step .franchise-payment-lock b {
  color: #06122d;
  font-size: 12px;
}

.franchise-payment-step .franchise-payment-lock span {
  grid-column: 2;
}

@media (max-width: 980px) {
  .franchise-bill-form > div:not(.franchise-billing-head),
  .franchise-bill-form .franchise-bill-three {
    grid-template-columns: 1fr !important;
  }
}

/* Final payment page containment fixes */
.franchise-payment-step {
  padding-left: clamp(20px, 3vw, 34px) !important;
  padding-right: clamp(20px, 3vw, 34px) !important;
}

.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 288px) !important;
  gap: clamp(24px, 4vw, 40px) !important;
}

.franchise-payment-step .franchise-payment-card,
.franchise-payment-step .franchise-pay-panel,
.franchise-payment-step .franchise-card-form,
.franchise-payment-step .franchise-card-form label,
.franchise-payment-step .franchise-card-form input {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.franchise-payment-step .franchise-card-form input:not([type="checkbox"]) {
  display: block !important;
  width: 100% !important;
}

.franchise-payment-step .franchise-card-form {
  width: 100% !important;
  overflow: hidden !important;
}

.franchise-payment-step .franchise-card-form div {
  min-width: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
  .franchise-payment-step .franchise-payment-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Restore Sample Request breadcrumb box */
.sample-request-modern .sample-breadcrumb {
  width: max-content !important;
  min-height: 54px !important;
  justify-self: start !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 1px solid rgba(18, 63, 112, .08) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(18, 63, 112, .08) !important;
}

@media (max-width: 560px) {
  .support-info {
    padding: 28px 22px;
  }

  .support-info h2 {
    font-size: 20px;
  }

  .support-info p {
    font-size: 14px;
  }

  .support-phone {
    font-size: 26px;
  }

  .support-detail-grid {
    grid-template-columns: 1fr;
  }

  .support-detail-item {
    min-height: 0;
    padding: 16px;
    font-size: 16px;
  }

  .support-detail-item strong {
    font-size: 16px;
  }

  .support-detail-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}

/* Modern custom quote variant: large format color */
.large-format-color-modern .quote-large-display {
  display: block;
}

.large-format-color-modern .quote-large-display img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 7px;
  background: #fff;
}

.large-format-color-modern .quote-large-display img:first-child {
  grid-column: auto;
}

.large-format-color-modern .custom-quote-hero h1 {
  font-size: clamp(38px, 4.4vw, 56px) !important;
  line-height: 1.04 !important;
}

.large-format-color-modern .quote-form label,
.large-format-color-modern .quote-form fieldset {
  grid-template-columns: 160px minmax(0, 1fr) !important;
}

.large-format-color-modern .quote-form .quote-qty {
  display: grid !important;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: center;
}

.large-format-color-modern .quote-form .quote-qty legend {
  flex: none !important;
  grid-column: auto;
}

.large-format-color-modern .quote-form .quote-qty input {
  width: 100% !important;
  flex: none !important;
}

.large-format-color-modern .quote-form .quote-radios {
  display: grid !important;
  grid-template-columns: 160px repeat(2, max-content) !important;
  gap: 14px !important;
  align-items: center;
}

.large-format-color-modern .quote-form .quote-radios label {
  display: inline-flex !important;
  grid-template-columns: none !important;
  gap: 8px;
  align-items: center;
}

.large-format-color-modern .quote-side button[type="submit"] {
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .large-format-color-modern .custom-quote-hero h1 {
    font-size: 34px !important;
  }

  .large-format-color-modern .quote-large-display {
    grid-template-columns: 1fr;
  }

  .large-format-color-modern .quote-form label,
  .large-format-color-modern .quote-form fieldset,
  .large-format-color-modern .quote-form .quote-qty,
  .large-format-color-modern .quote-form .quote-radios {
    grid-template-columns: 1fr !important;
  }
}

/* Modern custom quote variant: packaging */
.custom-quote-page.packaging-modern .custom-quote-hero h1 {
  font-size: clamp(38px, 4.4vw, 56px) !important;
  line-height: 1.04 !important;
}

.custom-quote-page.packaging-modern .quote-form label,
.custom-quote-page.packaging-modern .quote-form fieldset {
  grid-template-columns: 160px minmax(0, 1fr) !important;
}

.custom-quote-page.packaging-modern .quote-form .quote-qty {
  display: grid !important;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: center;
}

.custom-quote-page.packaging-modern .quote-form .quote-qty-label {
  grid-column: 1;
  flex: none !important;
}

.custom-quote-page.packaging-modern .quote-form .quote-qty input {
  width: 100% !important;
  flex: none !important;
}

.custom-quote-page.packaging-modern .quote-form .quote-radios {
  display: grid !important;
  grid-template-columns: 160px repeat(2, max-content) !important;
  gap: 14px !important;
  align-items: center;
}

.custom-quote-page.packaging-modern .quote-form .quote-radio-label {
  grid-column: 1;
  flex: none !important;
}

.custom-quote-page.packaging-modern .quote-form .quote-radios label {
  display: inline-flex !important;
  grid-template-columns: none !important;
  gap: 8px;
  align-items: center;
}

.custom-quote-page.packaging-modern .quote-packaging-display {
  min-height: 0;
  height: auto;
  display: block !important;
  padding: 18px;
  border-radius: 8px;
  background: #eef9fd;
}

.custom-quote-page.packaging-modern .quote-packaging-display img {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1456 / 1040;
  height: auto !important;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.custom-quote-page.packaging-modern .quote-side button[type="submit"] {
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .custom-quote-page.packaging-modern .custom-quote-hero h1 {
    font-size: 34px !important;
  }

  .custom-quote-page.packaging-modern .quote-form label,
  .custom-quote-page.packaging-modern .quote-form fieldset,
  .custom-quote-page.packaging-modern .quote-form .quote-qty,
  .custom-quote-page.packaging-modern .quote-form .quote-radios {
    grid-template-columns: 1fr !important;
  }

  .custom-quote-page.packaging-modern .quote-packaging-display {
    padding: 12px;
  }
}

/* Modern custom quote variant: large format printing */
.custom-quote-page.large-format-printing-modern .custom-quote-hero h1 {
  font-size: clamp(38px, 4.4vw, 56px) !important;
  line-height: 1.04 !important;
}

.custom-quote-page.large-format-printing-modern .quote-form {
  align-items: start !important;
}

.custom-quote-page.large-format-printing-modern .quote-form label,
.custom-quote-page.large-format-printing-modern .quote-form fieldset {
  grid-template-columns: 160px minmax(0, 1fr) !important;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-qty {
  display: grid !important;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: center;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-qty-label {
  grid-column: 1;
  flex: none !important;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-qty input {
  width: 100% !important;
  flex: none !important;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-radios {
  display: grid !important;
  grid-template-columns: 160px repeat(2, max-content) !important;
  gap: 14px !important;
  align-items: center;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-radio-label {
  grid-column: 1;
  flex: none !important;
}

.custom-quote-page.large-format-printing-modern .quote-form .quote-radios label {
  display: inline-flex !important;
  grid-template-columns: none !important;
  gap: 8px;
  align-items: center;
}

.custom-quote-page.large-format-printing-modern .quote-poster-display {
  height: auto;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #eef9fd;
}

.custom-quote-page.large-format-printing-modern .quote-poster-display img {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 318 / 262;
  height: auto !important;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  padding: 12px;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.custom-quote-page.large-format-printing-modern .quote-side button[type="submit"] {
  text-transform: uppercase;
}

.custom-quote-page.large-format-printing-modern .quote-side {
  align-self: start !important;
}

@media (max-width: 760px) {
  .custom-quote-page.large-format-printing-modern .custom-quote-hero h1 {
    font-size: 34px !important;
  }

  .custom-quote-page.large-format-printing-modern .quote-form label,
  .custom-quote-page.large-format-printing-modern .quote-form fieldset,
  .custom-quote-page.large-format-printing-modern .quote-form .quote-qty,
  .custom-quote-page.large-format-printing-modern .quote-form .quote-radios {
    grid-template-columns: 1fr !important;
  }
}

/* Guided product order flow */
.guided-order-flow {
  padding: 38px 0 54px;
}

.guided-order-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .95fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.guided-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #047fbf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.guided-order-head h2 {
  margin: 0 0 8px;
  color: #07131a;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.guided-order-head p {
  max-width: 680px;
  margin: 0;
  color: #506777;
  font-size: 16px;
  line-height: 1.6;
}

.guided-stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guided-stepper li {
  min-height: 64px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 8px;
  border: 1px solid #dbe8ee;
  border-radius: 12px;
  background: #fff;
  color: #6b7f8b;
  font-size: 12px;
  font-weight: 900;
}

.guided-stepper span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf6fa;
  color: #047fbf;
}

.guided-stepper li.active {
  border-color: #08a7d8;
  color: #0d2a39;
  box-shadow: 0 10px 24px rgba(8, 167, 216, .12);
}

.guided-stepper li.done span {
  background: #69bf34;
  color: transparent;
}

.guided-stepper li.done span::before {
  content: "✓";
  color: #fff;
}

.guided-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}

.guided-main,
.guided-step-panel,
.summary-sticky {
  min-width: 0;
}

.guided-step-panel,
.summary-sticky {
  border: 1px solid #dce9ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 45, 60, .08);
}

.guided-step-panel {
  padding: 24px;
  animation: flowFade .18s ease;
}

@keyframes flowFade {
  from { opacity: .65; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.guided-panel-title {
  margin-bottom: 20px;
}

.guided-panel-title span {
  display: inline-flex;
  margin-bottom: 6px;
  color: #047fbf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.guided-panel-title h3 {
  margin: 0 0 6px;
  color: #07131a;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
}

.guided-panel-title p {
  margin: 0;
  color: #506777;
  line-height: 1.55;
}

.flow-product-grid {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(360px, 1.12fr);
  gap: 22px;
}

.flow-preview-card {
  align-self: start;
  margin: 0;
  padding: 20px;
  border: 1px solid #dce9ef;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fbfd 0%, #ecf5f8 100%);
}

.flow-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(18, 45, 60, .16));
}

.flow-preview-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #263640;
  font-size: 13px;
}

.flow-config-form,
.delivery-form {
  display: grid;
  gap: 16px;
}

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

.flow-field > span,
.flow-select-field,
.delivery-form label {
  color: #1d303b;
  font-weight: 900;
}

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

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

.flow-choice-grid button,
.artwork-method-grid button,
.shipping-options button {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfe0e8;
  border-radius: 10px;
  background: #f8fbfd;
  color: #223743;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.flow-choice-grid button:hover,
.artwork-method-grid button:hover,
.shipping-options button:hover {
  transform: translateY(-1px);
  border-color: #8fd2e8;
}

.flow-choice-grid button.selected,
.artwork-method-grid button.selected,
.shipping-options button.selected {
  border-color: #08a7d8;
  background: #eaf8fc;
  color: #036f9f;
  box-shadow: 0 0 0 3px rgba(8, 167, 216, .13);
}

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

.flow-select-field select,
.delivery-form input,
.delivery-form select {
  min-height: 46px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfe0e8;
  border-radius: 9px;
  background: #fff;
  color: #263640;
  font: 700 14px/1.2 Inter, sans-serif;
}

.flow-validation {
  min-height: 20px;
  margin: 0;
  color: #c73535;
  font-size: 13px;
  font-weight: 800;
}

.flow-next,
.flow-checkout,
.summary-continue,
.flow-step-actions button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 0;
  border-radius: 9px;
  background: #047fbf;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.flow-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.flow-step-actions.small {
  justify-content: flex-start;
  margin-top: 14px;
}

.flow-step-actions button:not(.flow-next) {
  border: 1px solid #cfe0e8;
  background: #f3f8fb;
  color: #244252;
}

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

.artwork-method-grid button {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  text-align: left;
}

.artwork-method-grid b {
  font-size: 18px;
}

.artwork-method-grid span {
  color: #647986;
  font-weight: 700;
}

.flow-template-picker {
  margin-top: 18px;
}

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

.artwork-review-card,
.flow-review-card {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid #dce9ef;
  border-radius: 12px;
  background: #f9fcfd;
}

.artwork-review-card {
  grid-template-columns: minmax(280px, .95fr) minmax(280px, 1fr);
}

.artwork-preview-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.artwork-preview-pair figure {
  margin: 0;
  padding: 12px;
  border: 1px solid #dce9ef;
  border-radius: 10px;
  background: #fff;
}

.artwork-preview-pair img,
.flow-review-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.artwork-preview-pair figcaption {
  color: #506777;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.artwork-review-meta p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

.artwork-review-meta span {
  color: #647986;
}

.artwork-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.artwork-checks span {
  padding: 9px 10px;
  border-radius: 8px;
  background: #eef9ed;
  color: #357a1f;
  font-size: 13px;
  font-weight: 900;
}

.artwork-checks span::before {
  content: "✓ ";
}

.proof-request {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 900;
}

.delivery-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shipping-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.shipping-options button {
  display: grid;
  gap: 7px;
  text-align: left;
}

.shipping-options strong {
  color: #07131a;
  font-size: 18px;
}

.flow-review-card {
  grid-template-columns: 180px minmax(0, 1fr);
}

.flow-review-sections {
  display: grid;
  gap: 12px;
}

.flow-review-sections section {
  padding: 14px;
  border: 1px solid #dce9ef;
  border-radius: 10px;
  background: #fff;
}

.flow-review-sections h4 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
}

.flow-review-sections h4 button {
  border: 0;
  background: transparent;
  color: #047fbf;
  font-weight: 900;
  cursor: pointer;
}

.flow-review-sections p {
  margin: 0;
  color: #314753;
  line-height: 1.55;
}

.summary-sticky {
  position: sticky;
  top: 18px;
  padding: 20px;
}

.summary-sticky h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.summary-product {
  margin: 0 0 16px;
  color: #506777;
  font-weight: 800;
}

.summary-lines {
  display: grid;
  gap: 10px;
}

.summary-lines p,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #314753;
}

.summary-lines b,
.summary-total b {
  color: #07131a;
}

.summary-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #dce9ef;
  font-size: 20px;
  font-weight: 900;
}

.summary-continue {
  width: 100%;
  margin-top: 18px;
  background: #69bf34;
}

@media (max-width: 1080px) {
  .guided-order-head,
  .guided-order-layout,
  .flow-product-grid,
  .artwork-review-card,
  .flow-review-card {
    grid-template-columns: 1fr;
  }

  .summary-sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .guided-order-head {
    gap: 18px;
  }

  .guided-stepper {
    grid-template-columns: repeat(5, 92px);
    overflow-x: auto;
    padding-bottom: 6px;
    position: sticky;
    top: 0;
    z-index: 12;
    padding-top: 8px;
    background: #f3f9fc;
  }

  .guided-step-panel {
    padding: 18px;
  }

  .flow-choice-grid,
  .flow-choice-grid.two,
  .artwork-method-grid,
  .delivery-form,
  .shipping-options,
  .artwork-preview-pair,
  .artwork-checks,
  .flow-template-picker .template-library {
    grid-template-columns: 1fr;
  }

  .guided-summary {
    position: sticky;
    bottom: 0;
    z-index: 15;
    margin: 0 -14px;
  }

  .summary-sticky {
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -12px 32px rgba(18, 45, 60, .14);
  }
}

/* Project order flow additions */
.project-launch-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #d9e6ec;
}

.project-launch-card {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 22px;
  color: #111;
  text-decoration: none;
  background: #e5e5e5;
  border: 1px solid #d4d9dc;
  border-radius: 6px;
}

.project-launch-card.featured {
  background: #b9f0f2;
  border-color: #9fdee2;
}

.project-launch-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.project-launch-card small {
  display: block;
  color: #384650;
  font-weight: 700;
}

.launch-icon {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
}

.launch-icon-plus {
  border-radius: 50%;
  background: #bcbcbc;
}

.launch-icon-plus::before,
.launch-icon-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 4px;
  background: #111;
  transform: translate(-50%, -50%);
}

.launch-icon-plus::after {
  width: 4px;
  height: 42px;
}

.launch-icon-list,
.launch-icon-guide {
  border: 4px solid #43bffc;
  border-radius: 8px;
}

.launch-icon-list::before,
.launch-icon-guide::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(#43bffc 0 0) 0 4px / 10px 3px no-repeat,
    linear-gradient(#43bffc 0 0) 0 17px / 10px 3px no-repeat,
    linear-gradient(#43bffc 0 0) 0 30px / 10px 3px no-repeat,
    linear-gradient(#43bffc 0 0) 16px 3px / 22px 4px no-repeat,
    linear-gradient(#43bffc 0 0) 16px 16px / 22px 4px no-repeat,
    linear-gradient(#43bffc 0 0) 16px 29px / 22px 4px no-repeat;
}

.launch-icon-guide::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 14px;
  width: 8px;
  height: 48px;
  border-radius: 4px;
  background: #43bffc;
  transform: rotate(16deg);
}

.project-customizer {
  margin-top: 42px;
}

.product-detail-page:not(.customizer-page) #product-customizer {
  display: none;
}

.project-customizer > h2,
.project-customizer > h1,
.final-review-board > h2 {
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 4px;
  border-bottom: 5px solid #08a7d8;
  color: #070707;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.customizer-page .product-customizer-page {
  padding: 4px 0 54px;
}

.customizer-page .project-customizer {
  margin-top: 36px;
}

.project-customizer-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(340px, 1.25fr);
  gap: 28px;
  align-items: start;
}

.customizer-preview {
  margin: 0;
  background: #f2f5f7;
  border: 1px solid #d7e1e7;
  border-radius: 6px;
  overflow: hidden;
}

.customizer-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.quick-config {
  padding: 24px;
  background: #e1e1e1;
  border: 1px solid #d2d8dc;
  border-radius: 6px;
}

.quick-config h3 {
  margin: 0 0 14px;
  color: #161616;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
}

.customizer-selected-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}

.customizer-selected-options span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #cfe4ee;
  border-radius: 8px;
  background: #f7fcff;
}

.customizer-selected-options b {
  color: #516977;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.customizer-selected-options em {
  color: #102a3a;
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.project-customizer.customizer-inherited .quick-config {
  animation: customizer-inherited-pulse 1.3s ease;
}

@keyframes customizer-inherited-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 167, 216, .32);
  }
  55% {
    box-shadow: 0 0 0 8px rgba(8, 167, 216, .13);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 167, 216, 0);
  }
}

.quick-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 14px;
}

.quick-config label {
  display: grid;
  gap: 6px;
  color: #191919;
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.quick-config select,
.final-address-card select,
.final-address-card textarea {
  min-height: 40px;
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #8d969b;
  border-radius: 7px;
  background: #fff;
  color: #1f2b33;
  font: 700 14px/1.2 Inter, sans-serif;
}

.quick-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 16px;
  color: #191919;
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.quick-quantity span {
  width: 100%;
  flex-basis: 100%;
}

.quick-quantity button,
.quick-quantity output {
  width: 44px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #777;
  border-radius: 7px;
  background: #fff;
  color: #111;
  font: 900 20px/1 Inter, sans-serif;
}

.quick-quantity output {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  font-size: 16px;
}

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

.template-library button {
  padding: 0;
  border: 3px solid transparent;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.template-library button.active {
  border-color: #08a7d8;
}

.template-library img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.customizer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.customizer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  background: #047fbf;
  border-radius: 6px;
}

.customizer-actions a:last-child {
  background: #6dbb38;
}

.final-review-board {
  margin: 28px 0 34px;
}

.final-review-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(260px, .78fr);
  gap: 16px;
  align-items: start;
}

.final-proof-card,
.final-address-card,
.final-summary-card {
  border: 3px solid #4e4e4e;
  background: #fff;
}

.final-proof-card {
  min-height: 270px;
  padding: 20px;
  grid-row: span 2;
}

.final-proof-main {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
}

.final-proof-main img,
.final-proof-thumb {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  display: block;
}

.final-proof-card h3,
.final-address-card h3,
.final-summary-card h3 {
  margin: 0 0 10px;
  color: #111;
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.final-proof-card p {
  margin: 0;
  color: #111;
  font-weight: 800;
  line-height: 1.25;
}

.final-proof-divider {
  margin: 22px 0 10px;
  border-top: 4px dashed #b9b9b9;
}

.final-proof-thumb {
  max-width: 150px;
  margin: 0 auto;
}

.final-address-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.final-address-card label {
  display: grid;
  gap: 5px;
  color: #111;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 900;
}

.final-address-card textarea {
  min-height: 58px;
  resize: vertical;
  background: #ddd;
}

.final-address-card button,
.final-summary-card .grand {
  background: #73bd3a;
}

.final-address-card button {
  min-height: 42px;
  margin-top: 8px;
  border: 0;
  border-radius: 0;
  color: #fff;
  font: 900 16px/1 Inter, sans-serif;
  cursor: pointer;
}

.final-summary-card {
  padding: 18px;
}

.final-summary-card p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 3px 0;
  color: #111;
  font-weight: 900;
}

.final-summary-card .grand {
  margin: 8px 0 0;
  padding: 8px 10px;
  color: #fff;
}

@media (max-width: 980px) {
  .project-launch-board,
  .quick-config-grid,
  .project-customizer-layout,
  .final-review-grid {
    grid-template-columns: 1fr;
  }

  .final-proof-card {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .project-launch-card,
  .final-proof-main {
    grid-template-columns: 1fr;
    display: grid;
  }

  .project-launch-card {
    min-height: auto;
  }

  .launch-icon {
    justify-self: end;
  }

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

/* Product customizer polish */
.customizer-page {
  background: #f4f7f9;
}

.customizer-page .project-customizer {
  margin-top: 40px;
  padding: 24px 0 48px;
}

.customizer-page .project-customizer > h1,
.customizer-page .project-customizer > h2 {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border-bottom: 0;
  color: #0f1f2a;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.customizer-page .project-customizer-layout {
  grid-template-columns: minmax(320px, .92fr) minmax(430px, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.customizer-page .customizer-preview,
.customizer-page .quick-config {
  border: 1px solid #d8e5ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 45, 60, .08);
}

.customizer-page .customizer-preview {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fcfd 0%, #edf5f8 100%);
}

.customizer-page .customizer-preview img {
  width: min(100%, 560px);
  height: min(100%, 540px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(20, 45, 60, .16));
}

.customizer-page .quick-config {
  padding: 24px;
}

.customizer-page .quick-config h2,
.customizer-page .quick-config h3 {
  margin: 0 0 16px;
  color: #102635;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: 0;
}

.customizer-page .quick-config h2:not(:first-child),
.customizer-page .quick-config h3:not(:first-child) {
  margin-top: 22px;
}

.customizer-page .customizer-selected-options {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 20px;
}

.customizer-page .customizer-selected-options span {
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid #d5e4eb;
  border-radius: 9px;
  background: #f8fbfc;
  align-content: center;
}

.customizer-page .customizer-selected-options b {
  color: #5c7180;
  font-size: 10px;
  letter-spacing: .04em;
}

.customizer-page .customizer-selected-options em {
  color: #102635;
  font-size: 12px;
  font-weight: 850;
}

.customizer-page .quick-config-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.customizer-page .option-group {
  display: grid;
  gap: 9px;
}

.customizer-page .option-group > span,
.customizer-page .quick-quantity > span {
  color: #1f3441;
  font-family: Poppins, Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.customizer-page .option-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.customizer-page .option-buttons button {
  min-height: 42px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #cddde5;
  border-radius: 9px;
  background: #fff;
  color: #263b48;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9);
  font: 750 13px/1.2 Inter, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.customizer-page .option-buttons button:hover {
  transform: translateY(-1px);
  border-color: #8dcfe3;
  background: #fbfeff;
}

.customizer-page .option-buttons button.active {
  border: 2px solid #08a7d8;
  background: #ecfaff;
  color: #036f9f;
  box-shadow: 0 0 0 3px rgba(8, 167, 216, .13);
}

.customizer-page .option-buttons button:focus-visible,
.customizer-page .template-library button:focus-visible,
.customizer-page .quick-quantity button:focus-visible,
.customizer-page .customizer-actions a:focus-visible {
  outline: 3px solid rgba(8, 167, 216, .22);
  outline-offset: 2px;
}

.customizer-page .quick-quantity {
  display: grid;
  grid-template-columns: 1fr 40px 54px 40px;
  gap: 8px;
  align-items: center;
  margin: 8px 0 22px;
  padding-top: 4px;
  font-size: 18px;
}

.customizer-page .quick-quantity span {
  width: auto;
  flex-basis: auto;
}

.customizer-page .quick-quantity button,
.customizer-page .quick-quantity output {
  width: auto;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #c8d9e1;
  border-radius: 8px;
  background: #fff;
  color: #122b3a;
  font: 850 16px/1 Inter, sans-serif;
}

.customizer-page .quick-quantity button {
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}

.customizer-page .quick-quantity button:hover {
  transform: translateY(-1px);
  border-color: #08a7d8;
  background: #f2fbfe;
}

.customizer-page .quick-quantity output {
  border-color: #d8e5ec;
  background: #f9fcfd;
}

.customizer-page .template-library {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.customizer-page .template-library button {
  position: relative;
  min-height: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(20, 45, 60, .08);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.customizer-page .template-library button:hover,
.customizer-page .template-library button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 45, 60, .13);
}

.customizer-page .template-library button.active {
  border-color: #08a7d8;
  box-shadow: 0 0 0 3px rgba(8, 167, 216, .13), 0 14px 30px rgba(20, 45, 60, .12);
}

.customizer-page .template-library img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  padding: 7px;
  object-fit: contain;
  background: #f8fbfc;
}

.customizer-page .customizer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.customizer-page .customizer-actions a {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #047fbf;
  border-radius: 9px;
  background: #047fbf;
  color: #fff;
  box-shadow: 0 10px 22px rgba(4, 127, 191, .20);
  font-size: 14px;
  font-weight: 850;
}

.customizer-page .customizer-actions a:last-child {
  border-color: #69bf34;
  background: #69bf34;
  box-shadow: 0 10px 22px rgba(105, 191, 52, .20);
}

.customizer-page .customizer-actions a:hover {
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .customizer-page .project-customizer-layout {
    grid-template-columns: 1fr;
  }

  .customizer-page .customizer-preview {
    min-height: auto;
  }

  .customizer-page .customizer-preview img {
    height: auto;
    max-height: 520px;
  }
}

@media (max-width: 760px) {
  .customizer-page .project-customizer {
    margin-top: 28px;
    padding-top: 16px;
  }

  .customizer-page .quick-config,
  .customizer-page .customizer-preview {
    padding: 18px;
  }

  .customizer-page .customizer-selected-options,
  .customizer-page .quick-config-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .customizer-page .quick-quantity,
  .customizer-page .customizer-actions {
    grid-template-columns: 1fr;
  }

  .customizer-page .quick-quantity button,
  .customizer-page .quick-quantity output {
    width: 100%;
  }

  .customizer-page .template-library {
    grid-template-columns: 1fr;
  }
}

/* Final cart action text override */
body .cart-table .cart-actions button {
  display: inline !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--blue) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}

body .cart-table .cart-actions button:hover,
body .cart-table .cart-actions button:focus-visible {
  color: var(--pink) !important;
  text-decoration: underline;
  outline: none;
}

body .cart-table .cart-actions {
  align-self: start !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  padding-top: 8px !important;
  padding-left: 18px !important;
}

body .cart-table .cart-price {
  font-weight: 400 !important;
}

/* Modern coupon popup */
.coupon-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.coupon-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.coupon-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 30, 42, .62);
  backdrop-filter: blur(4px);
}

.coupon-popup__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(260px, 360px);
  gap: 28px;
  width: min(100%, 680px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(12, 35, 50, .28);
  transform: translateY(14px) scale(.98);
  transition: transform .22s ease;
}

.coupon-popup.is-visible .coupon-popup__panel {
  transform: translateY(0) scale(1);
}

.coupon-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef6fa;
  color: #6f8090;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.coupon-popup__close:hover,
.coupon-popup__close:focus-visible {
  background: #e1f2f8;
  color: var(--blue);
  outline: none;
}

.coupon-popup__deal {
  min-height: 248px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,0)),
    #81c53d;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .72);
}

.coupon-popup__deal strong {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: .95;
}

.coupon-popup__deal span:last-child {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.coupon-popup__label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 75, 55, .28);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.coupon-popup__content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px 4px 8px;
}

.coupon-popup__eyebrow {
  margin: 0;
  color: var(--pink);
  font-size: 13px;
  font-weight: 500 !important;
  text-transform: uppercase;
}

.coupon-popup__content h2 {
  margin: 0;
  color: #142d3d;
  font-size: 28px;
  line-height: 1.15;
}

.coupon-popup__text {
  margin: 0;
  color: #5e7280;
  font-size: 15px;
  line-height: 1.55;
}

.coupon-popup__code-label {
  margin-top: 6px;
  color: #6bb735;
  font-size: 12px;
  font-weight: 600 !important;
  text-transform: uppercase;
}

.coupon-popup__code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid #d8e8ef;
  border-radius: 8px;
  background: #f4f9fb;
}

.coupon-popup__code-row input {
  min-width: 0;
  height: 40px;
  border: 0;
  background: transparent;
  color: #223746;
  font-size: 15px;
  font-weight: 500 !important;
  text-align: center;
}

.coupon-popup__code-row button,
.coupon-popup__shop {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500 !important;
}

.coupon-popup__code-row button {
  border: 0;
  padding: 0 14px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}

.coupon-popup__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 4px;
  background: #142d3d;
  color: #fff;
  text-decoration: none;
}

.coupon-popup__shop:hover,
.coupon-popup__shop:focus-visible {
  background: var(--pink);
  outline: none;
}

@media (max-width: 680px) {
  .coupon-popup__panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .coupon-popup__deal {
    min-height: 190px;
  }

  .coupon-popup__deal strong {
    font-size: 48px;
  }

  .coupon-popup__deal span:last-child {
    font-size: 34px;
  }

  .coupon-popup__content h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coupon-popup,
  .coupon-popup__panel {
    transition: none;
  }
}

/* Modern product detail related products and information section */
.product-detail-page .frequently-viewed {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 42px 0 76px;
}

.product-detail-page .frequently-viewed h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0 0 20px;
  color: #132c3d;
  font-size: 28px;
  line-height: 1.2;
}

.product-detail-page .frequently-viewed h2 a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eaf7fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500 !important;
  text-decoration: none;
  white-space: nowrap;
}

.product-detail-page .viewed-grid,
.product-detail-page .info-tabs,
.product-detail-page .template-table {
  width: 100%;
  margin-left: 0;
}

.product-detail-page .viewed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-page .viewed-grid article {
  overflow: hidden;
  border: 1px solid #dce9ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 57, 76, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-detail-page .viewed-grid article:hover {
  transform: translateY(-4px);
  border-color: #b7dce9;
  box-shadow: 0 18px 38px rgba(21, 57, 76, .14);
}

.product-detail-page .viewed-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #f5f9fb;
}

.product-detail-page .viewed-grid b {
  display: block;
  min-height: auto;
  padding: 12px 14px 6px;
  color: #162d3c;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 1.3;
}

.product-detail-page .viewed-grid span {
  display: inline-flex;
  align-items: center;
  margin: 0 14px 14px;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500 !important;
  text-align: left;
}

.product-detail-page .info-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 18px;
  padding: 8px;
  border: 1px solid #dce9ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 57, 76, .06);
}

.product-detail-page .info-tabs button,
.product-detail-page .info-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f2f8fb !important;
  color: #244252;
  font-size: 13px;
  font-weight: 500 !important;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.product-detail-page .info-tabs button:first-child,
.product-detail-page .info-tabs button:hover,
.product-detail-page .info-tabs button:focus-visible,
.product-detail-page .info-tabs a:first-child,
.product-detail-page .info-tabs a:hover,
.product-detail-page .info-tabs a:focus-visible {
  border-color: rgba(2, 148, 221, .22);
  background: var(--blue) !important;
  color: #fff;
  outline: none;
}

.product-detail-page .template-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dce9ef;
  border-radius: 10px;
  background: #fff;
  color: #506777;
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(21, 57, 76, .08);
}

.product-detail-page .template-table th {
  padding: 13px 16px;
  background: #132c3d;
  color: #fff;
  font-size: 12px;
  font-weight: 500 !important;
  text-align: left;
}

.product-detail-page .template-table td {
  padding: 16px;
  border-bottom: 0;
  background: #fff;
}

.product-detail-page .template-table tbody tr:nth-child(even) td {
  background: #f7fbfd;
}

.product-detail-page .product-info-panel {
  scroll-margin-top: 120px;
  margin: 18px 0 22px;
  padding: 24px 26px;
  border: 1px solid #dfeaf0;
  border-radius: 8px;
  background: #fff;
  color: #17242d;
  box-shadow: 0 12px 30px rgba(16, 45, 62, .06);
}

.product-detail-page .product-info-panel[hidden] {
  display: none;
}

.product-detail-page .info-tabs a:first-child:not(.active) {
  border-color: transparent;
  background: #f2f8fb !important;
  color: #244252;
}

.product-detail-page .info-tabs a.active,
.product-detail-page .info-tabs a.active:first-child {
  border-color: rgba(2, 148, 221, .22);
  background: var(--blue) !important;
  color: #fff;
}

.product-detail-page .product-description-copy h3,
.product-detail-page .product-custom-options-copy {
  color: #17242d;
}

.product-detail-page .product-description-copy h3,
.product-detail-page .product-custom-options-copy h3 {
  margin: 0 0 14px;
  color: #111;
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.product-detail-page .product-description-copy p {
  max-width: 860px;
  margin: 0 0 18px;
  color: #263640;
  font-size: 16px;
  line-height: 1.65;
}

.product-detail-page .product-marketing-tips-panel h3 {
  margin: 0 0 18px;
  color: #111;
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.product-detail-page .product-marketing-tips-panel h4 {
  margin: 24px 0 10px;
  color: #17242d;
  font-family: Poppins, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.product-detail-page .product-marketing-tips-panel p {
  max-width: 980px;
  margin: 0 0 18px;
  color: #263640;
  font-size: 16px;
  line-height: 1.65;
}

.product-detail-page .product-marketing-tips-panel a {
  color: var(--blue);
  font-weight: 800;
}

.product-detail-page .product-description-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-page .product-description-highlights span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #d9e9f0;
  border-radius: 8px;
  background: #f6fbfd;
  color: #243946;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-detail-page .custom-options-mini-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-detail-page .custom-options-mini-tabs a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #cde2eb;
  border-radius: 999px;
  background: #f4f9fb;
  color: #142f3c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-page .custom-options-copy-grid {
  display: grid;
  gap: 22px;
}

.product-detail-page .custom-options-copy-grid h4 {
  margin: 0 0 12px;
  color: #111;
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.product-detail-page .custom-options-copy-grid h5 {
  margin: 14px 0 8px;
  color: #17242d;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.product-detail-page .custom-options-copy-grid p {
  margin: 0 0 10px;
  color: #263640;
  font-size: 16px;
  line-height: 1.6;
}

.product-detail-page .template-download-list {
  display: grid;
  gap: 34px;
}

.product-detail-page .template-download-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(170px, 1fr) repeat(3, minmax(96px, 120px));
  gap: 34px;
  align-items: center;
}

.product-detail-page .template-download-title {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #1098d7;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.product-detail-page .template-download-row > strong {
  color: #111;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
}

.product-detail-page .template-file-link {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #111;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.25;
}

.product-detail-page .template-file-link span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(16, 45, 62, .18);
  font-size: 20px;
  font-weight: 900;
}

.product-detail-page .template-file-link b {
  font-weight: 500;
}

.product-detail-page .template-file-link.illustrator span {
  background: linear-gradient(135deg, #ffd756 0%, #f39a1f 100%);
}

.product-detail-page .template-file-link.reader span {
  background: linear-gradient(135deg, #d61119 0%, #92070b 100%);
  font-size: 12px;
}

.product-detail-page .template-file-link.jpeg span {
  background: linear-gradient(135deg, #e4f96c 0%, #94bd30 100%);
  font-size: 15px;
}

.product-detail-page .product-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.product-detail-page .product-faq-list details {
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  background: #f7fbfd;
  overflow: hidden;
}

.product-detail-page .product-faq-list summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  color: #142f3c;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: background-color .18s ease, color .18s ease;
}

.product-detail-page .product-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-detail-page .product-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f4fa;
  color: #047fbf;
  font-size: 18px;
  line-height: 1;
}

.product-detail-page .product-faq-list details[open] summary::after {
  content: "-";
}

.product-detail-page .product-faq-list details:hover,
.product-detail-page .product-faq-list details:focus-within {
  border-color: #08a7d8;
}

.product-detail-page .product-faq-list summary:hover,
.product-detail-page .product-faq-list summary:focus-visible {
  background: #eaf8fc;
  color: #036f9f;
  outline: none;
}

.product-detail-page .product-faq-list details p {
  margin: 0;
  padding: 0 16px 16px;
  color: #314753;
  font-size: 15px;
  line-height: 1.6;
}

.product-detail-page .product-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.product-detail-page .product-review-list figure {
  margin: 0;
  padding: 20px;
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  background: #f8fbfd;
}

.product-detail-page .product-review-list blockquote {
  margin: 0 0 14px;
  color: #17242d;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.product-detail-page .product-review-list figcaption {
  color: #123244;
  font-size: 15px;
  font-weight: 900;
}

.product-detail-page .leave-review-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 7px;
  background: #047fbf;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 980px) {
  .product-detail-page .viewed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .product-description-highlights {
    grid-template-columns: 1fr;
  }

  .product-detail-page .info-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail-page .template-download-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
  }

  .product-detail-page .product-faq-list {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .product-detail-page .frequently-viewed {
    width: min(100% - 28px, 1120px);
    padding-top: 34px;
  }

  .product-detail-page .frequently-viewed h2 {
    display: grid;
    font-size: 24px;
  }

  .product-detail-page .viewed-grid,
  .product-detail-page .info-tabs {
    grid-template-columns: 1fr;
  }

  .product-detail-page .template-download-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

.product-detail-page .template-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Final global H1 size */
body h1,
body [class] h1 {
  font-size: 30px !important;
}

/* Align dropdown menu arrows and labels */
.main-nav .products-dropdown .nav-dropdown-menu a,
.main-nav .services-dropdown .nav-dropdown-menu a {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  min-height: 36px;
  padding: 8px 12px !important;
  text-align: left;
}

.main-nav .products-dropdown .nav-dropdown-menu a::before,
.main-nav .services-dropdown .nav-dropdown-menu a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  color: #223240;
}

/* Softer account page title sizing */
.account-page .history-panel h1 {
  font-size: 28px !important;
  font-weight: 600 !important;
}

@media (max-width: 680px) {
  .account-page .history-panel h1 {
    font-size: 24px !important;
  }
}

/* Reseller program page */
.reseller-page {
  background: #fff;
  color: #152d3d;
}

.reseller-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .78fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0 78px;
}

.reseller-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b84b9;
  background: #eef9fd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reseller-hero h1,
.reseller-section-head h2,
.reseller-premium h2,
.reseller-step h2 {
  margin: 0 0 16px;
  color: #132c3d;
  line-height: 1.12;
}

.reseller-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 4.4vw, 56px);
}

.reseller-hero p,
.reseller-section-head p,
.reseller-premium p,
.reseller-step p,
.reseller-support p,
.reseller-faq p {
  color: #637583;
  font-size: 16px;
  line-height: 1.65;
}

.reseller-hero-copy > p {
  max-width: 560px;
}

.reseller-actions,
.reseller-support .page-width > .reseller-button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reseller-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 22px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.reseller-button.primary {
  color: #fff;
  background: #e51482;
}

.reseller-button.secondary {
  color: #e51482;
  border-color: #e51482;
  background: #fff;
}

.reseller-button.dark {
  color: #fff;
  background: #1d2025;
}

.reseller-hero-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 38px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(229, 20, 130, .16), transparent 34%),
    linear-gradient(135deg, #f7fcff, #fff);
  border: 1px solid #d8ebf4;
  box-shadow: 0 20px 44px rgba(18, 63, 89, .12);
}

.reseller-hero-card strong {
  color: #e51482;
  font-size: 34px;
  line-height: 1;
}

.reseller-hero-card span {
  max-width: 340px;
  color: #253d4e;
  font-size: 18px;
  line-height: 1.5;
}

.reseller-intro {
  padding: 72px 0 58px;
}

.reseller-section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.reseller-section-head h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.reseller-benefits,
.reseller-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.reseller-benefits article {
  text-align: center;
  padding: 22px 18px;
}

.reseller-benefits span,
.reseller-step > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: #e51482;
  font-weight: 800;
}

.reseller-benefits h3,
.reseller-support-grid h3 {
  margin: 0 0 10px;
  color: #162f40;
  font-size: 20px;
}

.reseller-benefits p {
  max-width: 310px;
  margin: 0 auto;
}

.reseller-premium {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .75fr);
  gap: 52px;
  align-items: center;
  padding: 54px 0 78px;
}

.reseller-premium h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.reseller-premium ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.reseller-premium li {
  position: relative;
  padding-left: 28px;
  color: #243d4e;
  font-weight: 600;
}

.reseller-premium li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e51482;
}

.reseller-premium figure {
  margin: 0;
  border-radius: 8px;
  background: #f4fbfe;
  border: 1px solid #dceef5;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 63, 89, .1);
}

.reseller-premium img {
  width: 100%;
  height: auto;
  display: block;
}

.reseller-trade {
  background: #e7e7e7;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

.reseller-trade-inner {
  padding: 30px 0 58px;
}

.reseller-trade-inner > p {
  margin: 0 0 28px;
  color: #26313a;
  font-size: 14px;
}

.reseller-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.reseller-step h2 {
  font-size: 22px;
}

.reseller-account-actions {
  max-width: 920px;
  margin: 0 auto;
}

.reseller-account-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto 20px;
  color: #13223a;
}

.reseller-account-heading span {
  height: 1px;
  background: #d8dde7;
}

.reseller-account-heading h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.reseller-account-heading h3::after {
  display: block;
  width: 28px;
  height: 2px;
  margin: 8px auto 0;
  background: #e51482;
  content: "";
}

.reseller-account-choice-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.reseller-account-card {
  min-height: 270px;
  padding: 32px 38px;
  border: 1px solid rgba(229, 20, 130, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 100%, rgba(229, 20, 130, 0.08), transparent 28%),
    linear-gradient(180deg, #fff7fb, #fff);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
  text-align: center;
}

.reseller-account-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #ffdcea;
  color: #e51482;
}

.reseller-account-icon svg {
  width: 36px;
  height: 36px;
}

.reseller-account-card h4 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.reseller-account-card p {
  min-height: 50px;
  margin: 0 auto 22px;
  max-width: 260px;
  color: #788294;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.reseller-login-button,
.reseller-create-button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  border-radius: 6px;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.reseller-login-button {
  color: #fff;
  background: #e51482;
  border: 2px solid #e51482;
  box-shadow: 0 12px 22px rgba(229, 20, 130, 0.24);
}

.reseller-create-button {
  color: #e51482;
  background: #fff;
  border: 1px solid #ff75b9;
}

.reseller-login-button:hover,
.reseller-login-button:focus-visible {
  background: #c90f70;
  border-color: #c90f70;
}

.reseller-create-button:hover,
.reseller-create-button:focus-visible {
  color: #fff;
  background: #e51482;
  border-color: #e51482;
}

.reseller-login-button:focus-visible,
.reseller-create-button:focus-visible {
  outline: 3px solid rgba(11, 132, 185, .35);
  outline-offset: 3px;
}

.reseller-account-or {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e1e5ed;
  border-radius: 999px;
  background: #fff;
  color: #778194;
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.reseller-testimonials {
  padding: 70px 0;
}

.reseller-quote {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
}

.reseller-quote button {
  width: 34px;
  height: 34px;
  border: 1px solid #9ea7ad;
  border-radius: 4px;
  background: #fff;
  color: #7b8790;
  font-size: 24px;
}

.reseller-quote blockquote {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .85fr);
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 34px 38px 34px 76px;
  border: 2px solid #9ea7ad;
  border-radius: 42px;
  box-shadow: 0 7px 0 rgba(0, 0, 0, .08);
}

.reseller-quote p {
  max-width: 560px;
  color: #26313a;
  font-size: 18px;
  line-height: 1.48;
}

.reseller-quote footer {
  margin-top: 28px;
  color: #111;
  font-weight: 700;
}

.reseller-quote-product {
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f4fbfe;
}

.reseller-quote-product img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reseller-dots {
  display: flex;
  gap: 12px;
  margin: 26px 0 0 96px;
}

.reseller-dots button {
  width: 10px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #1e2024;
  cursor: pointer;
}

.reseller-dots button.is-active {
  width: 46px;
}

.reseller-dots button:focus-visible {
  outline: 3px solid rgba(11, 132, 185, .35);
  outline-offset: 4px;
}

.reseller-support {
  padding: 58px 0 68px;
  background: #f1f1f1;
}

.reseller-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto 22px;
}

.reseller-support-grid article {
  min-height: 240px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 2px solid #c3c9cd;
  border-radius: 34px;
  background: #fff;
}

.reseller-support-grid a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.reseller-support .reseller-button {
  width: 180px;
  margin: 0 auto;
}

.reseller-faq {
  padding: 82px 0 92px;
}

.reseller-faq details {
  position: relative;
  margin-bottom: 12px;
  border: 1px solid #d9e5ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 63, 89, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.reseller-faq details:last-child {
  border-bottom: 1px solid #d9e5ec;
}

.reseller-faq details:hover {
  border-color: #b7d9e8;
  box-shadow: 0 14px 34px rgba(18, 63, 89, .1);
  transform: translateY(-1px);
}

.reseller-faq details[open] {
  border-color: #8fd2ec;
  background: linear-gradient(180deg, #f8fdff 0%, #fff 100%);
}

.reseller-faq summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px 0 22px;
  cursor: pointer;
  color: #132c3d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.reseller-faq summary::-webkit-details-marker {
  display: none;
}

.reseller-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #c9d9e1;
  border-radius: 50%;
  background:
    linear-gradient(#0b84b9, #0b84b9) center / 12px 2px no-repeat,
    linear-gradient(#0b84b9, #0b84b9) center / 2px 12px no-repeat,
    #eef9fd;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.reseller-faq details[open] summary::after {
  border-color: #0b84b9;
  background:
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    #0b84b9;
  transform: rotate(180deg);
}

.reseller-faq details p {
  max-width: 780px;
  margin: -2px 72px 22px 22px;
  color: #607380;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .reseller-hero,
  .reseller-premium,
  .reseller-benefits,
  .reseller-support-grid {
    grid-template-columns: 1fr;
  }

  .reseller-hero {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .reseller-hero-card {
    min-height: 200px;
  }

  .reseller-benefits article {
    padding: 16px 0;
  }

  .reseller-premium {
    gap: 28px;
  }

  .reseller-account-choice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reseller-account-or {
    position: static;
    margin: -10px auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .whatsapp-float-wrap {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-float > span,
  .whatsapp-help-bubble {
    display: none;
  }

  .reseller-hero h1 {
    font-size: 34px;
  }

  .reseller-actions,
  .reseller-button {
    width: 100%;
  }

  .reseller-quote {
    grid-template-columns: 1fr;
  }

  .reseller-quote button {
    display: none;
  }

  .reseller-quote blockquote {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 22px;
  }

  .reseller-quote-product {
    height: 190px;
  }

  .reseller-faq {
    padding: 56px 0 64px;
  }

  .reseller-faq summary {
    min-height: 56px;
    padding: 0 14px 0 16px;
    font-size: 14px;
  }

  .reseller-faq summary::after {
    width: 30px;
    height: 30px;
  }

  .reseller-faq details p {
    margin: 0 48px 18px 16px;
    font-size: 14px;
  }

  .reseller-dots {
    margin-left: 0;
    justify-content: center;
  }

  .reseller-support-grid article {
    min-height: 190px;
    border-radius: 22px;
  }

  .reseller-login-button,
  .reseller-create-button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .reseller-account-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reseller-account-heading span {
    display: none;
  }

  .reseller-account-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .reseller-account-card p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reseller-faq details,
  .reseller-faq summary::after {
    transition: none;
  }

  .reseller-faq details:hover {
    transform: none;
  }
}

/* Homepage signup image balance */
body:has(.hero) .signup {
  width: min(100% - 40px, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding: 64px 0;
}

body:has(.hero) .signup > img {
  width: 100% !important;
  max-width: 460px !important;
  height: clamp(360px, 42vw, 520px) !important;
  display: block;
  justify-self: center;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 8px;
  background: #fff;
}

body:has(.hero) .signup form {
  max-width: 560px;
}

body:has(.hero) .signup h2 {
  max-width: 520px;
  font-size: clamp(34px, 3vw, 46px) !important;
  line-height: 1.18 !important;
}

body:has(.hero) .signup p,
body:has(.hero) .signup small {
  max-width: 560px;
  color: #657684;
  font-size: 16px;
  line-height: 1.65;
}

body:has(.hero) .signup button {
  min-width: 146px;
  min-height: 40px;
  border-radius: 7px;
  font-size: 16px;
}

@media (max-width: 900px) {
  body:has(.hero) .signup {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }

  body:has(.hero) .signup > img {
    max-width: 360px !important;
    height: auto !important;
    max-height: 380px;
  }

  body:has(.hero) .signup form {
    max-width: 100%;
  }
}

/* Final strict typography override */
body h1,
body [class] h1 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body h2,
body [class] h2 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body h3,
body h4,
body h5,
body h6,
body [class] h3,
body [class] h4,
body [class] h5,
body [class] h6 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

body,
body p,
body [class] p,
body li,
body dd,
body td,
body input,
body select,
body textarea,
body label,
body small {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 300 !important;
}

body .main-nav a,
body .main-nav button,
body .mobile-drawer-nav a,
body .mobile-drawer-label,
body .header-actions a,
body .footer-column a {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 500 !important;
}

body button,
body [class] button,
body .button,
body .industry-button,
body .service-button,
body .nav-cta,
body .shopping-buttons a,
body .account-actions a,
body input[type="submit"] {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 500 !important;
}

body h1 + p,
body h2 + p,
body h3 + p,
body h4 + p,
body h5 + p,
body h6 + p {
  margin-top: 0 !important;
}

/* Final strict typography override */
body h1,
body [class] h1 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body h2,
body [class] h2 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body h3,
body h4,
body h5,
body h6,
body [class] h3,
body [class] h4,
body [class] h5,
body [class] h6 {
  font-family: "Poppins", Helvetica, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

body,
body p,
body [class] p,
body li,
body dd,
body td,
body input,
body select,
body textarea,
body label,
body small {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 300 !important;
}

body .main-nav a,
body .main-nav button,
body .mobile-drawer-nav a,
body .mobile-drawer-label,
body .header-actions a,
body .footer-column a {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 500 !important;
}

body button,
body [class] button,
body .button,
body .industry-button,
body .service-button,
body .nav-cta,
body .shopping-buttons a,
body .account-actions a,
body input[type="submit"] {
  font-family: "Inter", Helvetica, sans-serif !important;
  font-weight: 500 !important;
}

body h1 + p,
body h2 + p,
body h3 + p,
body h4 + p,
body h5 + p,
body h6 + p {
  margin-top: 0 !important;
}

/* AI product advisor */
.ai-advisor-page {
  background: #f3f9fc;
  color: #172f3f;
}

.ai-advisor-hero {
  padding: 56px 0 42px;
  background: radial-gradient(circle at 82% 16%, rgba(22, 162, 216, .18), transparent 32%), linear-gradient(135deg, #eefaff 0%, #fff 54%, #f7fbfd 100%);
  border-bottom: 1px solid #d9edf5;
}

.ai-advisor-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 42px;
  align-items: center;
}

.ai-advisor-copy h1 {
  max-width: 780px;
  margin: 14px 0 16px;
  color: #102f43;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.ai-advisor-copy p {
  max-width: 670px;
  margin: 0 0 26px;
  color: #516877;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.ai-advisor-visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7ebf4;
  box-shadow: 0 24px 58px rgba(18, 63, 89, .16);
}

.ai-advisor-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-advisor-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 32px;
}

.ai-advisor-progress-card,
.ai-advisor-form,
.advisor-loading,
.advisor-error,
.advisor-results,
.advisor-quote {
  border: 1px solid #d6eaf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 62, 89, .1);
}

.ai-advisor-progress-card {
  align-self: start;
  position: sticky;
  top: 18px;
  padding: 22px;
}

.ai-advisor-progress-card > span {
  display: block;
  margin-bottom: 18px;
  color: #0c7fb0;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.advisor-step-track {
  display: grid;
  gap: 12px;
}

.advisor-step-track b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #77909d;
  background: #eef7fb;
  border: 1px solid #cfe5ee;
  font-size: 16px;
}

.advisor-step-track b.is-active,
.advisor-step-track b.is-complete {
  color: #fff;
  background: #0a8eca;
  border-color: #0a8eca;
}

.ai-advisor-form {
  min-height: 560px;
  padding: 32px;
}

.advisor-step-panel h2,
.advisor-results h2,
.advisor-quote h2,
.advisor-error h2,
.advisor-followup h2 {
  margin: 10px 0 12px;
  color: #142f40;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 950;
}

.advisor-step-panel p,
.advisor-results .industry-section-heading p,
.advisor-error p,
.advisor-followup p {
  margin: 0 0 22px;
  color: #607380;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

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

.advisor-option-grid label {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #cfe3ec;
  border-radius: 8px;
  background: #f9fdff;
  color: #173344;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.advisor-option-grid label:hover,
.advisor-option-grid label:focus-within {
  transform: translateY(-2px);
  border-color: #18a4d8;
  box-shadow: 0 12px 28px rgba(13, 120, 168, .12);
}

.advisor-option-grid input {
  width: 18px;
  height: 18px;
  accent-color: #0a8eca;
  flex: 0 0 auto;
}

.advisor-option-grid input:checked + span {
  color: #e51782;
}

.advisor-field-grid,
.advisor-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.advisor-field-grid label,
.advisor-quote-form label {
  display: grid;
  gap: 8px;
  color: #223b4c;
  font-size: 14px;
  font-weight: 950;
}

.advisor-field-grid label.full,
.advisor-quote-form label.full,
.advisor-quote-form button,
.advisor-quote-success {
  grid-column: 1 / -1;
}

.advisor-field-grid input,
.advisor-field-grid select,
.advisor-field-grid textarea,
.advisor-followup-box input,
.advisor-quote-form input,
.advisor-quote-form textarea {
  width: 100%;
  border: 1px solid #cfe3ec;
  border-radius: 8px;
  background: #fff;
  color: #193446;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.advisor-field-grid input:focus,
.advisor-field-grid select:focus,
.advisor-field-grid textarea:focus,
.advisor-followup-box input:focus,
.advisor-quote-form input:focus,
.advisor-quote-form textarea:focus {
  border-color: #0a8eca;
  box-shadow: 0 0 0 4px rgba(10, 142, 202, .14);
}

.advisor-review-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: #eef9fd;
  border: 1px solid #ccecf7;
  color: #25485b;
  font-size: 16px;
}

.advisor-form-actions,
.advisor-results-actions,
.advisor-card-actions,
.advisor-followup-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.advisor-form-actions {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e0eef4;
}

.advisor-form-actions button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.advisor-step-error {
  margin-top: 16px !important;
  color: #b4235a !important;
}

.advisor-loading,
.advisor-error,
.advisor-results,
.advisor-quote {
  margin-top: 28px;
  margin-bottom: 36px;
  padding: 30px;
}

.advisor-loading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.advisor-loading[hidden],
.advisor-error[hidden],
.advisor-results[hidden],
.advisor-quote[hidden],
.advisor-step-panel[hidden] {
  display: none !important;
}

.advisor-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid #d8edf6;
  border-top-color: #0a8eca;
  animation: advisor-spin .8s linear infinite;
}

@keyframes advisor-spin {
  to { transform: rotate(360deg); }
}

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

.advisor-result-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 62, 89, .08);
}

.advisor-result-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.advisor-result-body {
  padding: 18px 18px 18px 0;
}

.advisor-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.advisor-result-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #0b6f99;
  background: #eaf8fd;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.advisor-result-meta .priority {
  color: #fff;
  background: #e51782;
}

.advisor-result-card h3 {
  margin: 0 0 8px;
  color: #142f40;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 950;
}

.advisor-result-card p {
  margin: 0 0 14px;
  color: #617380;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.advisor-result-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.advisor-result-card dt {
  color: #76909d;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.advisor-result-card dd {
  margin: 2px 0 0;
  color: #203b4b;
  font-size: 14px;
  font-weight: 800;
}

.advisor-card-actions a,
.advisor-card-actions button,
.advisor-followup-box button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: #0a8eca;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.advisor-card-actions button,
.advisor-followup-box button {
  background: #133f70;
}

.advisor-card-actions button.is-added {
  background: #159c69;
}

.advisor-followup {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid #e0eef4;
}

.advisor-followup-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.advisor-followup-examples span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #31566b;
  background: #eef7fb;
  font-size: 13px;
  font-weight: 850;
}

.advisor-followup-box input {
  flex: 1 1 320px;
}

.advisor-followup-answer {
  min-height: 28px;
  margin-top: 14px !important;
  color: #173344 !important;
}

.advisor-quote ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: #25485b;
  font-size: 16px;
  font-weight: 800;
}

.advisor-quote-success {
  margin: 0;
  color: #147a52;
  font-size: 16px;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .advisor-spinner {
    animation: none;
  }

  .advisor-option-grid label {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .ai-advisor-hero-inner,
  .ai-advisor-shell,
  .advisor-result-grid {
    grid-template-columns: 1fr;
  }

  .ai-advisor-progress-card {
    position: static;
  }

  .advisor-step-track {
    grid-template-columns: repeat(5, 42px);
  }
}

@media (max-width: 780px) {
  .ai-advisor-hero {
    padding: 38px 0 28px;
  }

  .advisor-option-grid,
  .advisor-field-grid,
  .advisor-result-card,
  .advisor-quote-form {
    grid-template-columns: 1fr;
  }

  .advisor-result-body {
    padding: 18px;
  }

  .advisor-result-card img {
    height: 220px;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .ai-advisor-copy h1 {
    font-size: 36px;
  }

  .ai-advisor-form,
  .advisor-loading,
  .advisor-error,
  .advisor-results,
  .advisor-quote {
    padding: 20px;
  }

  .advisor-step-track {
    grid-template-columns: repeat(5, 1fr);
  }

  .advisor-step-track b {
    width: 36px;
    height: 36px;
  }
}

/* AI advisor aligned with custom quote aesthetic */
.ai-advisor-page {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #f2fbfe 0, #fff 430px, #f7fbfd 100%);
}

.ai-advisor-page .industry-breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
  color: #526979;
  font-size: 14px;
  font-weight: 800;
}

.ai-advisor-page .ai-advisor-hero {
  padding: 0;
  border-top: 1px solid #dbeef5;
  border-bottom: 1px solid #dcebf0;
  background:
    linear-gradient(135deg, rgba(2, 148, 221, .14), rgba(226, 20, 131, .08)),
    #f4fbfe;
}

.ai-advisor-page .ai-advisor-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 44px;
  padding-top: 46px;
  padding-bottom: 60px;
}

.ai-advisor-page .ai-advisor-copy h1 {
  margin: 18px 0;
  color: #123f70;
  font-size: clamp(42px, 4.4vw, 56px) !important;
  line-height: 1.04;
}

.ai-advisor-page .ai-advisor-copy p {
  color: #526979;
  font-size: 18px !important;
}

.ai-advisor-page .ai-advisor-visual {
  padding: 22px;
  border: 1px solid rgba(2, 148, 221, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 159, 208, .12);
}

.ai-advisor-page .ai-advisor-visual img {
  border-radius: 8px;
  filter: drop-shadow(0 14px 22px rgba(18, 63, 112, .14));
}

.ai-advisor-page .ai-advisor-shell {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding-top: 36px;
}

.ai-advisor-page .ai-advisor-progress-card,
.ai-advisor-page .ai-advisor-form,
.ai-advisor-page .advisor-loading,
.ai-advisor-page .advisor-error,
.ai-advisor-page .advisor-results,
.ai-advisor-page .advisor-quote {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.ai-advisor-page .ai-advisor-progress-card > span {
  color: #047fbf;
}

.ai-advisor-page .advisor-step-track b {
  border-color: #dce8ef;
  background: #f7fbfd;
  color: #526979;
}

.ai-advisor-page .advisor-step-track b.is-active,
.ai-advisor-page .advisor-step-track b.is-complete {
  border-color: #047fbf;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .18);
}

.ai-advisor-page .advisor-step-panel h2,
.ai-advisor-page .advisor-results h2,
.ai-advisor-page .advisor-quote h2,
.ai-advisor-page .advisor-error h2,
.ai-advisor-page .advisor-followup h2 {
  color: #123f70;
  font-size: clamp(28px, 3vw, 36px) !important;
}

.ai-advisor-page .advisor-step-panel p,
.ai-advisor-page .advisor-results .industry-section-heading p,
.ai-advisor-page .advisor-error p,
.ai-advisor-page .advisor-followup p {
  color: #526979;
}

.ai-advisor-page .advisor-option-grid label {
  border-color: #dce8ef;
  background: #f7fbfd;
  color: #123f70;
}

.ai-advisor-page .advisor-option-grid label:hover,
.ai-advisor-page .advisor-option-grid label:focus-within {
  border-color: rgba(4, 127, 191, .28);
  box-shadow: 0 18px 34px rgba(18, 63, 112, .1);
}

.ai-advisor-page .advisor-option-grid input,
.ai-advisor-page .advisor-field-grid input,
.ai-advisor-page .advisor-field-grid select,
.ai-advisor-page .advisor-field-grid textarea,
.ai-advisor-page .advisor-followup-box input,
.ai-advisor-page .advisor-quote-form input,
.ai-advisor-page .advisor-quote-form textarea {
  accent-color: #047fbf;
}

.ai-advisor-page .advisor-option-grid input:checked + span {
  color: #e21483;
}

.ai-advisor-page .advisor-field-grid input,
.ai-advisor-page .advisor-field-grid select,
.ai-advisor-page .advisor-field-grid textarea,
.ai-advisor-page .advisor-followup-box input,
.ai-advisor-page .advisor-quote-form input,
.ai-advisor-page .advisor-quote-form textarea {
  border-color: #dce8ef;
  background: #fff;
}

.ai-advisor-page .advisor-field-grid input:focus,
.ai-advisor-page .advisor-field-grid select:focus,
.ai-advisor-page .advisor-field-grid textarea:focus,
.ai-advisor-page .advisor-followup-box input:focus,
.ai-advisor-page .advisor-quote-form input:focus,
.ai-advisor-page .advisor-quote-form textarea:focus {
  border-color: #047fbf;
  box-shadow: 0 0 0 4px rgba(4, 127, 191, .14);
}

.ai-advisor-page .advisor-review-note,
.ai-advisor-page .advisor-followup-examples span {
  border: 1px solid #dce8ef;
  background: #f7fbfd;
  color: #526979;
}

.ai-advisor-page .advisor-result-card {
  border: 1px solid rgba(20, 55, 76, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 63, 112, .09);
}

.ai-advisor-page .advisor-result-card h3 {
  color: #123f70;
}

.ai-advisor-page .advisor-result-card img {
  background: #f7fbfd;
}

.ai-advisor-page .advisor-result-meta span {
  color: #047fbf;
  background: #eaf8fd;
}

.ai-advisor-page .advisor-result-meta .priority {
  color: #fff;
  background: #e21483;
}

.ai-advisor-page .advisor-card-actions a,
.ai-advisor-page .advisor-card-actions button,
.ai-advisor-page .advisor-followup-box button,
.ai-advisor-page .advisor-quote-form button,
.ai-advisor-page .industry-button.primary {
  border-radius: 7px;
  background: #047fbf;
  box-shadow: 0 12px 24px rgba(4, 127, 191, .22);
}

.ai-advisor-page .industry-button.secondary {
  border: 1px solid rgba(4, 127, 191, .24);
  border-radius: 7px;
  color: #047fbf;
  background: #fff;
}

@media (max-width: 1100px) {
  .ai-advisor-page .ai-advisor-hero-inner,
  .ai-advisor-page .ai-advisor-shell,
  .ai-advisor-page .advisor-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ai-advisor-page {
    padding-bottom: 56px;
  }

  .ai-advisor-page .ai-advisor-copy h1 {
    font-size: 38px !important;
  }
}

/* Homepage review strip clarity */
body:has(.hero) .review-meta {
  width: min(100% - 32px, 940px);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid #d9edf5;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(18, 63, 89, .08);
  white-space: normal;
}

body:has(.hero) .review-meta .eyebrow,
body:has(.hero) .review-meta .rating {
  color: #526b7a;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

body:has(.hero) .review-meta .eyebrow {
  text-align: right;
}

body:has(.hero) .review-meta .rating {
  justify-content: flex-start;
  gap: 18px;
  margin: 0;
}

body:has(.hero) .review-meta .rating img {
  width: 210px;
  max-width: 32vw;
  opacity: 1;
  filter: contrast(1.08) saturate(1.04);
}

body:has(.hero) .review-meta .rating span {
  color: #415766;
  font-weight: 900;
}

@media (max-width: 760px) {
  body:has(.hero) .review-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  body:has(.hero) .review-meta .eyebrow,
  body:has(.hero) .review-meta .rating {
    justify-content: center;
    text-align: center;
  }

  body:has(.hero) .review-meta .rating img {
    width: min(220px, 68vw);
    max-width: 100%;
  }
}

/* Homepage review strip compact fix */
body:has(.hero) .category-strip .review-meta {
  width: fit-content;
  max-width: min(100% - 32px, 760px);
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 18px;
  padding: 14px 18px;
}

body:has(.hero) .category-strip .review-meta .eyebrow {
  max-width: 230px;
  text-align: left;
}

body:has(.hero) .category-strip .review-meta .rating {
  width: auto;
  justify-content: center;
  gap: 14px;
}

body:has(.hero) .category-strip .review-meta .rating img {
  width: clamp(150px, 18vw, 205px);
  height: auto;
  max-width: none;
  object-fit: contain;
}

body:has(.hero) .category-strip .review-meta .rating span {
  white-space: nowrap;
}

@media (max-width: 680px) {
  body:has(.hero) .category-strip .review-meta {
    width: min(100% - 32px, 420px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:has(.hero) .category-strip .review-meta .eyebrow {
    max-width: none;
    text-align: center;
  }

  body:has(.hero) .category-strip .review-meta .rating {
    flex-direction: column;
  }

  body:has(.hero) .category-strip .review-meta .rating img {
    width: min(230px, 72vw);
  }
}

/* Cart typography scale fix */
.cart-table {
  max-width: 1040px;
}

.cart-head {
  min-height: 48px;
  font-size: 16px;
}

.cart-head span:nth-child(2) {
  text-align: center;
}

.cart-row {
  min-height: 185px;
  gap: 16px;
  padding: 16px;
}

.cart-actions button {
  min-height: 42px;
  min-width: 126px;
  border-radius: 6px;
  font-size: 14px;
}

.cart-actions button {
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--blue) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-transform: none;
}

.cart-actions button:hover,
.cart-actions button:focus-visible {
  color: var(--pink) !important;
  text-decoration: underline;
  outline: none;
}

.cart-qty {
  width: 136px;
  height: 34px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  justify-self: center;
  align-self: start;
  place-items: stretch;
  overflow: hidden;
  border: 1px solid #d9e1ec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  font-size: 15px;
}

.cart-qty button,
.cart-qty output {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  border: 0;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 900;
  line-height: 1;
}

.cart-qty button {
  color: #7c93ad;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.cart-qty button:first-child {
  border-right: 1px solid #e5ebf2;
}

.cart-qty button:last-child {
  border-left: 1px solid #e5ebf2;
}

.cart-qty button:hover,
.cart-qty button:focus-visible {
  color: var(--blue);
  background: #f6fbff;
  outline: none;
}

.cart-qty button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(4, 127, 191, .24);
}

.cart-detail {
  font-size: 14px;
  line-height: 1.35;
}

.cart-price {
  font-size: 18px;
}

.cart-widgets {
  max-width: 1040px;
  grid-template-columns: 250px minmax(300px, 340px) 320px;
  align-items: start;
  gap: 34px;
}

.coupon-box h2,
.shipping-rate h2,
.checkout-price h2 {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 13px;
  font-size: 19px !important;
  line-height: 1.12;
}

.coupon-box p,
.coupon-box div {
  font-size: 15px;
  line-height: 1.35;
}

.coupon-box button {
  min-height: 28px;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
}

.shipping-rate label {
  margin: 20px 22px 0;
  gap: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.shipping-rate input,
.shipping-rate select {
  height: 44px;
  font-size: 15px;
}

.shipping-rate select {
  font-size: 14px;
}

.shipping-rate p {
  margin: 16px 22px;
  font-size: 14px;
  line-height: 1.35;
}

.shipping-rate strong,
.shipping-rate span {
  font-size: 15px;
}

.checkout-price p,
.order-summary p {
  padding: 10px 28px;
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1140px) {
  .cart-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 820px) {
  .cart-head {
    display: none;
  }

  .cart-row,
  .cart-widgets {
    grid-template-columns: 1fr;
  }

  .cart-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cart-actions button {
    width: 100%;
  }

  .coupon-box h2,
  .shipping-rate h2,
  .checkout-price h2 {
    font-size: 18px;
  }
}

/* Checkout submit area polish */
.checkout-page .submit-order {
  width: auto;
  min-width: 150px;
  min-height: 42px;
  margin: 8px 0 0 132px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(6, 134, 196, .2);
}

.checkout-page .checkout-warning {
  max-width: 430px;
  margin: 18px 0 0 112px;
  padding: 12px 16px;
  border: 1px solid #f5c1dc;
  border-radius: 8px;
  color: #bf1b68;
  background: #fff3f9;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 680px) {
  .checkout-page .submit-order,
  .checkout-page .checkout-warning {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

/* Site typography system */
html,
body,
input,
select,
textarea,
button,
a,
p,
li,
span,
label,
small,
strong,
b,
td,
th {
  font-family: "Inter", Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading,
.industry-section-heading,
.service-heading,
.page-title {
  font-family: "Poppins", Helvetica, sans-serif;
  letter-spacing: 0;
}

/* Strict typography hierarchy */
h1 {
  font-weight: 600 !important;
}

h2 {
  font-weight: 600 !important;
}

h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}

body,
p,
li,
dd,
td,
input,
select,
textarea,
label,
small {
  font-weight: 300 !important;
}

.main-nav a,
.main-nav button,
.mobile-drawer-nav a,
.mobile-drawer-label,
.header-actions a,
.footer-column a {
  font-weight: 500 !important;
}

button,
.button,
.industry-button,
.service-button,
.nav-cta,
.cart-actions button,
.shopping-buttons a,
.submit-order,
.account-actions a,
input[type="submit"] {
  font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .55em;
}

h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
  margin-top: 0;
}

@media (max-width: 760px) {
  h1,
  h2,
  h3 {
    line-height: 1.16;
  }
}

/* Modern account detail cards */
.account-detail-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.account-detail-summary > div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid #dfeaf0;
  border-radius: 8px;
  background: #f8fbfd;
}

.account-detail-summary span,
.account-detail-card-head span {
  color: #6b7d89;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-detail-summary b {
  color: #103f70;
  font-size: 17px;
  font-weight: 500;
}

.account-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.account-detail-grid article {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #dfeaf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08);
}

.account-detail-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5eef3;
}

.account-detail-grid article h2 {
  margin: 0;
  color: #103f70;
  background: transparent !important;
  font-size: 26px !important;
  font-weight: 600;
  line-height: 1.12;
}

.account-detail-grid article p {
  margin: 0 0 16px;
  color: #2f4350;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.55;
}

.account-detail-grid article small {
  margin-top: auto;
  color: #61727e;
  font-size: 14px;
  font-weight: 400;
}

.account-detail-grid article button {
  width: max-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #047fbf;
  border-radius: 6px;
  color: #fff;
  background: #047fbf;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
}

.account-detail-grid article button:hover,
.account-detail-grid article button:focus-visible {
  background: #e21483;
  border-color: #e21483;
  outline: 3px solid rgba(226, 20, 131, .16);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .account-detail-summary,
  .account-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Franchise branding material tab */
.franchise-branding-panel {
  display: none;
}

.franchise-branding-panel.active {
  display: block;
}

.franchise-branding-intro,
.franchise-customizer,
.franchise-review {
  border: 1px solid #dfeaf0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08);
}

.history-content > .order-list {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 18px;
  margin: 22px 0 0 !important;
  padding: 0;
}

.history-content > .order-list .order-card {
  margin: 0;
}

.order-search-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed #b9d8e8;
  border-radius: 8px;
  background: #f7fbfe;
  color: #31516a;
  font-weight: 700;
  text-align: center;
}

.franchise-branding-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f8fcfe 0%, #eef8fc 100%);
}

.franchise-branding-intro h2 {
  margin: 4px 0 8px;
  color: #103f70;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.franchise-branding-intro p {
  max-width: 760px;
  margin: 0;
  color: #5b6f7d;
  line-height: 1.55;
}

.franchise-branding-intro a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  border-radius: 7px;
  color: #fff;
  background: #047fbf;
  text-decoration: none;
  font-weight: 800;
}

.franchise-customizer,
.franchise-review {
  padding: 24px;
  margin-bottom: 24px;
}

.franchise-branding-panel .franchise-customizer {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.franchise-branding-panel .franchise-review {
  display: none;
}

.franchise-branding-panel .franchise-review.active {
  display: block;
}

.franchise-branding-panel .franchise-saved-page {
  display: none;
}

.franchise-branding-panel .franchise-saved-page.active {
  display: block;
}

.franchise-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 7px;
  border: 1px solid #e3edf3;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
  box-shadow: 0 12px 28px rgba(28, 52, 66, .07);
}

.franchise-product-tabs button {
  position: relative;
  min-height: 38px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  color: #516675;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.franchise-product-tabs button:hover,
.franchise-product-tabs button:focus-visible {
  color: #047fbf;
  background: #eef8fd;
  outline: none;
}

.franchise-product-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #047fbf 0%, #10a8dc 100%);
  box-shadow: 0 10px 22px rgba(4, 127, 191, .25);
  transform: translateY(-1px);
  outline: none;
}

.franchise-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 100%;
}

.franchise-product-card {
  position: relative;
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e4edf2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(22, 44, 57, .08);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.franchise-product-card:hover,
.franchise-product-card:focus-visible {
  transform: translateY(-6px);
  border-color: #b9dced;
  box-shadow: 0 24px 44px rgba(22, 44, 57, .16);
  outline: 2px solid rgba(4, 127, 191, .1);
  outline-offset: 2px;
}

.franchise-wishlist {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #31516a;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 18px rgba(22, 44, 57, .1);
  font-size: 17px;
  line-height: 1;
}

.franchise-product-media {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #f7fafc 0%, #edf4f8 100%);
}

.franchise-product-media::after {
  content: "";
  position: absolute;
  inset: auto -24px -36px;
  height: 72px;
  background: radial-gradient(circle at 50% 50%, rgba(4, 127, 191, .12), transparent 70%);
}

.franchise-product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(.94);
  transition: transform .28s ease;
}

.franchise-product-card:hover .franchise-product-media img,
.franchise-product-card:focus-visible .franchise-product-media img {
  transform: scale(1.04);
}

.franchise-product-info {
  display: grid;
  gap: 5px;
}

.franchise-product-name {
  min-width: 0;
  color: #102635;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}

.franchise-product-kicker {
  color: #7a8d9a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.franchise-product-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #047fbf 0%, #10a8dc 100%);
  box-shadow: 0 12px 24px rgba(4, 127, 191, .28);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(2px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.franchise-product-card:hover .franchise-product-cta,
.franchise-product-card:focus-visible .franchise-product-cta {
  transform: translateY(0) scale(1.06);
  box-shadow: 0 16px 28px rgba(4, 127, 191, .34);
}

.franchise-product-detail {
  padding: 0;
  margin-bottom: 28px;
  color: #06122d;
}

.franchise-product-detail .franchise-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  color: #006dff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform .18s ease, color .18s ease;
}

.franchise-product-detail button:hover .franchise-icon,
.franchise-product-detail button:focus-visible .franchise-icon {
  transform: scale(1.08);
}

.franchise-detail-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0 18px;
  border: 1px solid #e3ebf1;
  border-radius: 14px;
  color: #111827;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.franchise-detail-back:hover,
.franchise-detail-back:focus-visible {
  transform: translateY(-1px);
  color: #047fbf;
  border-color: #9fd1e6;
  box-shadow: 0 14px 30px rgba(4, 127, 191, .12);
  outline: 2px solid rgba(4, 127, 191, .12);
  outline-offset: 2px;
}

.franchise-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #7a8d9a;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.franchise-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.franchise-breadcrumb span:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #a8b7c1;
  font-size: 18px;
  font-weight: 900;
}

.franchise-breadcrumb span:last-child {
  color: #006dff;
}

.franchise-breadcrumb-home {
  width: auto;
  height: auto;
}

.franchise-breadcrumb-home .franchise-icon {
  width: 18px;
  height: 18px;
  color: #8b9aaa;
}

.franchise-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(520px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.franchise-detail-gallery {
  display: grid;
}

.franchise-detail-preview {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 30px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, #f5f8fb 0%, #eaf2f7 100%);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .14);
}

.franchise-detail-preview img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, .16));
}

.franchise-detail-zoom {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.franchise-tabs-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
}

.franchise-detail-zoom .franchise-icon {
  color: #111827;
}

.franchise-detail-copy {
  padding: 0 28px 0 0;
}

.franchise-detail-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 13px;
  border-radius: 10px;
  color: #006dff;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}

.franchise-detail-copy h2 {
  margin: 0 0 14px;
  color: #06122d;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.02;
}

.franchise-detail-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffb000;
  font-size: 18px;
  margin-bottom: 18px;
}

.franchise-detail-rating b {
  color: #006dff;
  font-size: 14px;
}

.franchise-detail-divider {
  height: 1px;
  margin: 18px 0;
  background: #dde6ed;
}

.franchise-detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 18px;
}

.franchise-detail-feature:has(.franchise-detail-size) {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
}

.franchise-detail-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef6ff;
  box-shadow: 0 10px 22px rgba(0, 109, 255, .08);
}

.franchise-detail-icon .franchise-icon {
  width: 22px;
  height: 22px;
}

.franchise-detail-feature p {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #06122d;
  line-height: 1.35;
}

.franchise-detail-size {
  width: 100%;
  max-width: 560px;
  display: grid;
  gap: 10px;
}

.franchise-detail-size-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.franchise-detail-size-head p {
  min-width: 0;
}

.franchise-size-update {
  min-height: 28px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 2px solid black;
  border-radius: 8px;
  color: black;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.franchise-size-update:hover,
.franchise-size-update:focus-visible,
.franchise-size-update[aria-expanded="true"] {
  color: #fff;
  background: black;
  outline: 3px solid rgba(255, 29, 37, .16);
  outline-offset: 2px;
}

.franchise-product-detail .franchise-size-update {
  font-size: 12px !important;
  font-weight: 950 !important;
}

.franchise-size-menu {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 6px;
  padding: 26px 26px 30px;
  border: 1px solid #e8eef7;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(15, 54, 89, .1);
}

.franchise-size-menu[hidden] {
  display: none;
}

.franchise-custom-size-title {
  width: max-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  color: #111827;
  background: linear-gradient(180deg, #fdfefe, #f5f9ff);
  box-shadow: inset 0 0 0 1px rgba(0, 109, 255, .04);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.franchise-custom-size-title span {
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 2px dashed #006dff;
  border-radius: 4px;
}

.franchise-custom-size-help {
  margin: 0 0 8px;
  color: #344466;
  font-size: 16px;
  font-weight: 500;
}

.franchise-custom-size-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  padding-top: 4px;
}

.franchise-custom-size-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  justify-content: stretch;
  color: #006dff;
  font-size: 16px;
  font-style: normal;
  position: relative;
}

.franchise-custom-size-field span {
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.franchise-custom-size-field input {
  width: 100%;
  height: 54px;
  padding: 0 68px 0 14px;
  border: 1px solid #d8e1ef;
  border-radius: 8px;
  color: #111827;
  background: #fff;
  box-shadow: 0 5px 12px rgba(15, 54, 89, .06);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.franchise-custom-size-field em {
  position: absolute;
  right: 12px;
  bottom: 17px;
  color: #006dff;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
}

.franchise-custom-size-x {
  align-self: end;
  margin-bottom: 15px;
  color: #0f172a;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}

.franchise-custom-size-guides {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 0 36px 18px;
  border-bottom: 1px solid #dfe7f2;
}

.franchise-custom-size-guides span {
  justify-self: center;
  position: relative;
  display: block;
}

.franchise-custom-size-guides .height-guide {
  width: 2px;
  height: 38px;
  background: #006dff;
}

.franchise-custom-size-guides .height-guide::before,
.franchise-custom-size-guides .height-guide::after {
  content: "";
  position: absolute;
  left: -6px;
  width: 14px;
  height: 2px;
  background: #006dff;
}

.franchise-custom-size-guides .height-guide::before {
  top: 0;
}

.franchise-custom-size-guides .height-guide::after {
  bottom: 0;
}

.franchise-custom-size-guides .width-guide {
  width: 100px;
  height: 2px;
  margin-top: 0;
  background: #006dff;
}

.franchise-custom-size-guides .width-guide::before,
.franchise-custom-size-guides .width-guide::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 2px;
  height: 14px;
  background: #006dff;
}

.franchise-custom-size-guides .width-guide::before {
  left: 0;
}

.franchise-custom-size-guides .width-guide::after {
  right: 0;
}

.franchise-custom-size-total {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 2px 0 4px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 500;
}

.franchise-custom-size-total strong {
  color: #006dff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.franchise-custom-size-qty {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
}

.franchise-custom-size-stepper {
  width: 168px;
  min-height: 46px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border: 1px solid #d8e1ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(15, 54, 89, .06);
}

.franchise-custom-size-stepper input {
  width: 100%;
  height: 44px;
  border: 0;
  color: #0f172a;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.franchise-custom-size-stepper input::-webkit-outer-spin-button,
.franchise-custom-size-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.franchise-custom-size-stepper button {
  width: 44px;
  height: 44px;
  border: 0;
  color: #006dff;
  background: transparent;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.franchise-size-menu > button {
  min-width: 200px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 6px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #008cff, #005cff);
  box-shadow: 0 12px 24px rgba(0, 109, 255, .28);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.franchise-size-menu > button span {
  font-size: 26px;
  line-height: 1;
}

.franchise-detail-feature b {
  font-size: 15px;
  font-weight: 950;
}

.franchise-detail-feature span:not(.franchise-detail-icon) {
  max-width: 420px;
  color: #0f172a;
  font-size: 14px;
}

.franchise-detail-purchase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 18px;
}

.franchise-detail-qty,
.franchise-detail-price {
  display: grid;
  gap: 10px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.franchise-detail-qty > div {
  width: 142px;
  min-height: 52px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border: 1px solid #dde8ef;
  border-radius: 10px;
  background: #fff;
}

.franchise-detail-qty button {
  width: 34px;
  height: 34px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  color: #006dff;
  background: transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.franchise-detail-qty button:hover,
.franchise-detail-qty button:focus-visible {
  background: #eef6ff;
  color: #004fbd;
  outline: none;
}

.franchise-detail-qty input {
  width: 100%;
  border: 0;
  color: #111827;
  background: transparent;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
}

.franchise-reference-number {
  display: grid;
  grid-template-columns: max-content minmax(260px, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 22px;
  padding: 20px 24px;
  background: #fafafa;
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}

.franchise-reference-number input {
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 4px solid #e7193f;
  border-radius: 0;
  color: #111827;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
}

.franchise-reference-number input:focus {
  border-color: #c8102e;
  box-shadow: 0 0 0 3px rgba(231, 25, 63, .12);
  outline: none;
}

.franchise-detail-price {
  display: grid;
  gap: 12px;
  min-width: 230px;
  padding-left: 44px;
  border-left: 1px solid #dde8ef;
}

.franchise-regular-price,
.franchise-discounted-price {
  display: grid;
  gap: 5px;
  justify-items: start;
  text-align: left;
}

.franchise-regular-price span,
.franchise-discounted-price span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.franchise-regular-price span {
  color: #7b8796;
}

.franchise-regular-price strong {
  color: #8b97a6;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #7e8a99;
}

.franchise-discounted-price {
  padding-top: 14px;
  border-top: 1px solid #dbe6ef;
}

.franchise-discounted-price span {
  color: #0074f0;
}

.franchise-discounted-price strong {
  color: #06122d;
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: 0;
}

.franchise-detail-comment-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 0;
  border: 0;
  color: #006dff;
  background: transparent;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.franchise-detail-comment {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 850;
}

.franchise-detail-comment textarea {
  width: 100%;
  min-height: 84px;
  border: 1px solid #dde8ef;
  border-radius: 12px;
  padding: 10px;
  background: #f8fbfd;
  resize: vertical;
}

.franchise-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 18px;
  margin-top: 22px;
}

.franchise-detail-cart {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #006dff 0%, #049bf2 100%);
  box-shadow: 0 16px 30px rgba(0, 109, 255, .28);
  font-size: 19px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.franchise-detail-cart .franchise-icon {
  color: #fff;
}

.franchise-detail-cart:hover,
.franchise-detail-cart:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 109, 255, .34);
  outline: 3px solid rgba(0, 109, 255, .16);
  outline-offset: 2px;
}

.franchise-detail-save {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dde8ef;
  border-radius: 12px;
  color: #475569;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.franchise-detail-save:hover,
.franchise-detail-save:focus-visible {
  transform: translateY(-2px);
  color: #006dff;
  border-color: #9fc9ff;
  outline: 3px solid rgba(0, 109, 255, .12);
  outline-offset: 2px;
}

.franchise-detail-save.saved {
  color: #006dff;
  border-color: #9fc9ff;
  background: #eef6ff;
}

.franchise-detail-save.saved .franchise-icon {
  fill: currentColor;
}

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

.franchise-detail-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.franchise-detail-trust b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0f7ff;
}

.franchise-detail-trust .franchise-icon {
  width: 22px;
  height: 22px;
}

.wholesale-run-pricing {
  overflow: hidden;
  margin: 34px 0 0;
  width: 100%;
  border: 1px solid #dbe5ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 54, 89, .12);
}

.wholesale-run-pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 26px 28px 14px;
}

.wholesale-run-pricing-head h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 950;
}

.wholesale-run-pricing-head label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 850;
}

.wholesale-run-pricing-head input {
  width: 58px;
  min-height: 42px;
  border: 1px solid #d6e2ec;
  border-radius: 8px;
  color: #111827;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.wholesale-run-table-wrap {
  margin: 0 24px 20px;
  overflow: hidden;
  border: 1px solid #e5edf4;
  border-radius: 10px;
}

.wholesale-run-pricing table {
  width: 100%;
  border-collapse: collapse;
  color: #1f2937;
  font-size: 18px;
}

.wholesale-run-pricing th,
.wholesale-run-pricing td {
  padding: 18px 28px;
  border-bottom: 1px solid #e8eef5;
  text-align: left;
}

.wholesale-run-pricing th {
  color: #111827;
  background: #fff;
  font-weight: 950;
}

.wholesale-run-pricing tr:last-child td {
  border-bottom: 0;
}

.wholesale-run-pricing tbody tr {
  cursor: pointer;
}

.wholesale-run-pricing tbody tr.selected {
  background: #f2f6ff;
  box-shadow: inset 4px 0 0 #3478ff;
}

.wholesale-run-pricing tbody tr.selected td:first-child {
  color: #2563eb;
}

.wholesale-run-arrow {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-right: 12px;
  border-radius: 999px;
  color: #fff;
  background: #3478ff;
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.wholesale-run-actions {
  display: flex;
  justify-content: flex-end;
  padding: 16px 28px;
  border-top: 1px solid #e6edf5;
  background: #fff;
}

.wholesale-run-actions button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #4b82ff 0%, #245fed 100%);
  box-shadow: 0 12px 22px rgba(36, 95, 237, .28);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.wholesale-broker-panel .franchise-product-detail {
  position: relative;
}

.wholesale-top-markup {
  position: absolute;
  right: 24px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}

.wholesale-top-markup input {
  width: 54px;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid #dbe5ee;
  border-radius: 6px;
  color: #111827;
  background: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.wholesale-broker-panel .wholesale-run-pricing {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 54, 89, .08);
}

.wholesale-broker-panel .wholesale-run-pricing-head {
  padding: 22px 24px 10px;
}

.wholesale-broker-panel .wholesale-run-pricing-head p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.wholesale-broker-panel .wholesale-run-table-wrap {
  margin: 0 24px 18px;
}

.wholesale-broker-panel .wholesale-run-pricing table {
  font-size: 13px;
}

.wholesale-broker-panel .wholesale-run-pricing th,
.wholesale-broker-panel .wholesale-run-pricing td {
  padding: 13px 20px;
}

.wholesale-broker-panel .wholesale-run-pricing th small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.wholesale-broker-panel .wholesale-run-pricing tbody tr.selected {
  background: #eef4ff;
  box-shadow: inset 4px 0 0 #2f73ff;
}

.wholesale-run-check {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 999px;
  color: #fff;
  background: #3478ff;
  font-size: 11px;
  line-height: 1;
  vertical-align: middle;
}

.wholesale-broker-panel .wholesale-run-pricing td strong {
  color: #16a34a;
  font-weight: 950;
}

.wholesale-checkout-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: 22px;
  padding: 0 24px 24px;
}

.wholesale-order-summary {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #e5edf4;
  border-radius: 10px;
  background: #fff;
}

.wholesale-order-summary h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}

.wholesale-order-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: #334155;
  font-size: 12px;
}

.wholesale-order-summary p span {
  color: #111827;
  font-weight: 950;
  text-align: right;
}

.wholesale-order-summary p:first-of-type span {
  color: #2563eb;
}

.wholesale-order-summary p:last-of-type span {
  color: #16a34a;
}

.wholesale-order-summary small {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 8px;
  color: #64748b;
  background: #f2f7ff;
  font-size: 11px;
  line-height: 1.35;
}

.wholesale-order-summary small b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #3b82f6;
  font-size: 11px;
}

.wholesale-broker-panel .wholesale-run-actions {
  display: grid;
  gap: 10px;
  padding: 0;
  border-top: 0;
  align-content: start;
  grid-auto-rows: max-content;
}

.wholesale-broker-panel .wholesale-run-actions button {
  width: 100%;
  height: 46px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.wholesale-broker-panel .wholesale-run-actions button .franchise-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.wholesale-broker-panel .wholesale-run-actions .wholesale-cart-action {
  border: 1px solid #1f63f2;
  color: #fff;
  background: linear-gradient(135deg, #3478ff 0%, #1f63f2 100%);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
}

.wholesale-broker-panel .wholesale-run-actions .wholesale-cart-action:hover,
.wholesale-broker-panel .wholesale-run-actions .wholesale-cart-action:focus-visible {
  background: linear-gradient(135deg, #256ef4 0%, #1658d8 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .28);
  transform: translateY(-1px);
}

.wholesale-broker-panel .wholesale-run-actions .wholesale-quote-action {
  color: #2563eb;
  border: 1px solid #cbdcf7;
  background: #f8fbff;
  box-shadow: none;
}

.wholesale-broker-panel .wholesale-run-actions .wholesale-quote-action:hover,
.wholesale-broker-panel .wholesale-run-actions .wholesale-quote-action:focus-visible {
  color: #174fca;
  border-color: #9fc0f5;
  background: #eef6ff;
  transform: translateY(-1px);
}

.wholesale-run-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.wholesale-run-trust span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #64748b;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.wholesale-run-trust b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #006dff;
  background: #f0f7ff;
}

.wholesale-run-trust .franchise-icon {
  width: 21px;
  height: 21px;
}

.account-page {
  width: min(1580px, calc(100% - 32px)) !important;
}

.account-layout {
  grid-template-columns: 230px minmax(0, 1fr) !important;
}

.wholesale-broker-panel {
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.wholesale-broker-panel .franchise-product-detail {
  padding: 24px !important;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 54, 89, .08);
}

.wholesale-broker-panel .franchise-detail-back {
  margin-bottom: 16px;
}

.wholesale-broker-panel .franchise-breadcrumb {
  padding-right: 150px;
  margin-bottom: 20px;
}

.wholesale-broker-panel .franchise-detail-layout {
  grid-template-columns: minmax(390px, .95fr) minmax(460px, 1.05fr);
  gap: 36px;
  align-items: start;
}

.wholesale-broker-panel .franchise-detail-preview {
  min-height: 470px;
  padding: 22px;
  border: 1px solid #e0e8f1;
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: none;
}

.wholesale-broker-panel .franchise-detail-preview img {
  max-height: 430px;
  object-fit: contain;
}

.wholesale-broker-panel .franchise-detail-copy {
  padding: 0;
}

.wholesale-broker-panel .franchise-detail-badge {
  min-height: 24px;
  margin-bottom: 10px;
  padding: 0;
  color: #2563eb;
  background: transparent;
  font-size: 11px;
  letter-spacing: .07em;
}

.wholesale-broker-panel .franchise-detail-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.wholesale-broker-panel .franchise-detail-rating {
  gap: 8px;
  margin-bottom: 18px;
  font-size: 16px;
}

.wholesale-broker-panel .franchise-detail-rating b {
  font-size: 13px;
}

.wholesale-broker-panel .franchise-detail-divider {
  margin: 16px 0;
  background: #e5edf4;
}

.wholesale-broker-panel .franchise-detail-feature {
  gap: 12px;
  margin-bottom: 16px;
}

.wholesale-broker-panel .franchise-detail-feature:has(.franchise-detail-size) {
  grid-template-columns: 30px minmax(0, 1fr);
}

.wholesale-broker-panel .franchise-detail-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.wholesale-broker-panel .franchise-detail-icon .franchise-icon {
  width: 18px;
  height: 18px;
}

.wholesale-broker-panel .franchise-detail-size {
  max-width: none;
}

.wholesale-broker-panel .franchise-detail-size-head {
  align-items: center;
}

.wholesale-broker-panel .franchise-detail-feature b {
  font-size: 13px;
}

.wholesale-broker-panel .franchise-detail-feature span:not(.franchise-detail-icon) {
  max-width: 100%;
  font-size: 12px;
  line-height: 1.35;
}

.wholesale-broker-panel .franchise-size-update {
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid #cfd9e5;
  border-radius: 6px;
  color: #111827;
  background: #fff;
  font-size: 12px !important;
}

.wholesale-broker-panel .franchise-reference-number {
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 18px 0 14px;
  padding: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
}

.wholesale-broker-panel .franchise-reference-number input {
  min-height: 44px;
  border: 1px solid #d8e3ee;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
}

.wholesale-broker-panel .franchise-detail-comment {
  gap: 7px;
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 850;
}

.wholesale-broker-panel .franchise-detail-comment textarea {
  min-height: 88px;
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}

.wholesale-broker-panel .franchise-detail-purchase,
.wholesale-broker-panel .franchise-detail-actions,
.wholesale-broker-panel .franchise-detail-comment-toggle,
.wholesale-broker-panel .franchise-detail-trust {
  display: none !important;
}

.wholesale-broker-panel .wholesale-run-pricing {
  margin-top: 28px;
  border: 1px solid #dfe8f1;
  border-radius: 10px;
  box-shadow: none;
}

.wholesale-broker-panel .wholesale-run-pricing-head {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 22px 24px 14px;
}

.wholesale-broker-panel .wholesale-run-pricing-head h3 {
  font-size: 18px;
}

.wholesale-broker-panel .wholesale-run-table-wrap {
  margin: 0 24px 18px;
  border-radius: 8px;
}

.wholesale-broker-panel .wholesale-run-pricing table {
  table-layout: fixed;
  font-size: 14px;
}

.wholesale-broker-panel .wholesale-run-pricing th,
.wholesale-broker-panel .wholesale-run-pricing td {
  height: 58px;
  padding: 10px 18px;
  vertical-align: middle;
}

.wholesale-broker-panel .wholesale-run-pricing th:nth-child(1),
.wholesale-broker-panel .wholesale-run-pricing td:nth-child(1) {
  width: 18%;
}

.wholesale-broker-panel .wholesale-run-pricing th:nth-child(2),
.wholesale-broker-panel .wholesale-run-pricing td:nth-child(2) {
  width: 18%;
}

.wholesale-broker-panel .wholesale-run-pricing th:nth-child(3),
.wholesale-broker-panel .wholesale-run-pricing td:nth-child(3),
.wholesale-broker-panel .wholesale-run-pricing th:nth-child(4),
.wholesale-broker-panel .wholesale-run-pricing td:nth-child(4) {
  width: 22%;
}

.wholesale-broker-panel .wholesale-run-pricing th:nth-child(5),
.wholesale-broker-panel .wholesale-run-pricing td:nth-child(5) {
  width: 20%;
}

.wholesale-broker-panel .wholesale-run-pricing tbody tr.selected {
  background: #eef4ff;
  box-shadow: inset 4px 0 0 #2f73ff;
}

.wholesale-broker-panel .wholesale-checkout-grid {
  grid-template-columns: minmax(330px, .85fr) minmax(430px, 1.15fr);
  gap: 24px;
  padding: 0 24px 24px;
}

.wholesale-broker-panel .wholesale-order-summary {
  min-height: 212px;
}

.wholesale-checkout-screen {
  display: grid;
  gap: 18px;
  color: #111827;
}

.wholesale-checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 850;
}

.wholesale-checkout-breadcrumb span {
  color: #94a3b8;
}

.wholesale-checkout-header {
  display: grid;
  gap: 4px;
}

.wholesale-checkout-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
}

.wholesale-checkout-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
}

.wholesale-checkout-layout {
  display: grid;
  grid-template-columns: minmax(760px, 2fr) minmax(390px, .9fr);
  gap: 26px;
  align-items: start;
}

.wholesale-checkout-left,
.wholesale-checkout-products {
  display: grid;
  gap: 16px;
}

.wholesale-checkout-product,
.wholesale-side-card {
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 54, 89, .07);
}

.wholesale-checkout-product {
  overflow: hidden;
}

.wholesale-checkout-product-main {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) minmax(210px, auto);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.wholesale-checkout-thumb {
  overflow: hidden;
  display: block;
  border: 1px solid #e3edf5;
  border-radius: 8px;
  background: #f8fafc;
}

.wholesale-checkout-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wholesale-checkout-copy h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.wholesale-checkout-copy p {
  margin: 4px 0;
  color: #475569;
  font-size: 13px;
  font-weight: 750;
}

.wholesale-checkout-pricebox {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  padding-left: 18px;
  border-left: 1px solid #e5edf4;
}

.wholesale-checkout-pricebox span {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.wholesale-checkout-pricebox span b {
  display: block;
  color: #2563eb;
  font-size: 11px;
}

.wholesale-checkout-pricebox strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
  text-align: right;
}

.wholesale-shipping-details {
  border-top: 1px solid #e5edf4;
}

.wholesale-shipping-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.wholesale-shipping-details summary::marker {
  color: #2563eb;
}

.wholesale-shipping-details summary button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #cfe0f7;
  border-radius: 6px;
  color: #2563eb;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.wholesale-shipping-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.wholesale-shipping-line {
  display: grid;
  grid-template-columns: 94px 100px minmax(0, 1fr) minmax(100px, .7fr) minmax(160px, 1fr) 70px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5edf4;
  border-radius: 8px;
  background: #f8fbff;
  color: #334155;
  font-size: 12px;
  font-weight: 750;
}

.wholesale-shipping-line b,
.wholesale-shipping-line strong {
  color: #0f172a;
  font-weight: 950;
}

.wholesale-add-more {
  min-height: 44px;
  border: 1px dashed #b7cdec;
  border-radius: 8px;
  color: #2563eb;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.wholesale-checkout-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.wholesale-side-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.wholesale-side-card h3 {
  margin: 0 0 2px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.wholesale-total-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: #475569;
  font-size: 13px;
  font-weight: 750;
}

.wholesale-total-card b {
  color: #0f172a;
  font-weight: 950;
}

.wholesale-grand-total {
  margin-top: 6px !important;
  padding-top: 14px;
  border-top: 1px solid #e5edf4;
}

.wholesale-grand-total strong {
  color: #2563eb;
  font-size: 22px;
  font-weight: 950;
}

.wholesale-payment-card {
  gap: 10px;
}

.wholesale-payment-option {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid #dce7f1;
  border-radius: 9px;
  color: #0f172a;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.wholesale-payment-option.selected {
  border-color: #2563eb;
  background: #eef6ff;
}

.wholesale-payment-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
}

.wholesale-payment-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.wholesale-payment-option b {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 950;
}

.wholesale-payment-option small {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.wholesale-payment-option em {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: transparent;
  background: #e2e8f0;
  font-style: normal;
  font-size: 12px;
}

.wholesale-payment-option.selected em {
  color: #fff;
  background: #2563eb;
}

.wholesale-payment-detail,
.wholesale-payment-note {
  display: grid;
  gap: 5px;
  margin: 4px 0 0;
  padding: 12px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #334155;
  background: #f8fbff;
  font-size: 12px;
  font-weight: 750;
}

.wholesale-confirm-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.wholesale-confirm-card p b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #16a34a;
  font-size: 11px;
}

.wholesale-confirm-card button {
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #3478ff, #145de8);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .franchise-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .franchise-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .franchise-detail-preview {
    min-height: 420px;
  }

  .franchise-detail-copy {
    padding-right: 0;
  }
}

@media (max-width: 880px) {
  .franchise-detail-actions {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 12px;
  }

  .franchise-detail-cart {
    padding: 0 18px;
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .franchise-product-tabs {
    width: 100%;
    gap: 7px;
    border-radius: 18px;
  }

  .franchise-product-tabs button {
    flex: 1 1 calc(50% - 7px);
  }

  .franchise-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .franchise-detail-preview {
    min-height: 320px;
    padding: 20px;
  }

  .franchise-detail-copy h2 {
    font-size: 38px;
  }

  .franchise-detail-purchase,
  .franchise-detail-actions,
  .franchise-detail-trust {
    grid-template-columns: 1fr;
  }

  .franchise-detail-price {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .franchise-product-grid {
    grid-template-columns: 1fr;
  }
}

.franchise-step-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 0;
  color: #006dff;
  background: transparent;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.franchise-customizer > h2,
.franchise-review > h2 {
  margin: 0 0 18px;
  color: #0f1f2a;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.franchise-customizer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(420px, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.franchise-preview-card,
.franchise-config-card,
.franchise-proof-card,
.franchise-address-card,
.franchise-summary-card {
  border: 1px solid #d9e7ef;
  border-radius: 10px;
  background: #f8fbfd;
}

.franchise-preview-card {
  min-height: 390px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px;
}

.franchise-preview-card img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(16, 42, 58, .16));
}

.franchise-config-card {
  padding: 20px;
  background: #f3f7fa;
}

.franchise-config-card h3 {
  margin: 0 0 14px;
  color: #132c3c;
  font-size: 22px;
  line-height: 1.15;
}

.franchise-config-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.franchise-config-options label {
  display: grid;
  gap: 6px;
  color: #1f3441;
  font-weight: 800;
}

.franchise-config-options select {
  min-height: 42px;
  width: 100%;
  border: 1px solid #c9dce6;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: #203846;
  font-weight: 700;
}

.franchise-quantity {
  display: grid;
  grid-template-columns: 1fr 40px 54px 40px;
  align-items: center;
  gap: 8px;
  margin: 8px 0 20px;
  color: #1f3441;
  font-weight: 900;
}

.franchise-quantity button,
.franchise-quantity output {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #c7d9e2;
  border-radius: 8px;
  background: #fff;
  color: #102635;
  font-weight: 900;
}

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

.franchise-template-grid button {
  min-height: 92px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 9px 20px rgba(20, 45, 60, .08);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.franchise-template-grid button:hover,
.franchise-template-grid button:focus-visible {
  transform: translateY(-2px);
  border-color: #8dcfe3;
  box-shadow: 0 13px 28px rgba(20, 45, 60, .14);
  outline: none;
}

.franchise-template-grid button.active {
  border-color: #08a7d8;
  background: #ecfaff;
  box-shadow: 0 0 0 3px rgba(8, 167, 216, .13), 0 13px 28px rgba(20, 45, 60, .12);
}

.franchise-template-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  padding: 7px;
  object-fit: contain;
  background: #fff;
}

.franchise-review-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.55fr) minmax(250px, .82fr);
  gap: 16px;
  align-items: start;
}

.franchise-proof-card {
  grid-row: span 2;
  padding: 18px;
  background: #fff;
}

.franchise-proof-main {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.franchise-proof-main img,
.franchise-proof-thumb {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f8fb;
}

.franchise-proof-main h3,
.franchise-address-card h3,
.franchise-summary-card h3 {
  margin: 0 0 10px;
  color: #102635;
  font-size: 18px;
  line-height: 1.18;
}

.franchise-proof-main p {
  margin: 0;
  color: #263b48;
  line-height: 1.35;
}

.franchise-proof-divider {
  margin: 22px 0 12px;
  border-top: 3px dashed #c2cbd1;
}

.franchise-proof-thumb {
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

.franchise-address-card,
.franchise-summary-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
}

.franchise-address-card label {
  display: grid;
  gap: 5px;
  color: #263b48;
  font-weight: 800;
}

.franchise-address-card textarea,
.franchise-address-card select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #c8dbe4;
  border-radius: 8px;
  padding: 8px 10px;
  background: #f8fbfd;
}

.franchise-address-card textarea {
  min-height: 70px;
  resize: vertical;
}

.franchise-address-card button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #69bf34;
  font-weight: 900;
  cursor: pointer;
}

.franchise-summary-card p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #263b48;
  font-weight: 800;
}

.franchise-summary-card .grand {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: #69bf34;
}

.franchise-branding-panel .franchise-review {
  max-width: 900px;
  position: relative;
  overflow: visible;
  padding: 28px 28px 24px;
  border: 1px solid #e1ebf2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 54, 89, .08);
}

.franchise-branding-panel .franchise-review.payment-menu-open {
  padding-bottom: 308px;
}

.franchise-review-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.franchise-review-close img {
  width: 16px;
  height: 16px;
}

.franchise-branding-panel .franchise-saved-page {
  max-width: 900px;
  padding: 34px 38px;
  border: 1px solid #e1ebf2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 54, 89, .08);
}

.franchise-saved-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.franchise-saved-head h2 {
  margin: 0;
  color: #06122d;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 950;
  line-height: 1.08;
}

.franchise-saved-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.franchise-saved-actions > strong {
  color: #06122d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.franchise-saved-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #ffd2d2;
  border-radius: 9px;
  color: #c02626;
  background: #fff5f5;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.franchise-saved-actions button:hover,
.franchise-saved-actions button:focus-visible {
  transform: translateY(-1px);
  border-color: #ff9b9b;
  background: #ffe8e8;
  outline: 3px solid rgba(220, 38, 38, .12);
  outline-offset: 2px;
}

.franchise-saved-actions .franchise-saved-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #006dff 0%, #049bf2 100%);
  box-shadow: 0 12px 24px rgba(0, 109, 255, .22);
}

.franchise-saved-actions .franchise-saved-cart .franchise-icon {
  width: 19px;
  height: 19px;
  color: #fff;
}

.franchise-saved-actions .franchise-saved-cart:hover,
.franchise-saved-actions .franchise-saved-cart:focus-visible {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #005bd6 0%, #058bd9 100%);
  box-shadow: 0 16px 30px rgba(0, 109, 255, .28);
  outline: 3px solid rgba(0, 109, 255, .14);
}

.franchise-review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.franchise-review-tabs button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #d7e4ec;
  border-radius: 999px;
  color: #425466;
  background: #f5f8fb;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.franchise-review-tabs button.active,
.franchise-review-tabs button:hover,
.franchise-review-tabs button:focus-visible {
  color: #006dff;
  border-color: #9ac8ff;
  background: #edf5ff;
  transform: translateY(-1px);
  outline: 3px solid rgba(0, 109, 255, .12);
  outline-offset: 2px;
}

.franchise-review-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #e8eef3;
  border-bottom: 1px solid #e8eef3;
  margin-top: 8px;
}

.franchise-review-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(120px, auto);
  gap: 26px;
  align-items: center;
  padding: 26px 0;
}

.franchise-review-item + .franchise-review-item {
  border-top: 1px solid #edf2f6;
}

.franchise-review-thumb {
  width: 110px;
  height: 92px;
  display: block;
  border: 1px solid #e0e8ef;
  border-radius: 10px;
  background: #f4f8fb;
  overflow: hidden;
}

.franchise-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.franchise-review-copy h3 {
  margin: 0 0 6px;
  color: #06122d;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.franchise-review-copy p {
  margin: 0;
  color: #26384a;
  font-size: 13px;
  line-height: 1.35;
}

.franchise-review-copy p img {
  width: 15px;
  height: 15px;
  margin-left: 8px;
  vertical-align: -2px;
}

.franchise-review-item > strong {
  color: #06122d;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.franchise-card-price {
  display: grid;
  justify-items: start;
  gap: 9px;
  min-width: 190px;
  font-weight: 900;
  text-align: left;
}

.franchise-card-price div {
  display: grid;
  justify-items: start;
  gap: 5px;
  width: 100%;
}

.franchise-card-price span {
  color: #7b8796;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.franchise-card-price em {
  color: #8b97a6;
  font-size: 20px;
  font-weight: 850;
  font-style: normal;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #7e8a99;
}

.franchise-card-price div + div {
  padding-top: 10px;
  border-top: 1px solid #dbe6ef;
}

.franchise-card-price div + div span {
  color: #0074f0;
}

.franchise-card-price strong {
  color: #06122d;
  font-size: 32px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: 0;
}

.franchise-review-footer {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 0;
  padding: 18px 0 0;
  border-bottom: 0;
  overflow: visible;
}

.franchise-review-footer p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: #06122d;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.franchise-review-total {
  min-height: 54px;
  padding: 13px 18px;
  border: 1px solid #dce8f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 54, 89, .07);
}

.franchise-review-total span {
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.franchise-review-footer strong {
  color: #06122d;
  font-size: 26px;
  font-weight: 950;
}

.franchise-checkout-side {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(260px, 1fr);
  gap: 16px;
  align-items: end;
  min-width: 0;
  overflow: visible;
}

.franchise-review-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 0;
  padding-top: 0;
  overflow: visible;
}

.franchise-payment-picker {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow: visible;
  z-index: 20;
}

.franchise-payment-picker.is-open {
  z-index: 200;
}

.franchise-payment-picker > strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #06122d;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.franchise-payment-picker > strong img {
  width: 19px;
  height: 19px;
}

.franchise-payment-select {
  min-height: 54px;
  width: 100%;
  border: 1px solid #cfe0ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, #006dff 0%, #049bf2 100%);
  box-shadow: 0 12px 24px rgba(0, 109, 255, .24);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.franchise-payment-select:hover,
.franchise-payment-select:focus-visible,
.franchise-payment-select[aria-expanded="true"] {
  border-color: #9ac8ff;
  background: linear-gradient(135deg, #005bd6 0%, #058bd9 100%);
  box-shadow: 0 16px 30px rgba(0, 109, 255, .3);
  outline: 3px solid rgba(0, 109, 255, .14);
  outline-offset: 2px;
}

.franchise-payment-menu[hidden] {
  display: none;
}

.franchise-payment-select img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  transition: transform .18s ease;
}

.franchise-payment-select[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.franchise-payment-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 220;
  display: grid;
  gap: 0;
  width: 100%;
  padding: 8px;
  border: 1px solid #dbe8f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 54, 89, .16);
}

.franchise-payment-menu button {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  color: #06122d;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

.franchise-payment-menu button + button {
  border-top: 1px solid #edf2f7;
}

.franchise-payment-menu button > img {
  width: 28px;
  height: 28px;
}

.franchise-payment-menu button span {
  display: grid;
  gap: 4px;
}

.franchise-payment-menu button b {
  color: #06122d;
  font-size: 14px;
  line-height: 1.15;
}

.franchise-payment-menu button small {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.franchise-payment-menu button::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  justify-self: end;
}

.franchise-payment-menu button.selected::after {
  content: "\2713";
  display: grid;
  place-items: center;
  color: #fff;
  background: #006dff;
  font-size: 13px;
  font-weight: 950;
}

.franchise-payment-menu button:hover,
.franchise-payment-menu button:focus-visible {
  color: #006dff;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #c5ddff;
  outline: 2px solid rgba(0, 109, 255, .14);
  outline-offset: 2px;
  transform: none;
}

.franchise-payment-menu button.selected {
  color: #006dff;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #8bbfff;
  transform: none;
}

.franchise-review-more {
  min-height: 54px;
  border: 1px solid #d7e4ec;
  border-radius: 12px;
  padding: 0 16px;
  color: #006dff;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 54, 89, .07);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.franchise-review-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.franchise-review-more img {
  width: 16px;
  height: 16px;
}

.franchise-review-more:hover,
.franchise-review-more:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 109, 255, .28);
  background: linear-gradient(135deg, #005bd6 0%, #058bd9 100%);
  outline: 2px solid rgba(0, 152, 223, .22);
  outline-offset: 2px;
}

.franchise-review-more:hover,
.franchise-review-more:focus-visible {
  color: #006dff;
  border-color: #9ac8ff;
  background: #edf5ff;
  box-shadow: none;
}

.franchise-review-empty {
  margin: 0;
  padding: 18px 0;
  color: #64748b;
  font-weight: 800;
}

.franchise-payment-step {
  max-width: 1120px;
  width: 100%;
  padding: 18px clamp(18px, 3vw, 34px) 34px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
}

.franchise-payment-step .franchise-detail-back {
  min-width: 256px;
  min-height: 50px;
  justify-content: center;
  gap: 18px;
  margin: 0 0 34px;
  padding: 0 22px;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  color: #06122d;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 54, 89, .1);
  font-size: 15px;
  font-weight: 900;
}

.franchise-payment-step .franchise-detail-back .franchise-icon {
  width: 28px;
  height: 28px;
  color: #000;
  stroke-width: 3;
}

.franchise-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  gap: clamp(28px, 5vw, 50px);
  align-items: start;
}

.franchise-payment-card {
  min-width: 0;
  max-width: 656px;
}

.franchise-payment-card h2,
.franchise-payment-summary h3 {
  margin: 8px 0 10px;
  color: #06122d;
  font-size: 48px;
  font-weight: 950;
  line-height: .95;
}

.franchise-payment-step .franchise-payment-card h2 {
  font-size: 48px !important;
}

.franchise-payment-card h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #006dff 0%, #049bf2 100%);
}

.franchise-payment-secure {
  margin: 0 0 14px;
  color: #475569;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.franchise-pay-panel {
  border: 1px solid #dbe7f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 54, 89, .08);
  box-sizing: border-box;
}

.franchise-card-form {
  display: grid;
  gap: 22px;
  padding: 24px 24px 28px;
  width: 100%;
  box-sizing: border-box;
}

.franchise-card-form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.franchise-card-form .franchise-card-number-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.franchise-card-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #06122d;
  font-size: 15px;
  font-weight: 850;
}

.franchise-card-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdbe6;
  border-radius: 8px;
  padding: 0 15px;
  box-sizing: border-box;
  color: #06122d;
  background: #fff;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.franchise-card-form input:focus {
  border-color: #9ac8ff;
  box-shadow: 0 0 0 3px rgba(0, 109, 255, .12);
}

.franchise-card-form .franchise-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 0;
  border-top: 1px solid #e5eef5;
  color: #06122d;
  background: transparent;
  font-size: 15px;
  font-weight: 850;
}

.franchise-card-form .franchise-check input {
  width: 18px;
  flex: 0 0 18px;
  height: 18px;
  min-height: auto;
  accent-color: #049bf2;
}

.franchise-card-form .franchise-save-card {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 20px;
  padding-top: 2px;
  color: #475569;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.franchise-card-form .franchise-save-card input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex: 0 0 16px;
  accent-color: #049bf2;
}

@media (max-width: 560px) {
  .franchise-card-form .franchise-card-number-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .franchise-card-form .franchise-save-card {
    justify-content: flex-start;
  }
}

.franchise-pay-instructions {
  padding: 18px;
  color: #3151d4;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
}

.franchise-pay-instructions h3 {
  margin: 0 0 10px;
  color: #06122d;
  font-size: 18px;
  font-weight: 950;
}

.franchise-payment-summary {
  display: grid;
  gap: 22px;
  padding-top: 86px;
  min-width: 0;
}

.franchise-mini-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #0ea5e9;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.franchise-payment-summary p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  color: #06122d;
  font-size: 16px;
  font-weight: 800;
}

.franchise-payment-total-card {
  display: grid;
  gap: 20px;
  padding: 24px 18px 14px;
  border: 1px solid #dbe7f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 54, 89, .1);
}

.franchise-payment-summary p span {
  font-weight: 850;
}

.franchise-payment-summary p:nth-child(2) span {
  color: #e11d48;
}

.franchise-payment-summary .franchise-order-total {
  margin: 2px -6px 0;
  padding: 18px 6px 0;
  border-top: 1px solid #dfe8ef;
  color: #06122d;
  font-size: 18px;
  font-weight: 950;
}

.franchise-payment-summary .franchise-order-total span {
  color: #005ce6;
  font-size: 21px;
  font-weight: 950;
}

.franchise-payment-summary button {
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #006dff 0%, #049bf2 100%);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 109, 255, .26);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.franchise-payment-summary button:hover,
.franchise-payment-summary button:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #005bd6 0%, #058bd9 100%);
  box-shadow: 0 20px 34px rgba(0, 109, 255, .32);
  outline: 3px solid rgba(0, 109, 255, .16);
  outline-offset: 2px;
}

.franchise-payment-summary button span {
  margin-left: 12px;
  font-size: 26px;
  line-height: 0;
}

.franchise-payment-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.franchise-payment-lock::before {
  content: "";
  width: 10px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 2px;
  color: #64748b;
  box-sizing: border-box;
  box-shadow: 0 -5px 0 -2px currentColor;
}

@media (max-width: 1120px) {
  .franchise-customizer-grid,
  .franchise-review-grid {
    grid-template-columns: 1fr;
  }

  .franchise-proof-card {
    grid-row: auto;
  }

  .franchise-payment-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
  }
}

@media (max-width: 980px) {
  .franchise-payment-grid {
    grid-template-columns: 1fr;
  }

  .franchise-payment-summary {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .franchise-branding-intro,
  .franchise-proof-main {
    grid-template-columns: 1fr;
    display: grid;
  }

  .franchise-branding-intro {
    align-items: start;
  }

  .franchise-config-options,
  .franchise-template-grid {
    grid-template-columns: 1fr;
  }

  .franchise-quantity {
    grid-template-columns: 1fr 38px 48px 38px;
  }

  .franchise-branding-panel .franchise-review {
    padding: 24px 18px;
  }

  .franchise-branding-panel .franchise-saved-page {
    padding: 24px 18px;
  }

  .franchise-saved-head {
    align-items: stretch;
    flex-direction: column;
  }

  .franchise-review-item {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .franchise-review-thumb {
    width: 64px;
    height: 64px;
  }

  .franchise-review-copy h3 {
    font-size: 22px;
  }

  .franchise-review-item > strong {
    font-size: 21px;
  }

  .franchise-review-footer {
    grid-template-columns: 1fr;
  }

  .franchise-review-footer p {
    justify-content: flex-start;
  }

  .franchise-checkout-side {
    grid-template-columns: 1fr;
  }

  .franchise-review-total {
    justify-content: space-between;
  }

  .franchise-review-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .franchise-payment-picker {
    z-index: 30;
  }

  .franchise-payment-step {
    padding: 22px 18px;
  }

  .franchise-payment-grid,
  .franchise-card-form div {
    grid-template-columns: 1fr;
  }

  .franchise-mini-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modern artwork upload panel */
.artwork-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.artwork-upload-card,
.cloud-upload {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px !important;
  border: 1px solid #dfeaf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 63, 112, .08);
}

.account-card-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: #057da5;
  background: #eef9fd;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.artwork-content h2 {
  margin: 0 0 12px !important;
  color: #103f70 !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  text-align: left !important;
}

.artwork-upload-card > p,
.cloud-upload > p,
.artwork-file-note {
  margin: 0 0 18px !important;
  color: #61727e !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.6 !important;
  text-align: left !important;
}

.drop-zone {
  width: 100% !important;
  min-height: 210px !important;
  display: grid !important;
  place-items: center !important;
  gap: 10px !important;
  padding: 28px !important;
  border: 2px dashed #b9d7e4 !important;
  border-radius: 8px !important;
  color: #103f70 !important;
  background: linear-gradient(180deg, #f8fcfe, #fff) !important;
  box-shadow: none !important;
}

.drop-zone span {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  border-radius: 50% !important;
  background: #047fbf !important;
}

.drop-zone span::before {
  content: "";
  width: 16px !important;
  height: 16px !important;
  border-top: 4px solid #fff !important;
  border-left: 4px solid #fff !important;
  position: absolute !important;
  top: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

.drop-zone span::after {
  content: "";
  width: 4px !important;
  height: 23px !important;
  border-radius: 999px !important;
  background: #fff !important;
  position: absolute !important;
  top: 17px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.drop-zone b {
  color: #103f70;
  font-size: 15px;
  font-weight: 600;
}

.drop-zone small {
  max-width: 360px;
  color: #6b7d89;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.artwork-file-note {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}

.cloud-upload {
  background:
    linear-gradient(180deg, rgba(2, 148, 221, .08), rgba(255,255,255,0) 44%),
    #fff;
}

.cloud-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.cloud-actions button,
.cloud-upload > button {
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  border: 1px solid #d3e5ee !important;
  border-radius: 7px !important;
  color: #103f70 !important;
  background: #fff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.cloud-actions button:hover,
.cloud-actions button:focus-visible,
.drop-zone:hover,
.drop-zone:focus-visible {
  border-color: #047fbf !important;
  outline: 3px solid rgba(8, 167, 216, .16) !important;
  outline-offset: 2px;
}

.cloud-actions button:hover,
.cloud-actions button:focus-visible {
  color: #fff !important;
  background: #047fbf !important;
}

@media (max-width: 900px) {
  .artwork-content {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .artwork-upload-card,
  .cloud-upload {
    padding: 20px !important;
  }

  .drop-zone {
    min-height: 180px !important;
    padding: 20px !important;
  }
}

/* Account sidebar arrow fix */
.account-layout {
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.account-sidebar {
  position: sticky !important;
  top: 18px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  padding: 12px !important;
  overflow: visible !important;
}

.account-sidebar button {
  min-height: 44px !important;
  width: 100% !important;
  justify-content: flex-start !important;
  padding: 10px 14px !important;
  border-left: 4px solid transparent !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.account-sidebar button::before {
  display: none !important;
  content: none !important;
}

.account-sidebar button.active {
  border-left-color: #fff !important;
  padding-left: 14px !important;
}

.account-sidebar .account-subtab {
  min-height: 34px !important;
  margin-top: -2px !important;
  padding: 7px 14px 7px 28px !important;
  border-left-color: transparent !important;
  color: #263b48 !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.account-sidebar .account-subtab:hover,
.account-sidebar .account-subtab:focus-visible,
.account-sidebar .account-subtab.active {
  color: #047fbf !important;
  background: #eef9fd !important;
}

.order-list {
  margin-left: 324px !important;
}

@media (max-width: 1120px) {
  .account-layout {
    grid-template-columns: 1fr !important;
  }

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

  .order-list {
    margin-left: 0 !important;
  }
}

@media (max-width: 680px) {
  .account-sidebar {
    grid-template-columns: 1fr !important;
  }
}

/* Payment field containment - final override */
.franchise-payment-step {
  padding-left: clamp(20px, 3vw, 34px) !important;
  padding-right: clamp(20px, 3vw, 34px) !important;
}

.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 288px) !important;
  gap: clamp(24px, 4vw, 40px) !important;
}

.franchise-payment-step .franchise-payment-card,
.franchise-payment-step .franchise-pay-panel,
.franchise-payment-step .franchise-card-form,
.franchise-payment-step .franchise-card-form label,
.franchise-payment-step .franchise-card-form input {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.franchise-payment-step .franchise-card-form input:not([type="checkbox"]) {
  display: block !important;
  width: 100% !important;
}

.franchise-payment-step .franchise-card-form {
  width: 100% !important;
  overflow: hidden !important;
}

.franchise-payment-step .franchise-card-form div {
  min-width: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
  .franchise-payment-step .franchise-payment-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pay Later title must win over shared payment fallback */
.franchise-payment-step .franchise-payment-card h2 {
  font-size: clamp(32px, 3.2vw, 38px) !important;
  line-height: 1 !important;
}

/* Zelle / Venmo exact reference layout */
.franchise-payment-step .franchise-zelle-panel {
  display: grid !important;
  gap: 18px !important;
  padding: 18px 22px 24px !important;
  border: 1px solid #dfe9f2 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(15, 54, 89, .08) !important;
}

.franchise-zelle-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #d7e3ec;
}

.franchise-zelle-head > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d1c4ff;
  border-radius: 9px;
  background: #f1ecff;
}

.franchise-zelle-head img {
  width: 28px;
  height: 28px;
}

.franchise-zelle-head h3 {
  margin: 0 0 7px;
  color: #06122d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.franchise-zelle-head p {
  margin: 0;
  color: #526579;
  font-size: 13px;
  font-weight: 800;
}

.franchise-zelle-list {
  display: grid;
  gap: 12px;
}

.franchise-zelle-list p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.franchise-zelle-list span,
.franchise-zelle-note span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe4ff;
  border-radius: 8px;
  color: #006dff;
  background: #eef6ff;
  font-size: 18px;
  font-weight: 950;
}

.franchise-zelle-list b {
  color: #006dff;
  font-size: 18px;
  font-weight: 950;
}

.franchise-zelle-note {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2px 0 0;
  padding: 0 13px;
  border: 1px solid #cfe4ff;
  border-radius: 7px;
  color: #526579;
  background: #f7fbff;
  font-size: 13px;
  font-weight: 800;
}

.franchise-zelle-note span {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-radius: 50%;
  font-size: 15px;
}

.franchise-payment-step .franchise-payment-summary p:first-of-type span {
  color: #e11d48 !important;
  font-weight: 950 !important;
}

.franchise-payment-step .franchise-payment-summary button b {
  color: #fff !important;
}

/* Bill-to-company reference layout */
.franchise-payment-step .franchise-payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 346px) !important;
  gap: clamp(34px, 5vw, 52px) !important;
}

.franchise-payment-step .franchise-payment-card h2 {
  margin-bottom: 11px !important;
  color: #06122d !important;
  font-size: 32px !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.franchise-payment-step .franchise-payment-secure {
  margin-bottom: 16px !important;
  color: #53677d !important;
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-secure span {
  width: 18px;
  display: inline-grid;
  place-items: center;
  color: #006dff !important;
  font-size: 15px !important;
}

.franchise-payment-step .franchise-secure-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #006dff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.franchise-payment-step .franchise-bill-card {
  min-height: 248px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  border: 1px solid #e3ebf3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 54, 89, .08);
}

.franchise-payment-step .franchise-bill-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid #d3e7ff;
  border-radius: 9px;
  background: #eef6ff;
}

.franchise-payment-step .franchise-bill-icon img {
  width: 31px;
  height: 31px;
}

.franchise-payment-step .franchise-bill-copy h3 {
  margin: 4px 0 14px;
  color: #06122d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.franchise-payment-step .franchise-bill-copy p {
  display: block !important;
  margin: 0 0 8px !important;
  color: #005cff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.franchise-payment-step .franchise-payment-summary {
  gap: 20px !important;
  padding-top: 64px !important;
}

.franchise-payment-step .franchise-payment-total-card {
  gap: 22px !important;
  padding: 24px 18px 16px !important;
  border: 1px solid #dfe8ef !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 30px rgba(15, 54, 89, .08) !important;
}

.franchise-payment-step .franchise-order-summary-head {
  gap: 18px !important;
  padding-bottom: 20px !important;
}

.franchise-payment-step .franchise-order-summary-head > span {
  width: 52px !important;
  height: 52px !important;
}

.franchise-payment-step .franchise-order-summary-head strong {
  font-size: 20px !important;
}

.franchise-payment-step .franchise-order-summary-head small {
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-summary p {
  font-size: 15px !important;
}

.franchise-payment-step .franchise-payment-summary [data-payment-subtotal] {
  color: #06122d !important;
  font-weight: 900 !important;
}

.franchise-payment-step .franchise-payment-summary [data-payment-fee] {
  color: #ff0000 !important;
  font-weight: 900 !important;
}

.franchise-payment-step .franchise-payment-summary p span[data-payment-subtotal] {
  color: #06122d !important;
  font-weight: 900 !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total {
  margin: 4px 0 0 !important;
  padding: 16px 14px !important;
  border: 1px solid #dfe8ef !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
}

.franchise-payment-step .franchise-payment-summary .franchise-order-total span {
  color: #005cff !important;
  font-size: 24px !important;
}

.franchise-payment-step .franchise-payment-summary button {
  min-height: 62px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 17px !important;
}

.franchise-payment-step .franchise-button-icon {
  width: 21px;
  height: 21px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.franchise-payment-step .franchise-payment-summary button span {
  margin-left: 16px;
}

@media (max-width: 980px) {
  .franchise-payment-step .franchise-payment-grid {
    grid-template-columns: 1fr !important;
  }

  .franchise-payment-step .franchise-payment-summary {
    padding-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .franchise-payment-step .franchise-bill-card {
    min-height: 0;
    padding: 20px 16px;
  }

  .franchise-payment-step .franchise-bill-copy h3 {
    font-size: 21px;
  }

  .franchise-payment-step .franchise-bill-copy p {
    font-size: 15px !important;
  }
}

.main-nav .products-dropdown > .products-link,
body .main-nav .products-dropdown > .products-link,
.main-nav .services-dropdown > .services-link,
body .main-nav .services-dropdown > .services-link {
  color: #000 !important;
  text-transform: none !important;
}

/* Register page sign-in details refresh */
.register-page .register-side-fields {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  padding: 30px;
  border-color: #dbe9f1;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.register-page .register-side-fields h3 {
  margin: 0 0 6px;
  color: #08243a;
  font-size: 22px !important;
  line-height: 1.2;
}

.register-page .register-side-fields label {
  color: #263b4a;
  font-size: 12px;
  font-weight: 800 !important;
}

.register-page .register-side-fields input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #cddde8;
  border-radius: 6px;
  color: #102635;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.register-page .register-side-fields input:focus {
  border-color: #0294dd;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 148, 221, .12);
  outline: none;
}

.register-page .register-side-fields input::placeholder {
  color: #8a9aaa;
}

.register-page .register-side-fields .password-strength {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -2px 0 0 !important;
  padding: 0 11px;
  border-radius: 999px;
  color: #526979 !important;
  background: #eef7fb;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.register-page .register-side-fields .captcha-box {
  width: 186px;
  min-width: 0;
  min-height: 54px;
  grid-template-columns: 22px minmax(0, 1fr) 54px;
  gap: 9px;
  align-self: end;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid #c9dce8;
  border-radius: 6px;
  background: #fff;
  color: #213545;
  box-shadow: 0 10px 22px rgba(15, 54, 89, .1);
}

.register-page .register-side-fields .captcha-box span {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.register-page .register-side-fields .captcha-box p {
  color: #1f3444;
  font-size: 12px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.register-page .register-side-fields .captcha-box b {
  color: #7e8d98;
  font-size: 7px;
  letter-spacing: .02em;
}

.register-page .register-side-fields .captcha-box small {
  font-size: 6px;
}

.register-page .register-side-fields > button[type="submit"] {
  min-width: 172px;
  min-height: 54px;
  justify-self: end;
  align-self: end;
  padding: 0 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #047fbf 0%, #0294dd 100%);
  box-shadow: 0 12px 24px rgba(2, 148, 221, .22);
  font-size: 13px !important;
  font-weight: 900 !important;
}

.register-page .register-side-fields > button[type="submit"]:hover,
.register-page .register-side-fields > button[type="submit"]:focus-visible {
  background: linear-gradient(135deg, #006fa9 0%, #0589cc 100%);
  box-shadow: 0 14px 28px rgba(2, 148, 221, .28);
}

.register-page .trusted-checkout {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.register-page .trusted-checkout img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .register-page .register-side-fields {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 22px 16px !important;
  }

  .register-page .register-side-fields .captcha-box,
  .register-page .register-side-fields > button[type="submit"] {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .register-page .trusted-checkout {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .register-page {
    padding-bottom: 48px !important;
  }

  .register-page .register-section {
    width: min(100% - 24px, 1120px) !important;
  }

  .register-page .register-heading {
    margin-bottom: 18px !important;
    text-align: left !important;
  }

  .register-page .register-heading h2 {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }

  .register-page .register-heading p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .register-page .register-panel {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 0 !important;
    border-radius: 8px !important;
  }

  .register-page .login-column {
    padding: 20px 16px !important;
  }

  .register-page .register-side-fields h3,
  .register-page .login-column h3 {
    font-size: 20px !important;
  }

  .register-page .register-side-fields input {
    min-height: 44px !important;
    padding: 0 13px !important;
  }

  .register-page .register-side-fields .password-strength {
    width: 100% !important;
    min-height: 30px !important;
    justify-content: center !important;
    margin: -4px 0 0 !important;
    font-size: 11px !important;
  }

  .register-page .register-side-fields .captcha-box {
    grid-template-columns: 20px minmax(0, 1fr) 52px !important;
    min-height: 52px !important;
    padding: 9px 10px !important;
  }

  .register-page .register-side-fields .captcha-box p {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 11px !important;
  }

  .register-page .register-side-fields > button[type="submit"] {
    min-height: 52px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
  }

  .register-page .trusted-checkout {
    min-height: 28px !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 620px) {
  .about-page .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: min(100% - 12px, 1120px) !important;
    margin-top: -28px !important;
  }

  .about-page .about-stats article {
    min-height: 92px !important;
    gap: 6px !important;
    padding: 14px 7px !important;
    text-align: center !important;
  }

  .about-page .about-stats strong {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .about-page .about-stats span {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 680px) {
  body .industry-page .industry-products .industry-product-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body .industry-page .industry-products .industry-product-list a {
    width: auto !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 760px) {
  body .full-color-modern .service-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding-bottom: 44px !important;
  }

  body .full-color-modern .service-products-head {
    grid-column: 1 / -1 !important;
    padding: 18px !important;
  }

  body .full-color-modern .service-products-head h2 {
    font-size: 24px !important;
  }

  body .full-color-modern .service-product-card {
    min-width: 0 !important;
    border-radius: 8px !important;
  }

  body .full-color-modern .service-product-card img {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    padding: 10px !important;
  }

  body .full-color-modern .service-product-card h3 {
    min-height: 42px !important;
    margin: 12px 10px 6px !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  body .full-color-modern .service-product-card p {
    padding: 0 10px 14px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 620px) {
  body.product-detail-page .viewed-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.product-detail-page .viewed-grid article {
    min-width: 0 !important;
    border-radius: 8px !important;
  }

  body.product-detail-page .viewed-grid img {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
  }

  body.product-detail-page .viewed-grid b {
    padding: 10px 10px 5px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  body.product-detail-page .viewed-grid span {
    padding: 0 10px 12px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body.product-detail-page .info-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.product-detail-page .info-tabs a {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 760px) {
  body.business-card-service-page .service-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 34px 0 60px !important;
  }

  body.business-card-service-page .service-product-card {
    min-width: 0 !important;
    border-radius: 8px !important;
  }

  body.business-card-service-page .service-product-card img {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
  }

  body.business-card-service-page .service-product-card h2 {
    min-height: 34px !important;
    margin: 12px 10px 6px !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  body.business-card-service-page .service-product-card p {
    display: block !important;
    padding: 0 10px 14px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body.business-card-service-page .service-product-card b {
    display: block !important;
    margin-top: 3px !important;
    font-size: 15px !important;
    white-space: normal !important;
  }
}

@media (max-width: 620px) {
  .login-page .login-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .login-page .login-hero-proof span {
    min-width: 0 !important;
    min-height: 40px !important;
    gap: 5px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .login-page .login-hero-proof span::before {
    width: 13px !important;
    height: 13px !important;
    flex-basis: 13px !important;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.86) !important;
  }

  .login-page .social-login-options {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 2px 0 18px !important;
  }

  .login-page .social-login-button {
    min-width: 0 !important;
    min-height: 42px !important;
    gap: 5px !important;
    padding: 0 7px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .login-page .social-login-button span {
    width: 18px !important;
    height: 18px !important;
    flex-basis: 18px !important;
  }

  .login-page .social-login-button svg {
    width: 18px !important;
    height: 18px !important;
  }

  .login-page .trusted-checkout {
    margin: 0 0 8px !important;
    gap: 7px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .login-page .trusted-checkout img {
    width: 15px !important;
    height: 15px !important;
  }
}

/* My Account mobile polish */
@media (max-width: 760px) {
  body .account-page {
    width: min(100% - 22px, 1220px) !important;
    padding: 22px 0 46px !important;
  }

  body .account-success {
    min-height: 62px !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 14px !important;
    padding: 14px 16px !important;
    border: 1px solid #bfe2f4 !important;
    border-left: 5px solid #0789c5 !important;
    border-radius: 8px !important;
    color: #063958 !important;
    background: #f2fbff !important;
    box-shadow: 0 10px 24px rgba(15, 54, 89, .08) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
  }

  body .account-success span {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }

  body .account-success span::after {
    left: 7px !important;
    top: 5px !important;
    width: 7px !important;
    height: 11px !important;
  }

  body .account-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  body .account-sidebar {
    position: relative !important;
    top: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 0 10px !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .account-sidebar button {
    width: auto !important;
    min-width: 0 !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border: 1px solid #d5e5ef !important;
    border-left: 1px solid #d5e5ef !important;
    border-radius: 8px !important;
    color: #123246 !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 54, 89, .07) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body .account-sidebar button.active {
    border-color: #0789c5 !important;
    color: #fff !important;
    background: #0789c5 !important;
    box-shadow: 0 12px 22px rgba(2, 148, 221, .22) !important;
  }

  body .history-panel {
    overflow: hidden !important;
    border: 1px solid #dce8f1 !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(15, 54, 89, .08) !important;
  }

  body .history-panel h1 {
    padding: 18px 16px 14px !important;
    border-bottom: 1px solid #e5edf4 !important;
    color: #082c44 !important;
    background: #fff !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  body .history-content,
  body .detail-content,
  body .artwork-content,
  body .password-content,
  body .proof-content,
  body .tracking-content,
  body .studio-content,
  body .quotes-content {
    padding: 18px 16px 22px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  body .date-search {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body .date-search button,
  body .password-content button,
  body .account-detail-grid article button {
    width: 100% !important;
    min-height: 46px !important;
    border-radius: 8px !important;
  }

  body .project-launch-board {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    overflow: hidden !important;
    margin-bottom: 18px !important;
    padding-bottom: 0 !important;
    border: 1px solid #d5e1e8 !important;
    border-radius: 8px !important;
  }

  body .project-launch-card {
    min-height: 96px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    overflow: hidden !important;
    padding: 18px 28px !important;
    border: 0 !important;
    border-bottom: 1px solid #d5e1e8 !important;
    border-radius: 0 !important;
  }

  body .project-launch-card strong {
    margin-bottom: 7px !important;
    font-size: 21px !important;
    line-height: 1.15 !important;
  }

  body .project-launch-card small {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  body .project-launch-card:last-child {
    border-bottom: 0 !important;
  }

  body .launch-icon {
    width: 58px !important;
    height: 58px !important;
    flex-basis: 58px !important;
    justify-self: end !important;
  }

  body .launch-icon-plus::before,
  body .launch-icon-plus::after {
    width: 36px !important;
    height: 4px !important;
  }

  body .launch-icon-plus::after {
    width: 4px !important;
    height: 36px !important;
  }

  body .launch-icon-list,
  body .launch-icon-guide {
    border-width: 3px !important;
    border-radius: 7px !important;
  }

  body .launch-icon-list::before,
  body .launch-icon-guide::before {
    left: 13px !important;
    top: 13px !important;
    width: 30px !important;
    height: 30px !important;
    background:
      linear-gradient(#43bffc 0 0) 0 3px / 9px 3px no-repeat,
      linear-gradient(#43bffc 0 0) 0 15px / 9px 3px no-repeat,
      linear-gradient(#43bffc 0 0) 0 27px / 9px 3px no-repeat,
      linear-gradient(#43bffc 0 0) 14px 2px / 20px 4px no-repeat,
      linear-gradient(#43bffc 0 0) 14px 14px / 20px 4px no-repeat,
      linear-gradient(#43bffc 0 0) 14px 26px / 20px 4px no-repeat !important;
  }

  body .launch-icon-guide::after {
    right: -5px !important;
    top: 12px !important;
    width: 6px !important;
    height: 38px !important;
    border-radius: 4px !important;
  }

  body .account-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body .tracking-content .account-table-wrap {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  body .tracking-table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
  }

  body .tracking-table thead {
    display: none !important;
  }

  body .tracking-table tbody,
  body .tracking-table tr {
    display: grid !important;
    width: 100% !important;
  }

  body .tracking-table tr {
    overflow: hidden !important;
    border: 1px solid #dfeaf2 !important;
    border-radius: 8px !important;
    background: #fff !important;
  }

  body .tracking-table td {
    display: grid !important;
    grid-template-columns: minmax(92px, 36%) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid #e6eef5 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
  }

  body .tracking-table td::before {
    color: #486174 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  body .tracking-table td:nth-child(1)::before {
    content: "#";
  }

  body .tracking-table td:nth-child(2)::before {
    content: "Order #";
  }

  body .tracking-table td:nth-child(3)::before {
    content: "Tracking Number";
  }

  body .tracking-table td:last-child {
    border-bottom: 0 !important;
  }

  body .tracking-table a {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  body .order-table-card {
    padding: 18px !important;
  }

  body .order-table-card .account-table-wrap {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  body .order-history-table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    table-layout: auto !important;
  }

  body .order-history-table thead {
    display: none !important;
  }

  body .order-history-table tbody {
    display: grid !important;
    gap: 0 !important;
    width: 100% !important;
  }

  body .order-history-table tr {
    display: grid !important;
    width: 100% !important;
  }

  body .order-history-table tbody tr:not(.order-status-row) {
    grid-template-columns: minmax(0, 1fr) !important;
    overflow: hidden !important;
    border: 1px solid #dfeaf2 !important;
    border-radius: 8px 8px 0 0 !important;
    background: #fff !important;
  }

  body .order-history-table th,
  body .order-history-table td {
    display: grid !important;
    grid-template-columns: minmax(96px, 38%) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid #e6eef5 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body .order-history-table tbody tr:not(.order-status-row) td::before {
    color: #486174 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
  }

  body .order-history-table tbody tr:not(.order-status-row) td:nth-child(1)::before {
    content: "Order #";
  }

  body .order-history-table tbody tr:not(.order-status-row) td:nth-child(2)::before {
    content: "View";
  }

  body .order-history-table tbody tr:not(.order-status-row) td:nth-child(3)::before {
    content: "Print Invoice";
  }

  body .order-history-table tbody tr:not(.order-status-row) td:nth-child(4)::before {
    content: "Order Total";
  }

  body .order-history-table tbody tr:not(.order-status-row) td:nth-child(5)::before {
    content: "Date & Time";
  }

  body .order-history-table tbody tr:not(.order-status-row) td:last-child {
    border-bottom: 0 !important;
  }

  body .order-status-row td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 12px !important;
    border: 1px solid #dfeaf2 !important;
    border-top: 0 !important;
    border-radius: 0 0 8px 8px !important;
    white-space: normal !important;
  }

  body .order-table-card > button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    margin-top: 20px !important;
  }

  body .franchise-product-detail {
    padding: 16px !important;
  }

  body .franchise-detail-layout {
    gap: 18px !important;
  }

  body .franchise-detail-gallery,
  body .franchise-detail-copy {
    min-width: 0 !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  body .franchise-detail-copy h2,
  body .franchise-detail-rating,
  body .franchise-detail-feature,
  body .franchise-detail-purchase,
  body .franchise-detail-comment-toggle,
  body .franchise-detail-comment,
  body .franchise-detail-actions,
  body .franchise-detail-trust {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .franchise-reference-number {
    grid-template-columns: max-content minmax(0, 1fr) !important;
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 18px 12px !important;
    padding-top: 18px !important;
    border-top: 0 !important;
    font-size: 15px !important;
  }

  body .franchise-reference-number input {
    min-height: 46px !important;
    border-width: 4px !important;
  }

  body .wholesale-run-pricing {
    margin-top: 24px !important;
    border-radius: 10px !important;
  }

  body .wholesale-run-pricing-head {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 18px 16px 12px !important;
  }

  body .wholesale-run-pricing-head h3 {
    font-size: 18px !important;
  }

  body .wholesale-run-pricing-head label {
    justify-content: flex-start !important;
    font-size: 14px !important;
  }

  body .wholesale-run-table-wrap {
    margin: 0 12px 16px !important;
    overflow: hidden !important;
  }

  body .wholesale-run-pricing table,
  body .wholesale-run-pricing tbody,
  body .wholesale-run-pricing tr {
    display: grid !important;
    width: 100% !important;
  }

  body .wholesale-run-pricing thead {
    display: none !important;
  }

  body .wholesale-run-pricing tr {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-bottom: 1px solid #e8eef5 !important;
  }

  body .wholesale-run-pricing tr:last-child {
    border-bottom: 0 !important;
  }

  body .wholesale-run-pricing td {
    display: grid !important;
    gap: 4px !important;
    padding: 12px 10px !important;
    border: 0 !important;
    font-size: 15px !important;
  }

  body .wholesale-run-pricing td::before {
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
  }

  body .wholesale-run-pricing td:nth-child(1)::before {
    content: "Run Size";
  }

  body .wholesale-run-pricing td:nth-child(2)::before {
    content: "Per Unit";
  }

  body .wholesale-run-pricing td:nth-child(3)::before {
    content: "Total Price";
  }

  body .wholesale-run-pricing td:nth-child(4)::before {
    content: "Your Selling Price";
  }

  body .wholesale-run-pricing td:nth-child(5)::before {
    content: "Profit";
  }

  body .wholesale-checkout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 0 12px 16px !important;
  }

  body .wholesale-order-summary {
    padding: 16px !important;
  }

  body .wholesale-run-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body .wholesale-top-markup {
    position: static !important;
    justify-content: flex-end !important;
    margin: 0 0 14px !important;
  }

  body .wholesale-run-actions {
    justify-content: stretch !important;
    padding: 14px 16px !important;
  }

  body .wholesale-run-actions button {
    width: 100% !important;
  }

  body .wholesale-checkout-layout,
  body .wholesale-checkout-product-main,
  body .wholesale-shipping-line {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .wholesale-checkout-sidebar {
    position: static !important;
  }

  body .wholesale-checkout-product-main,
  body .wholesale-side-card {
    padding: 14px !important;
  }

  body .wholesale-checkout-pricebox {
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding-left: 0 !important;
    padding-top: 14px !important;
    border-left: 0 !important;
    border-top: 1px solid #e5edf4 !important;
  }

  body .wholesale-checkout-header h2 {
    font-size: 24px !important;
  }

  body .wholesale-shipping-details summary {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 430px) {
  body .account-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .franchise-product-detail {
    padding: 14px !important;
  }
}

/* Wholesale checkout viewport-safe layout */
html,
body {
  overflow-x: hidden;
}

body .wholesale-checkout-screen {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
  overflow-x: hidden;
}

body .wholesale-broker-panel .franchise-review {
  width: 100% !important;
  max-width: none !important;
}

body .wholesale-checkout-screen *,
body .wholesale-checkout-layout > *,
body .wholesale-checkout-product-main > *,
body .wholesale-shipping-line > *,
body .wholesale-payment-option > * {
  min-width: 0;
  box-sizing: border-box;
}

body .wholesale-checkout-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

body .wholesale-checkout-left {
  min-width: 0;
}

body .wholesale-checkout-sidebar {
  width: 100%;
  max-width: 360px;
  position: sticky;
  top: 20px;
  justify-self: end;
}

body .wholesale-checkout-product-main {
  grid-template-columns: 110px minmax(0, 1fr) 170px;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

body .wholesale-checkout-copy h3 {
  font-size: 21px;
  line-height: 1.16;
}

body .wholesale-checkout-copy p,
body .wholesale-shipping-line {
  font-size: 13px;
  line-height: 1.42;
}

body .wholesale-checkout-pricebox {
  gap: 10px 14px;
}

body .wholesale-checkout-pricebox strong {
  white-space: normal;
}

body .wholesale-shipping-line {
  grid-template-columns: minmax(70px, .65fr) minmax(76px, .65fr) minmax(130px, 1.25fr) minmax(105px, .9fr) minmax(145px, 1.35fr) minmax(62px, .55fr);
  gap: 12px;
  padding: 14px;
}

body .wholesale-side-card {
  padding: 18px;
}

body .wholesale-total-card p {
  gap: 12px;
  overflow-wrap: anywhere;
}

body .wholesale-total-card p span,
body .wholesale-payment-option b,
body .wholesale-payment-option small,
body .wholesale-confirm-card p span {
  white-space: normal;
}

body .wholesale-payment-option {
  min-height: 68px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

body .wholesale-payment-option.selected {
  border-color: #2563eb;
  background: #eef6ff;
}

body .wholesale-payment-option em {
  width: 24px;
  height: 24px;
}

body .wholesale-confirm-card button {
  width: 100%;
  min-height: 48px;
}

body .wholesale-ready-payments {
  display: grid;
  gap: 8px;
  margin: 4px 0 8px;
}

body .wholesale-ready-payments h4 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

body .wholesale-checkout-next .wholesale-payment-option {
  min-height: 58px;
  margin-top: 0;
  border: 1px solid #dce7f1;
  color: #0f172a;
  background: #fff;
  box-shadow: none;
  font-size: 13px;
  text-align: left;
  transform: none;
}

body .wholesale-checkout-next .wholesale-payment-option.selected {
  color: #0f172a;
  border-color: #2563eb;
  background: #eef6ff;
}

body .wholesale-checkout-next .wholesale-payment-option:hover,
body .wholesale-checkout-next .wholesale-payment-option:focus-visible {
  color: #0f172a;
  background: #f8fbff;
  outline: 2px solid rgba(37, 99, 235, .16);
}

body .wholesale-checkout-next .wholesale-payment-option.selected:hover,
body .wholesale-checkout-next .wholesale-payment-option.selected:focus-visible {
  background: #eef6ff;
}

body .wholesale-checkout-next .wholesale-payment-icon img,
body .wholesale-payment-card .wholesale-payment-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

body .wholesale-billing-back {
  min-height: 42px;
  border: 1px solid #d7e4f4;
  border-radius: 8px;
  color: #2563eb;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1050px) {
  body .wholesale-checkout-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .wholesale-checkout-sidebar {
    position: static !important;
    max-width: none;
    justify-self: stretch;
  }

  body .wholesale-shipping-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body .wholesale-checkout-screen {
    padding: 16px 12px;
  }

  body .wholesale-checkout-product-main {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    padding: 14px;
  }

  body .wholesale-checkout-thumb {
    width: 100%;
    max-width: 220px;
  }

  body .wholesale-checkout-pricebox {
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding-left: 0 !important;
    padding-top: 14px !important;
    border-left: 0 !important;
    border-top: 1px solid #e5edf4 !important;
  }

  body .wholesale-shipping-line {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .wholesale-payment-option {
    grid-template-columns: 32px minmax(0, 1fr) 24px !important;
  }
}

@media (max-width: 760px) {
  body .account-detail-addresses {
    margin-top: 20px !important;
    padding-top: 20px !important;
  }

  body .address-book-content {
    padding: 18px 16px 22px !important;
  }

  body .address-default-grid,
  body .address-entry-head {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  body .address-book-content .account-table-wrap,
  body .account-detail-addresses .account-table-wrap {
    overflow-x: hidden !important;
  }

  body .address-book-table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
  }

  body .address-book-table thead {
    display: none !important;
  }

  body .address-book-table tbody,
  body .address-book-table tr {
    display: grid !important;
    width: 100% !important;
  }

  body .address-book-table tr {
    gap: 0 !important;
    overflow: hidden !important;
    margin-bottom: 12px !important;
    border: 1px solid #dfeaf2 !important;
    border-radius: 8px !important;
    background: #fff !important;
  }

  body .address-book-table td {
    display: grid !important;
    grid-template-columns: minmax(118px, 38%) minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-bottom: 1px solid #edf3f7 !important;
    overflow-wrap: anywhere !important;
  }

  body .address-book-table td::before {
    color: #486174 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  body .address-book-table td:nth-child(1)::before { content: "Name"; }
  body .address-book-table td:nth-child(2)::before { content: "Display Address"; }
  body .address-book-table td:nth-child(3)::before { content: "Company"; }
  body .address-book-table td:nth-child(4)::before { content: "Phone"; }
  body .address-book-table td:nth-child(5)::before { content: "Actions"; }

  body .address-book-table td:last-child {
    border-bottom: 0 !important;
    white-space: normal !important;
  }

  body .address-book-table .address-edit-cell {
    display: block !important;
    padding: 14px !important;
  }

  body .address-book-table .address-edit-cell::before {
    content: "" !important;
  }

  body .address-edit-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .address-edit-actions {
    justify-content: flex-start !important;
  }
}
