@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Noto+Sans+Thai:wght@400;500;600&display=swap");

.nat-home-block {
  --nat-ink: #231c26;
  --nat-muted: #665d6a;
  --nat-pink: #cb0c68;
  --nat-pink-dark: #950346;
  --nat-pink-soft: #fff3f8;
  --nat-line: #efe5ea;
  --nat-shadow: 0 18px 46px rgba(122, 25, 72, 0.14);
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 225, 239, 0.6), transparent 22%),
    linear-gradient(180deg, #fffafc 0%, #ffffff 24%, #fff8fb 100%);
  color: var(--nat-ink);
  font-family: "Noto Sans Thai", "DM Sans", system-ui, sans-serif;
  line-height: 1.75;
}

/* Override Astra's Gutenberg rule that constrains every direct entry-content block. */
.entry-content[data-ast-blocks-layout] > .nat-home-block {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-right: 0 !important;
  margin-left: calc(50% - 50vw) !important;
}

.nat-home-block * {
  box-sizing: border-box;
}

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

.nat-home-block a {
  color: inherit;
  text-decoration: none;
}

.nat-home-block .nat-shell {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
}

.nat-home-block .nat-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(203, 12, 104, 0.12);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nat-home-block .nat-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.nat-home-block .nat-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nat-home-block .nat-brand__logo {
  display: block;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(147, 23, 79, 0.12);
}

.nat-home-block .nat-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nat-home-block .nat-brand__title {
  color: #342a34;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.nat-home-block .nat-brand__meta {
  color: var(--nat-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.nat-home-block .nat-menu {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nat-home-block .nat-menu a {
  position: relative;
  color: #2f2731;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.nat-home-block .nat-menu a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--nat-pink);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nat-home-block .nat-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nat-home-block .nat-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nat-home-block .nat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nat-home-block .nat-pill--primary,
.nat-home-block .nat-search button,
.nat-home-block .nat-button {
  border: 0;
  background: linear-gradient(120deg, #de237d, #a80553);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(185, 10, 92, 0.22);
}

.nat-home-block .nat-pill--ghost {
  border: 1px solid rgba(203, 12, 104, 0.14);
  background: #ffffff;
  color: var(--nat-pink);
}

.nat-home-block .nat-button--ghost {
  border: 1px solid rgba(203, 12, 104, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--nat-pink);
  box-shadow: 0 10px 20px rgba(131, 33, 78, 0.08);
}

.nat-home-block .nat-pill--primary:hover,
.nat-home-block .nat-pill--ghost:hover,
.nat-home-block .nat-search button:hover,
.nat-home-block .nat-button:hover,
.nat-home-block .nat-service-card:hover,
.nat-home-block .nat-solution-card:hover {
  transform: translateY(-2px);
}

.nat-home-block .nat-eyebrow,
.nat-home-block .nat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 9px 15px;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nat-home-block .nat-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.98), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(255, 204, 227, 0.78), transparent 28%),
    linear-gradient(118deg, #ffffff 0%, #fff9fc 48%, #ffe5f0 100%);
}

.nat-home-block .nat-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: stretch;
  min-height: 690px;
}

.nat-home-block .nat-hero__copy {
  position: relative;
  z-index: 3;
  padding: 88px 34px 60px 8px;
  animation: natFadeUp 0.7s ease both;
}

.nat-home-block .nat-hero h1 {
  max-width: 730px;
  margin: 0 0 20px;
  font-size: clamp(46px, 4.7vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.nat-home-block .nat-hero h1 .nat-hero__accent {
  color: var(--nat-pink);
}

.nat-home-block .nat-hero__lede {
  max-width: 675px;
  margin: 0 0 26px;
  color: #5f5662;
  font-size: clamp(18px, 1.42vw, 22px);
  line-height: 1.78;
}

.nat-home-block .nat-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  border: 1px solid #eadde4;
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 10px 10px 20px;
  box-shadow: var(--nat-shadow);
}

.nat-home-block .nat-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nat-ink);
  font: inherit;
  font-size: 17px;
}

.nat-home-block .nat-search button,
.nat-home-block .nat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.nat-home-block .nat-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.nat-home-block .nat-hero__actions .nat-button,
.nat-home-block .nat-hero__actions .nat-button--ghost {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nat-home-block .nat-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
}

.nat-home-block .nat-hero__chips a,
.nat-home-block .nat-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #564d59;
  font-size: 13px;
  font-weight: 500;
}

.nat-home-block .nat-hero__chips a::before,
.nat-home-block .nat-hero__chips span::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--nat-pink);
  box-shadow: 0 0 0 4px rgba(203, 12, 104, 0.1);
  content: "";
}

.nat-home-block .nat-hero__chips a:hover {
  color: var(--nat-pink);
}

.nat-home-block .nat-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 22px;
  border: 1px solid rgba(203, 12, 104, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 34px rgba(107, 27, 66, 0.07);
  backdrop-filter: blur(12px);
}

.nat-home-block .nat-hero__stats div {
  min-height: 94px;
  padding: 16px 18px;
}

.nat-home-block .nat-hero__stats div + div {
  border-left: 1px solid rgba(203, 12, 104, 0.12);
}

.nat-home-block .nat-hero__stats strong {
  display: block;
  color: var(--nat-ink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.nat-home-block .nat-hero__stats span {
  display: block;
  margin-top: 4px;
  color: var(--nat-muted);
  font-size: 12px;
  line-height: 1.5;
}

.nat-home-block .nat-hero__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 44px 0 42px;
}

.nat-home-block .nat-hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 249, 252, 0.9), transparent 16%, rgba(255, 241, 247, 0.04));
  content: "";
}

.nat-home-block .nat-hero__stage {
  position: relative;
  width: min(820px, 100%);
  min-height: 560px;
  margin: 0 -34px 0 auto;
  perspective: 1600px;
}

.nat-home-block .nat-hero__stage::before {
  position: absolute;
  right: 0;
  bottom: 2%;
  z-index: 1;
  width: 66%;
  height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 239, 246, 0.9)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.95), transparent 42%);
  box-shadow:
    0 28px 60px rgba(175, 59, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: translate3d(0, 0, 10px) rotate(-3deg);
  content: "";
}

.nat-home-block .nat-hero__stage::after {
  position: absolute;
  right: 1%;
  bottom: 0;
  z-index: 0;
  width: 360px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 232, 0.55) 0%, rgba(255, 228, 239, 0.28) 52%, transparent 76%);
  filter: blur(8px);
  content: "";
}

.nat-home-block .nat-hero__visual-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  width: 96%;
  margin-left: auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 28px 50px rgba(120, 18, 69, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  transform: rotateY(-11deg) rotateX(5deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.nat-home-block .nat-hero__stage:hover .nat-hero__visual-card {
  transform: rotateY(-7deg) rotateX(4deg) translateY(-6px);
}

.nat-home-block .nat-hero__visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(180deg, transparent 58%, rgba(40, 5, 26, 0.24));
  content: "";
  pointer-events: none;
}

.nat-home-block .nat-hero__visual-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center;
}

.nat-home-block .nat-float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  box-shadow: 0 18px 32px rgba(110, 23, 66, 0.12);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.nat-home-block .nat-float-card em {
  display: inline-block;
  font-style: normal;
  color: #c5266a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nat-home-block .nat-float-card strong {
  display: block;
  color: #2b222d;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.nat-home-block .nat-float-card span {
  display: block;
  margin-top: 4px;
  color: var(--nat-muted);
  font-size: 12px;
  line-height: 1.55;
}

.nat-home-block .nat-float-card--top {
  top: 4%;
  left: 0;
  width: 218px;
  transform: translate3d(0, 0, 92px) rotate(-6deg);
}

.nat-home-block .nat-float-card--right {
  top: 8%;
  right: 1%;
  width: 208px;
  padding: 15px 16px 16px;
  border-color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 239, 246, 0.88));
  box-shadow: 0 18px 38px rgba(135, 25, 78, 0.16);
  transform: translate3d(0, 0, 95px) rotate(1.8deg);
}

.nat-home-block .nat-float-card--right strong {
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.28;
}

.nat-home-block .nat-float-card--right span {
  margin-top: 6px;
  font-size: 12.5px;
}

.nat-home-block .nat-float-card--directory {
  bottom: 1%;
  left: 8%;
  width: 330px;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 246, 0.92));
  box-shadow: 0 20px 42px rgba(126, 21, 72, 0.17);
  transform: translate3d(0, 0, 108px) rotate(3deg);
}

.nat-home-block .nat-float-card--directory a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.nat-home-block .nat-proof {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

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

.nat-home-block .nat-proof__grid article {
  display: flex;
  gap: 18px;
  border: 1px solid rgba(239, 229, 234, 0.92);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  box-shadow: 0 18px 30px rgba(87, 29, 57, 0.06);
  backdrop-filter: blur(10px);
}

.nat-home-block .nat-proof__icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 18px;
  background: #fff1f7;
  color: var(--nat-pink);
  font-size: 20px;
}

.nat-home-block .nat-proof__grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.nat-home-block .nat-proof__grid p {
  margin: 0;
  color: var(--nat-muted);
  font-size: 15px;
  line-height: 1.75;
}

.nat-home-block .nat-section {
  padding-top: 72px;
}

.nat-home-block .nat-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.nat-home-block .nat-section__head h2,
.nat-home-block .nat-answer h2,
.nat-home-block .nat-contact h2,
.nat-home-block .nat-faq h2 {
  margin: 0;
  font-size: clamp(32px, 3.1vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.nat-home-block .nat-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.nat-home-block .nat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.nat-home-block .nat-service-card {
  overflow: hidden;
  border: 1px solid var(--nat-line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(90, 25, 56, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nat-home-block .nat-service-card:hover {
  box-shadow: 0 22px 36px rgba(154, 13, 79, 0.15);
}

.nat-home-block .nat-service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.nat-home-block .nat-service-card__body {
  padding: 22px;
}

.nat-home-block .nat-card-tag {
  margin: 0 0 8px;
  color: #a13a6d;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nat-home-block .nat-service-card h3,
.nat-home-block .nat-solution-card h3,
.nat-home-block .nat-answer dt {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32;
}

.nat-home-block .nat-service-card p,
.nat-home-block .nat-solution-card p,
.nat-home-block .nat-answer p,
.nat-home-block .nat-contact p,
.nat-home-block .nat-faq details p {
  margin: 0;
  color: var(--nat-muted);
  font-size: 16px;
  line-height: 1.82;
}

.nat-home-block .nat-service-card span,
.nat-home-block .nat-solution-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nat-home-block .nat-service-filters,
.nat-home-block .nat-solution-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -6px 0 24px;
}

.nat-home-block .nat-service-filter,
.nat-home-block .nat-solution-filter {
  min-height: 40px;
  border: 1px solid #eedde6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 15px;
  color: #665260;
  font: 500 14px/1 "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nat-home-block .nat-service-filter:hover,
.nat-home-block .nat-solution-filter:hover {
  border-color: rgba(203, 12, 104, 0.3);
  color: var(--nat-pink);
  transform: translateY(-1px);
}

.nat-home-block .nat-service-filter.is-active,
.nat-home-block .nat-service-filter[aria-pressed="true"],
.nat-home-block .nat-solution-filter.is-active,
.nat-home-block .nat-solution-filter[aria-pressed="true"] {
  border-color: var(--nat-pink);
  background: linear-gradient(120deg, #d81973, #aa0754);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(185, 10, 92, 0.18);
}

.nat-home-block .nat-card-grid--catalog {
  gap: 18px;
}

.nat-home-block .nat-service-card--catalog {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 22px;
}

.nat-home-block .nat-service-card--catalog::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 20px;
  left: 20px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #f5a6c8, var(--nat-pink));
  content: "";
}

.nat-home-block .nat-service-card--catalog > a {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.nat-home-block .nat-service-card--catalog img {
  height: 190px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nat-home-block .nat-service-card--catalog:hover img {
  transform: scale(1.045);
}

.nat-home-block .nat-service-card--catalog .nat-service-card__body {
  display: flex;
  min-height: 176px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.nat-home-block .nat-service-card--catalog .nat-card-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 27px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fff1f7;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.nat-home-block .nat-service-card--catalog h3 {
  margin-bottom: 7px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.nat-home-block .nat-service-card--catalog p:not(.nat-card-tag) {
  font-size: 14px;
  line-height: 1.68;
}

.nat-home-block .nat-service-card--catalog .nat-service-card__body > span {
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
}

.nat-home-block .nat-service-card--catalog[data-category~="print"]::before,
.nat-home-block .nat-service-card--catalog[data-category~="premium"]::before {
  background: linear-gradient(90deg, #d5a34a, #c55f9a);
}

.nat-home-block .nat-service-card--catalog[data-category~="event"]::before {
  background: linear-gradient(90deg, #7e5bd1, #df337e);
}

.nat-home-block .nat-service-card--catalog[data-category~="digital"]::before {
  background: linear-gradient(90deg, #2592a8, #d51873);
}

.nat-home-block .nat-service-card--catalog[data-category~="nature"]::before {
  background: linear-gradient(90deg, #5b9667, #c95a88);
}

.nat-home-block .nat-service-filter-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nat-home-block .nat-directory {
  padding-top: 72px;
}

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

.nat-home-block .nat-directory-card {
  border: 1px solid var(--nat-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 239, 0.58), transparent 28%),
    #ffffff;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 24px rgba(87, 29, 57, 0.05);
}

.nat-home-block .nat-directory-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff1f7;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nat-home-block .nat-directory-card h3 {
  margin: 16px 0 8px;
  color: #2a222c;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.nat-home-block .nat-directory-card p {
  margin: 0;
  color: var(--nat-muted);
  font-size: 15px;
  line-height: 1.8;
}

.nat-home-block .nat-directory-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--nat-pink);
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.nat-home-block .nat-directory__grid--catalog {
  align-items: stretch;
}

.nat-home-block .nat-directory-card--catalog {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nat-home-block .nat-directory-card--catalog:hover {
  border-color: rgba(203, 12, 104, 0.25);
  box-shadow: 0 20px 40px rgba(104, 22, 61, 0.12);
  transform: translateY(-5px);
}

.nat-home-block .nat-directory-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 500 / 281;
  margin: 0;
  background: #fff1f7;
}

.nat-home-block .nat-directory-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(42, 9, 27, 0.14));
  content: "";
  pointer-events: none;
}

.nat-home-block .nat-directory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nat-home-block .nat-directory-card--catalog:hover .nat-directory-card__media img {
  transform: scale(1.045);
}

.nat-home-block .nat-directory-card--catalog h3 {
  margin: 18px 20px 7px;
  font-size: 22px;
}

.nat-home-block .nat-directory-card--catalog > p {
  margin: 0 20px;
  font-size: 14px;
  line-height: 1.7;
}

.nat-home-block .nat-directory-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 20px 18px;
}

.nat-home-block .nat-directory-card__chip {
  display: inline-flex !important;
  align-items: center;
  min-height: 30px;
  margin: 0 !important;
  border: 1px solid #f2dce7;
  border-radius: 999px;
  background: #fff8fb;
  padding: 4px 10px;
  color: #79455f !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nat-home-block .nat-directory-card__chip:hover {
  border-color: rgba(203, 12, 104, 0.3);
  background: #fff0f7;
  color: var(--nat-pink) !important;
}

.nat-home-block .nat-directory-card__links {
  display: grid;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid #f2e6eb;
  padding: 8px 20px 12px;
}

.nat-home-block .nat-directory-card__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f7edf1;
  color: #5c4050;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.nat-home-block .nat-directory-card__links a:last-child {
  border-bottom: 0;
}

.nat-home-block .nat-directory-card__links a span:last-child {
  color: var(--nat-pink);
  font-size: 16px;
}

.nat-home-block .nat-directory-card__links a:hover {
  color: var(--nat-pink);
}

.nat-home-block .nat-directory__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  border-radius: 26px;
  background: linear-gradient(120deg, #31131f, #7c133c 58%, #b70c5d);
  padding: 26px 28px;
  color: #ffffff;
}

.nat-home-block .nat-directory__cta h3 {
  margin: 0 0 4px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.nat-home-block .nat-directory__cta p {
  margin: 0;
  color: #ffdceb;
  font-size: 15px;
  line-height: 1.75;
}

.nat-home-block .nat-machinery {
  position: relative;
  min-height: 100svh;
  margin-top: 72px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 4%, rgba(244, 59, 145, 0.38), transparent 24%),
    radial-gradient(circle at 10% 84%, rgba(255, 161, 205, 0.14), transparent 26%),
    linear-gradient(135deg, #110d18 0%, #281025 47%, #6d0c40 100%);
  color: #ffffff;
}

.nat-home-block .nat-machinery::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 74%);
}

.nat-home-block .nat-machinery::after {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: -11vw;
  width: min(52vw, 800px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 205, 229, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 153, 203, 0.035), 0 0 0 108px rgba(255, 153, 203, 0.025);
  content: "";
}

.nat-home-block .nat-machinery__inner {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding: clamp(58px, 7vw, 100px) 0;
}

.nat-home-block .nat-machinery__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.nat-home-block .nat-machinery__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  border: 1px solid rgba(255, 210, 232, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  color: #ffd9e9;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nat-home-block .nat-machinery h2 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.nat-home-block .nat-machinery__intro {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 238, 246, 0.84);
  font-size: 16px;
  line-height: 1.82;
}

.nat-home-block .nat-machinery__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.nat-home-block .nat-machinery__facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 11px;
  color: #ffe4f0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.nat-home-block .nat-machinery__facts b {
  color: #ffffff;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.nat-home-block .nat-machine-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.nat-home-block .nat-machine-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 16px 28px rgba(5, 2, 8, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.nat-home-block .nat-machine-card__media {
  position: relative;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  background: #2d1728;
}

.nat-home-block .nat-machine-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(24, 6, 17, 0.38));
  content: "";
  pointer-events: none;
}

.nat-home-block .nat-machine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.nat-home-block .nat-machine-card__number {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(26, 9, 19, 0.64);
  color: #ffffff;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(7px);
}

.nat-home-block .nat-machine-card__body {
  min-height: 77px;
  padding: 12px 13px 13px;
}

.nat-home-block .nat-machine-card__type {
  margin: 0 0 4px;
  color: #ffb8d8;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nat-home-block .nat-machine-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

@media (hover: hover) and (pointer: fine) {
  .nat-home-block .nat-machine-card:hover {
    z-index: 1;
    border-color: rgba(255, 194, 223, 0.56);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(238, 49, 135, 0.15));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 38px rgba(5, 2, 8, 0.3);
    transform: translateY(-6px);
  }

  .nat-home-block .nat-machine-card:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.06);
  }
}

.nat-home-block .nat-answer {
  margin-top: 72px;
  padding: 72px 0;
  background: linear-gradient(120deg, #b8085d, #dc347f 58%, #a50651);
  color: #ffffff;
}

.nat-home-block .nat-answer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.nat-home-block .nat-answer .nat-kicker,
.nat-home-block .nat-contact .nat-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd7e8;
}

.nat-home-block .nat-answer h2,
.nat-home-block .nat-contact h2 {
  color: #ffffff;
}

.nat-home-block .nat-answer__copy > p:last-of-type,
.nat-home-block .nat-contact p {
  margin-top: 16px;
  color: #ffe1ee;
}

.nat-home-block .nat-answer__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.nat-home-block .nat-answer__list div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px 24px;
}

.nat-home-block .nat-answer dd {
  margin: 0;
  color: #ffe5ef;
  font-size: 15px;
  line-height: 1.85;
}

.nat-home-block .nat-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.nat-home-block .nat-solution-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(87, 29, 57, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nat-home-block .nat-solution-card > a {
  display: block;
  height: 100%;
}

.nat-home-block .nat-solution-card:hover {
  box-shadow: 0 26px 38px rgba(154, 13, 79, 0.18);
}

.nat-home-block .nat-solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.nat-home-block .nat-solution-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 11, 17, 0.02) 36%, rgba(18, 10, 15, 0.18) 56%, rgba(12, 7, 10, 0.84) 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.nat-home-block .nat-solution-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8, 7, 10, 0.84), rgba(23, 11, 18, 0.68));
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nat-home-block .nat-solution-card__tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 27px;
  margin: 0 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  color: #ffffff !important;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nat-home-block .nat-solution-card p {
  color: #f8dce9;
}

.nat-home-block .nat-solution-card span {
  color: #ffffff;
}

.nat-home-block .nat-solution-card:focus-within {
  outline: 3px solid rgba(203, 12, 104, 0.56);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .nat-home-block .nat-solution-card:hover::after {
    opacity: 0;
  }

  .nat-home-block .nat-solution-card:hover img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.035);
  }

  .nat-home-block .nat-solution-card:hover .nat-solution-card__body {
    opacity: 0;
    transform: translateY(14px);
  }
}

.nat-home-block .nat-contact {
  padding-top: 72px;
}

.nat-home-block .nat-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 159, 206, 0.28), transparent 22%),
    linear-gradient(112deg, #3d152a, #84103f 62%, #b3135c);
  padding: 46px 52px;
  color: #ffffff;
}

.nat-home-block .nat-contact__actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  gap: 12px;
}

.nat-home-block .nat-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nat-home-block .nat-faq {
  padding-top: 72px;
}

.nat-home-block .nat-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.nat-home-block .nat-faq details {
  border: 1px solid var(--nat-line);
  border-radius: 24px;
  background: #ffffff;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(87, 29, 57, 0.05);
}

.nat-home-block .nat-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.nat-home-block .nat-faq summary::-webkit-details-marker {
  display: none;
}

.nat-home-block .nat-faq summary::after {
  float: right;
  color: var(--nat-pink);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.nat-home-block .nat-faq details[open] summary::after {
  content: "−";
}

.nat-home-block .nat-faq details p {
  margin-top: 12px;
}

.nat-home-block .nat-footer {
  padding-top: 76px;
}

.nat-home-block .nat-footer__panel {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(203, 12, 104, 0.2);
  border-bottom: 1px solid rgba(203, 12, 104, 0.2);
  background:
    radial-gradient(circle at top right, rgba(214, 74, 137, 0.16), transparent 28%),
    radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #11191d 0%, #171920 42%, #241326 100%);
  box-shadow: 0 24px 50px rgba(43, 12, 30, 0.16);
  color: #f4f1f6;
}

.nat-home-block .nat-footer__panel::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 179, 219, 0.45), rgba(255, 255, 255, 0.08));
  content: "";
}

.nat-home-block .nat-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) repeat(3, minmax(190px, 0.82fr));
  gap: 36px;
  padding: 48px 0 36px;
}

.nat-home-block .nat-footer__col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.nat-home-block .nat-footer__col p,
.nat-home-block .nat-footer__col a,
.nat-home-block .nat-footer__col li {
  color: rgba(240, 237, 242, 0.88);
  font-size: 15px;
  line-height: 1.9;
}

.nat-home-block .nat-footer__address {
  max-width: 420px;
  margin: 0;
}

.nat-home-block .nat-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.nat-home-block .nat-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: "DM Sans", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nat-home-block .nat-footer__social:hover,
.nat-home-block .nat-footer__link:hover {
  transform: translateY(-2px);
}

.nat-home-block .nat-footer__social:hover {
  border-color: rgba(255, 190, 224, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.nat-home-block .nat-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nat-home-block .nat-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(240, 237, 242, 0.9);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nat-home-block .nat-footer__link:hover {
  color: #ffffff;
}

.nat-home-block .nat-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 22px;
}

.nat-home-block .nat-footer__meta p,
.nat-home-block .nat-footer__meta a {
  margin: 0;
  color: rgba(231, 225, 235, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

@keyframes natFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .nat-home-block * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .nat-home-block .nat-nav {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px 0;
  }

  .nat-home-block .nat-menu {
    justify-content: flex-start;
  }

  .nat-home-block .nat-nav__cta {
    flex-wrap: wrap;
  }

  .nat-home-block .nat-hero__grid,
  .nat-home-block .nat-answer__grid {
    grid-template-columns: 1fr;
  }

  .nat-home-block .nat-hero__copy {
    padding: 66px 0 26px;
  }

  .nat-home-block .nat-hero__visual {
    min-height: 500px;
    padding: 20px 0 44px;
  }

  .nat-home-block .nat-hero__stage {
    width: min(820px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .nat-home-block .nat-float-card--top {
    left: 0;
  }

  .nat-home-block .nat-float-card--right {
    right: 2%;
  }

  .nat-home-block .nat-float-card--directory {
    left: 2%;
  }

  .nat-home-block .nat-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nat-home-block .nat-directory__grid,
  .nat-home-block .nat-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nat-home-block .nat-machinery__inner {
    min-height: 0;
  }

  .nat-home-block .nat-machine-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nat-home-block .nat-contact__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nat-home-block .nat-contact__actions {
    width: 100%;
    min-width: 0;
  }

  .nat-home-block .nat-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nat-home-block .nat-footer__col:first-child {
    grid-column: 1 / -1;
  }

  .nat-home-block .nat-footer__col--shop {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nat-home-block {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-bottom: 64px;
  }

  .nat-home-block .nat-shell {
    width: min(1360px, calc(100% - 24px));
  }

  .nat-home-block .nat-nav {
    gap: 18px;
    min-height: 72px;
    padding: 14px 0;
  }

  .nat-home-block .nat-brand__logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 16px;
  }

  .nat-home-block .nat-brand__title {
    font-size: 16px;
  }

  .nat-home-block .nat-brand__meta,
  .nat-home-block .nat-menu a,
  .nat-home-block .nat-pill,
  .nat-home-block .nat-text-link,
  .nat-home-block .nat-service-card p,
  .nat-home-block .nat-solution-card p,
  .nat-home-block .nat-answer p,
  .nat-home-block .nat-contact p,
  .nat-home-block .nat-faq details p {
    font-size: 14px;
  }

  .nat-home-block .nat-menu {
    gap: 16px;
  }

  .nat-home-block .nat-hero__copy {
    padding: 34px 0 22px;
  }

  .nat-home-block .nat-hero h1 {
    font-size: 40px;
    line-height: 1.13;
  }

  .nat-home-block .nat-hero__lede {
    font-size: 17px;
  }

  .nat-home-block .nat-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nat-home-block .nat-hero__actions .nat-button,
  .nat-home-block .nat-hero__actions .nat-button--ghost {
    width: 100%;
  }

  .nat-home-block .nat-search {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 24px;
    padding: 14px;
  }

  .nat-home-block .nat-search input {
    width: 100%;
    font-size: 15px;
  }

  .nat-home-block .nat-search button {
    width: 100%;
  }

  .nat-home-block .nat-hero__chips {
    gap: 8px;
  }

  .nat-home-block .nat-hero__chips a,
  .nat-home-block .nat-hero__chips span {
    min-height: 32px;
    font-size: 12px;
  }

  .nat-home-block .nat-hero__stats,
  .nat-home-block .nat-proof__grid,
  .nat-home-block .nat-card-grid,
  .nat-home-block .nat-directory__grid,
  .nat-home-block .nat-answer__list,
  .nat-home-block .nat-solution-grid,
  .nat-home-block .nat-faq__grid {
    grid-template-columns: 1fr;
  }

  .nat-home-block .nat-hero__stats {
    gap: 0;
  }

  .nat-home-block .nat-hero__stats div {
    min-height: 0;
    padding: 14px 16px;
  }

  .nat-home-block .nat-hero__stats div + div {
    border-top: 1px solid rgba(203, 12, 104, 0.12);
    border-left: 0;
  }

  .nat-home-block .nat-hero__visual {
    min-height: 340px;
    padding: 20px 0 28px;
  }

  .nat-home-block .nat-hero__stage {
    width: 100%;
    min-height: 370px;
    margin: 0 auto;
  }

  .nat-home-block .nat-hero__stage::before {
    width: 74%;
    height: 96px;
    right: -2%;
    bottom: 4%;
  }

  .nat-home-block .nat-hero__stage::after {
    width: 220px;
    height: 130px;
    right: 0;
    bottom: 2%;
  }

  .nat-home-block .nat-hero__visual-card {
    border-radius: 22px;
    transform: none;
  }

  .nat-home-block .nat-float-card {
    width: auto;
    max-width: 180px;
    padding: 12px 12px 11px;
  }

  .nat-home-block .nat-float-card strong {
    font-size: 12px;
  }

  .nat-home-block .nat-float-card span {
    font-size: 10px;
  }

  .nat-home-block .nat-float-card--top {
    top: 4%;
    left: 0;
  }

  .nat-home-block .nat-float-card--right {
    top: 7%;
    right: 3%;
    width: 188px;
  }

  .nat-home-block .nat-float-card--directory {
    bottom: 0;
    left: 4%;
    width: 240px;
  }

  .nat-home-block .nat-proof {
    margin-top: 0;
    padding-top: 18px;
  }

  .nat-home-block .nat-proof__grid article,
  .nat-home-block .nat-answer__list div,
  .nat-home-block .nat-faq details {
    border-radius: 18px;
  }

  .nat-home-block .nat-section,
  .nat-home-block .nat-directory,
  .nat-home-block .nat-contact,
  .nat-home-block .nat-faq {
    padding-top: 52px;
  }

  .nat-home-block .nat-machinery {
    min-height: 0;
    margin-top: 52px;
  }

  .nat-home-block .nat-machinery__inner {
    padding: 54px 0;
  }

  .nat-home-block .nat-machinery__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }

  .nat-home-block .nat-machinery h2 {
    font-size: 36px;
  }

  .nat-home-block .nat-machinery__intro {
    font-size: 14px;
  }

  .nat-home-block .nat-machine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nat-home-block .nat-machine-card {
    border-radius: 15px;
  }

  .nat-home-block .nat-machine-card__body {
    min-height: 68px;
    padding: 10px 11px 12px;
  }

  .nat-home-block .nat-machine-card h3 {
    font-size: 14px;
  }

  .nat-home-block .nat-answer {
    margin-top: 52px;
    padding: 50px 0;
  }

  .nat-home-block .nat-footer {
    padding-top: 56px;
  }

  .nat-home-block .nat-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 0 22px;
  }

  .nat-home-block .nat-footer__col:first-child {
    grid-column: auto;
  }

  .nat-home-block .nat-footer__col--shop {
    grid-column: auto;
  }

  .nat-home-block .nat-footer__social {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 22px;
  }

  .nat-home-block .nat-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 18px;
  }

  .nat-home-block .nat-section__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .nat-home-block .nat-section__head h2,
  .nat-home-block .nat-answer h2,
  .nat-home-block .nat-contact h2,
  .nat-home-block .nat-faq h2,
  .nat-home-block .nat-directory__cta h3 {
    font-size: 30px;
  }

  .nat-home-block .nat-directory-card h3 {
    font-size: 20px;
  }

  .nat-home-block .nat-directory__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .nat-home-block .nat-service-card img {
    height: 210px;
  }

  .nat-home-block .nat-service-card--catalog img {
    height: 176px;
  }

  .nat-home-block .nat-service-card--catalog .nat-service-card__body {
    min-height: 0;
    padding: 17px;
  }

  .nat-home-block .nat-service-filters,
  .nat-home-block .nat-solution-filters {
    gap: 8px;
    margin-bottom: 20px;
  }

  .nat-home-block .nat-service-filter,
  .nat-home-block .nat-solution-filter {
    min-height: 37px;
    padding: 0 12px;
    font-size: 12px;
  }

  .nat-home-block .nat-service-card__body,
  .nat-home-block .nat-solution-card__body {
    padding: 18px;
  }

  .nat-home-block .nat-service-card h3,
  .nat-home-block .nat-solution-card h3,
  .nat-home-block .nat-answer dt,
  .nat-home-block .nat-faq summary {
    font-size: 20px;
  }

  .nat-home-block .nat-contact__inner {
    padding: 30px 20px;
    border-radius: 24px;
  }
}
