:root {
  --color-primary: #1AA692;
  --color-primary-dark: #15a590;
  --color-primary-light: #E8FCF9;
  --color-accent: #00F2C3;
  --color-dark: #231E19;
  --color-dark-secondary: #0D2B29;
  --color-dark-green: #122C2A;
  --color-dark-deep: #0A1F1E;
  --color-text: #231E19;
  --color-text-secondary: #535353;
  --color-text-light: #8C8C8C;
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E8E8E8;
  --color-gray-300: #C9C9C9;
  --color-blue: #0075B4;
  --color-red: #AF2038;
  --color-navy: #114F7C;
  --color-orange: #FABC12;
  --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.6875rem;
  --font-size-sm: 0.8125rem;
  --font-size-base: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-40: 6rem;
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0 16px 0 rgba(83, 83, 83, 0.14);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --max-width: 1400px;
  --content-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  line-height: 1.75;
  color: var(--color-text);
  background-color: #152C28;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
  font-display: swap;
}

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

.acm-pricing,
.acm-flow,
.acm-suite,
.acm-footer-cta {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  border: none;
}

.header {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0 16px 0 rgba(83, 83, 83, 0.14);
  backdrop-filter: blur(40px);
  z-index: 1000;
  line-height: 1.3;
}
.header a:not(.cta-btn-item, .megaMenu-item),
.header button {
  transition: color var(--transition-slow);
  text-align: left;
  color: var(--color-text);
}
.header a:not(.cta-btn-item, .megaMenu-item):hover,
.header button:hover {
  color: #AF2038;
}

.header-main {
  position: relative;
  z-index: 10;
  display: flex;
  flex-flow: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-right: clamp(1.25rem, 1.25rem + 1vw, 2.5rem);
  padding-left: clamp(0.625rem, 0.625rem + 1vw, 1.25rem);
}
@media (max-width: 960.99px) {
  .header-main {
    height: 4rem;
    padding-right: 1.5rem;
    padding-left: 0.75rem;
  }
}

.header-left {
  display: flex;
  flex-direction: row;
  gap: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
}
.header-left .service-select {
  border-right: 1px solid #E8E8E8;
  padding-right: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
}
.header-left .service-menu {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  padding-right: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
  font-size: clamp(0.688rem, 0.313rem + 0.63vw, 0.813rem);
}
.header-left .service-menu .service-menu-list {
  display: flex;
  padding-left: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
}
@media (max-width: 960.99px) {
  .header-left {
    gap: 0.75rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-left: auto;
  gap: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
}
@media (max-width: 960.99px) {
  .header-right {
    gap: 0.75rem;
  }
}

.logo-link {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
  font-size: inherit;
  font-weight: normal;
}

.header .logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-right: 1px solid #E8E8E8;
  transition: opacity var(--transition-fast);
}
.header .logo:hover {
  opacity: 0.7;
}
@media (max-width: 960.99px) {
  .header .logo {
    border-right: none;
  }
}

.header .logo-img {
  width: 9.928vw;
  max-width: 139px;
  min-width: 110px;
  height: auto;
}
@media (max-width: 960.99px) {
  .header .logo-img {
    height: 54px;
    width: auto;
    min-width: auto;
  }
}

.hMenu {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.hMenu .hMenu-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: clamp(0.25rem, 0.25rem + 1vw, 0.75rem);
  padding-block: 4px;
}
.hMenu .hMenu-item a:not(.btn) {
  color: currentColor;
  text-align: center;
}
.hMenu .hMenu-item:not(.dropMenu) a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hMenu .hMenu-item.on {
  border-top: 4px solid #AF2038;
  padding-bottom: 4px;
}

.header-main .hMenu {
  gap: clamp(0.375rem, 0.375rem + 1vw, 1.5rem);
}

.service-select-btn {
  line-height: 1.3;
  font-size: clamp(0.75rem, 0.375rem + 0.63vw, 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: clamp(0.25rem, 0.25rem + 1vw, 0.5rem);
}

.dropMenu:not(.width-full) {
  position: relative;
}
.dropMenu .dropMenu-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  gap: clamp(0.25rem, 0.25rem + 1vw, 0.5rem);
}
.dropMenu .dropMenu-btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #535353;
  line-height: 1;
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #535353;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  transition: rotate var(--transition-slow), translateY var(--transition-slow);
}
.dropMenu .dropMenu-btn:hover::after {
  color: #AF2038;
  border-color: #AF2038;
}
.dropMenu.is-open .dropMenu-btn::after {
  rotate: x 180deg;
}

.dropMenu-nav {
  clip-path: inset(0 -50vw 100%);
  visibility: hidden;
  position: absolute;
  width: auto;
  top: calc(100% - 8px);
  right: -3px;
  transition: clip-path var(--transition-slow);
  padding: 6px;
  display: block;
  margin-inline: auto;
}

.dropMenu.is-open .dropMenu-nav {
  clip-path: inset(0 -50vw);
  visibility: visible;
  max-height: 100dvh;
  overflow: hidden auto;
  transition: clip-path var(--transition-slow);
}

.service-select .dropMenu-nav {
  width: 100%;
  padding-inline: 0;
  top: calc(100% - 6px);
  right: 0;
  position: fixed;
  left: 0;
}

.megaMenu .megaMenu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-white);
  width: 100%;
  padding: 1em 1.5em 1.5em;
  box-shadow: 0 0 4px 0 rgba(35, 30, 25, 0.2);
  border-radius: 0 0 1em 1em;
  overflow: hidden auto;
  height: max-content;
  margin-bottom: 70px;
}
.megaMenu .megaMenu-block {
  max-width: 916px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.megaMenu .megaMenu-title {
  font-weight: 600;
  font-size: clamp(1.125rem, 0.75rem + 0.63vw, 1.25rem);
}
.megaMenu .megaMenu-title p {
  padding: 0 0.75em 0.75em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.megaMenu .megaMenu-title p.megaMenu-title-icon::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23535353'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") center/1.2em no-repeat;
  width: 1.2em;
  height: 1.2em;
  display: block;
}
.megaMenu .megaMenu-item {
  padding-inline: 0.75em;
  padding-block: 0.75em;
  border-radius: 0.5em;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  white-space: normal;
  border: 1px solid var(--color-white);
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}
.megaMenu .megaMenu-item:hover {
  box-shadow: 0 0 4px 0 rgba(35, 30, 25, 0.1);
  background-color: #E8E8E8;
}
.megaMenu .megaMenu-item:hover .megaMenu-item-title {
  color: #AF2038;
}
.megaMenu .megaMenu-item:hover .megaMenu-item-link::after {
  transform: translateX(0.325em);
}
.megaMenu .megaMenu-item .megaMenu-item-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-inline: 0.75em;
  padding-bottom: 0.75em;
  gap: 0.5em;
  border-bottom: 1px solid #C9C9C9;
}
.megaMenu .megaMenu-item .megaMenu-item-copy::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23231E19'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") center/auto no-repeat;
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}
.megaMenu .megaMenu-item .megaMenu-item-copy .megaMenu-item-copy-inner {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.688rem + 0.31vw, 0.938rem);
}
.megaMenu .megaMenu-item .megaMenu-item-body {
  display: flex;
  gap: 0.75em;
  flex-direction: row;
  padding-inline: 0.75em;
  height: 100%;
}
.megaMenu .megaMenu-item .megaMenu-item-img-box {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  justify-content: center;
  min-width: 6.25em;
}
.megaMenu .megaMenu-item .megaMenu-item-img-box img {
  max-height: 6.25em;
  height: 100%;
  width: auto;
}
.megaMenu .megaMenu-item .megaMenu-item-cotent-box {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  height: 100%;
}
.megaMenu .megaMenu-item .megaMenu-item-cotent-box .megaMenu-item-title {
  font-weight: 500;
  color: #535353;
  font-size: clamp(0.75rem, 0.375rem + 0.63vw, 0.875rem);
  transition: color var(--transition-fast);
}
.megaMenu .megaMenu-item .megaMenu-item-cotent-box .megaMenu-item-title.jost-semiBold {
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
.megaMenu .megaMenu-item .megaMenu-item-cotent-box .megaMenu-item-summary {
  color: #535353;
  flex: 1;
  font-size: clamp(0.688rem, 0.313rem + 0.63vw, 0.813rem);
}
.megaMenu .megaMenu-item .megaMenu-item-cotent-box .megaMenu-item-summary p {
  margin-bottom: 0.5em;
  text-align: left;
}
.megaMenu .megaMenu-item .megaMenu-item-link-box {
  display: flex;
  justify-content: left;
}
.megaMenu .megaMenu-item .megaMenu-item-link-box .more-link-text {
  width: fit-content;
  margin-top: auto;
  color: #535353;
  font-weight: 600;
  font-size: clamp(0.688rem, 0.5rem + 0.31vw, 0.75rem);
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.megaMenu .megaMenu-item .megaMenu-item-link-box .more-link-text.icon-r::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #535353;
  border-bottom: 1.5px solid #535353;
  transform: rotate(-45deg);
  transition: transform var(--transition-fast);
}
.megaMenu .megaMenu-item.pickupInfo {
  padding: 0;
  margin-inline: 0.75em;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
.megaMenu .megaMenu-item.pickupInfo .megaMenu-item-copy {
  border-bottom: none;
  padding-bottom: 0;
}
.megaMenu .megaMenu-item.pickupInfo .megaMenu-item-body {
  padding-inline: 0;
}

.service-select.megaMenu .megaMenu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.75em;
}
.service-select.megaMenu .p6 {
  grid-row: 1/2;
  grid-column: 1/2;
}
.service-select.megaMenu .p1 {
  grid-row: 1/2;
  grid-column: 2/3;
}
.service-select.megaMenu .p2 {
  grid-row: 2/3;
  grid-column: 1/2;
}
.service-select.megaMenu .p3 {
  grid-row: 2/3;
  grid-column: 2/3;
}
.service-select.megaMenu .p4 {
  grid-row: 3/4;
  grid-column: 1/2;
}
.service-select.megaMenu .p5 {
  grid-row: 3/4;
  grid-column: 2/3;
}

.usefulInfo-select .megaMenu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.75em;
  margin-inline: 0.75em;
}
.usefulInfo-select .megaMenu-pickup {
  margin-bottom: 0.75rem;
}
.usefulInfo-select .thumb-content {
  width: 307px;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}
.usefulInfo-select .thumb-content .card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}
.usefulInfo-select .pickupInfo-content {
  padding-inline: 0.75em;
  padding-block: 0.75em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  white-space: normal;
  min-width: 0;
  flex: 1;
  justify-content: space-between;
}
.usefulInfo-select .pickupInfo-content-lead {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.header .cta-btn-block {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  gap: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
  margin-block: 0.5rem;
}
.header .cta-btn-block li {
  display: flex;
}
.header .cta-btn-item {
  width: 10.9375vw;
  max-width: 8.75rem;
  white-space: normal;
  text-align: center;
  min-width: 6.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(0.5rem, 0.5rem + 0.5vw, 1rem);
  padding-block: clamp(0.5rem, 0.5rem + 0.5vw, 0.75rem);
  font-size: clamp(0.75rem, 0.375rem + 0.63vw, 0.875rem);
  border-radius: 6px;
  line-height: 1.3;
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}
.header .cta-btn-item:hover {
  opacity: 0.85;
}
.header .btn.color-rev {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-text);
}
.header .btn.color-abk0 {
  background-color: var(--color-text);
  color: var(--color-white);
  border: 1px solid var(--color-text);
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger-menu.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.slide-menu {
  position: fixed;
  top: 4rem;
  right: 0;
  width: 0;
  height: 100vh;
  height: calc(100dvh - 4rem);
  background: #fff;
  transition: width 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 2.5em;
}
.slide-menu.active {
  width: 90vw;
}

.slide-menu .sp-menu-cta {
  padding-left: 3.75em;
  padding-right: 2em;
  margin-block: 1.5em;
}
.slide-menu .sp-menu-cta .cta-btn-block li {
  flex-grow: 1;
}
.slide-menu .sp-menu-cta .cta-btn-block li a {
  width: 100%;
  max-width: none;
}

.header .pc-only {
  display: block;
}
.header .pc-only-flex {
  display: flex;
}
.header .sp-only {
  display: none;
}
@media (max-width: 960.99px) {
  .header .pc-only,
  .header .pc-only-flex {
    display: none;
  }
  .header .sp-only {
    display: block;
  }
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropMenu.is-open .megaMenu-container {
  animation: headerFadeIn 0.3s ease forwards;
}

.acm-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--spacing-6);
}
@media (max-width: 768px) {
  .acm-container {
    padding: 0 var(--spacing-3);
  }
}

.acm-card {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.acm-card--hoverable {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.acm-card--hoverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-col {
  display: flex;
  flex-direction: column;
}

.u-flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--spacing-3) var(--spacing-6);
  font-size: var(--font-size-base);
  font-weight: 700;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  line-height: 1.2;
  letter-spacing: 0.01em;
  min-width: 140px;
  text-decoration: none;
}
.acm-btn svg {
  flex-shrink: 0;
}

.acm-btn-xl {
  width: 332px;
  max-width: 100%;
  height: 59px;
  padding: 7px 28px 8px 33px;
  font-size: 17.47px;
}

.acm-btn-suite-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ffffff;
  color: #7b007c;
  border: 1px solid #1aa692;
  border-radius: 8px;
  padding: 16px 32px 16px 38px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all var(--transition-base);
  width: fit-content;
}
.acm-btn-suite-cta:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.acm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.acm-header-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.acm-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  flex: 1;
}
@media (max-width: 768px) {
  .acm-nav {
    display: none;
  }
}

.acm-nav-link {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text);
  padding: var(--spacing-2);
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.acm-nav-link.acm-active {
  position: relative;
}
.acm-nav-link.acm-active::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-red);
}
.acm-nav-link:hover {
  color: var(--color-primary);
}

.acm-header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.acm-hero-fv {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding-top: 120px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .acm-hero-fv {
    min-height: auto;
    padding-top: 110px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv {
    padding-top: 100px;
  }
}

.acm-hero-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 5%, rgba(0, 242, 195, 0.25) 0%, transparent 60%), radial-gradient(ellipse 80% 70% at -5% 60%, rgba(0, 242, 195, 0.2) 0%, transparent 55%), radial-gradient(circle 117px at calc(50% - 133px) calc(100% + 120px), rgba(9, 209, 170, 0.3) 0%, transparent 100%), #152C28;
  pointer-events: none;
}

.acm-hero-fv-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 55px;
}
@media (max-width: 1024px) {
  .acm-hero-fv-container {
    padding: 30px 24px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-container {
    padding: 20px 16px;
  }
}

.acm-hero-fv-top-logo {
  position: absolute;
  top: 40px;
  left: 55px;
}
@media (max-width: 1024px) {
  .acm-hero-fv-top-logo {
    top: 30px;
    left: 24px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-top-logo {
    top: 20px;
    left: 16px;
  }
}

.acm-hero-fv-cas-logo {
  height: 35px;
  width: auto;
}
@media (max-width: 1024px) {
  .acm-hero-fv-cas-logo {
    height: 20px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-cas-logo {
    height: 16px;
  }
}

.acm-hero-fv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 73px;
}
@media (max-width: 1024px) {
  .acm-hero-fv-content {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-content {
    padding-top: 50px;
  }
}

.acm-hero-fv-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
	transform: skewX(-10deg) scaleY(0.98);
}

.acm-hero-fv-tagline-accent,
.acm-hero-fv-tagline-separator {
  font-size: 42.875px;
  line-height: 1.32;
}
@media (max-width: 1024px) {
  .acm-hero-fv-tagline-accent,
  .acm-hero-fv-tagline-separator {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-tagline-accent,
  .acm-hero-fv-tagline-separator {
    font-size: 24px;
  }
}

.acm-hero-fv-tagline-accent {
  font-weight: 700;
  color: #00F2C3;
  letter-spacing: 0.01em;
}

.acm-hero-fv-tagline-separator {
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acm-hero-fv-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .acm-hero-fv-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.acm-hero-fv-product-logo {
  width: 600px;
  height: auto;
  margin-bottom: 64px;
}
.acm-hero-fv-product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .acm-hero-fv-product-logo {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-product-logo {
    width: 280px;
    margin-bottom: 40px;
  }
}

.acm-hero-fv-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .acm-hero-fv-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.acm-hero-fv-btn-outline {
  background-color: #FFFFFF;
  color: #231E19;
  border: 0.8px solid #231E19;
  white-space: nowrap;
}
.acm-hero-fv-btn-outline:hover {
  background-color: #F9F9F9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.acm-hero-fv-btn-primary {
  background: linear-gradient(90deg, #1A7B6E 0%, #1AA692 50%, #1AA692 100%);
  color: #FFFFFF;
  border: 1px solid #1AA692;
  white-space: nowrap;
}
.acm-hero-fv-btn-white {
  background: #FFFFFF;
  color: #231E19;
  border: 1px solid #1AA692;
  white-space: nowrap;
}
.acm-hero-fv-btn-primary:hover {
  background: linear-gradient(90deg, #156B5F 0%, #15a590 50%, #15a590 100%);
  box-shadow: 0 4px 12px rgba(26, 166, 146, 0.3);
}
.acm-hero-fv-btn-white:hover {
  box-shadow: 0 4px 12px rgba(26, 166, 146, 0.3);
}


@media (max-width: 1024px) {
  .acm-hero-fv-btn {
    width: 100%;
    max-width: 332px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-btn {
    width: 100%;
    max-width: 300px;
    height: 52px;
    font-size: 14px;
  }
}
.acm-hero-fv-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 80px auto 0;
}
@media (max-width: 1024px) {
  .acm-hero-fv-video-wrapper {
    max-width: 600px;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .acm-hero-fv-video-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }
}

.acm-hero-fv-video-bg-outer {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: #FFFFFF;
  opacity: 0.6;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .acm-hero-fv-video-bg-outer {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 12px;
  }
}

.acm-hero-fv-video-bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .acm-hero-fv-video-bg-inner {
    border-radius: 8px;
  }
}

.acm-hero-fv-video {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .acm-hero-fv-video {
    border-radius: 8px;
  }
}

.acm-hero-fv-video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .acm-hero-fv-video-player {
    border-radius: 8px;
  }
}

.acm-problems {
  padding: var(--spacing-40) var(--spacing-16);
}
@media (max-width: 768px) {
  .acm-problems {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-section-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}
@media (max-width: 768px) {
  .acm-section-header {
    margin-bottom: var(--spacing-6);
  }
}

.acm-section-title-gradient {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--spacing-4);
  position: relative;
  display: inline-block;
}
/* Removed: decoration moved to section level */
.acm-section-title-gradient.acm-white {
  color: var(--color-white);
}
@media (max-width: 768px) {
  .acm-section-title-gradient {
    font-size: 20px;
  }
}

.acm-section-title-line {
  width: 64px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(191deg, #92D0B2 1%, #1AA692 49%, #24767B 97%);
  border-radius: 1px;
}

.acm-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-4);
}
@media (max-width: 1024px) {
  .acm-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .acm-problems-grid {
    grid-template-columns: 1fr;
  }
}

.acm-problem-card {
  padding: var(--spacing-6) var(--spacing-8);
  text-align: center;
}

.acm-problem-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-4);
}
.acm-problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.acm-problem-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-4);
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.acm-problem-description {
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: 1.7;
  text-align: left;
}

.acm-user-benefits {
  padding: var(--spacing-40) var(--spacing-16);
  position: relative;
}
.acm-user-benefits::before {
  content: "";
  position: absolute;
  width: 234px;
  height: 234px;
  left: calc(50% - 250px);
  top: 80px;
  background: radial-gradient(50% 50% at 50% 50%, #09D1AA 0%, rgba(9, 209, 170, 0) 100%);
  opacity: 0.3;
  filter: blur(27px);
  pointer-events: none;
	z-index: -1;
}
.acm-user-benefits .acm-section-header {
  margin-bottom: var(--spacing-8);
}
@media (max-width: 768px) {
  .acm-user-benefits {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-user-benefits-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-md);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto var(--spacing-10);
}
@media (max-width: 768px) {
  .acm-user-benefits-description {
    text-align: left;
  }
}

.acm-user-benefits-blur {
  position: absolute;
  width: 234px;
  height: 234px;
  background: radial-gradient(circle, rgba(26, 166, 146, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  top: 100px;
  left: 10%;
  pointer-events: none;
}

.acm-user-tab-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-12);
}

.acm-user-tab-container {
  display: flex;
  gap: var(--spacing-4);
  background: var(--color-white);
  padding: 10px 9px;
  border-radius: 38px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 768px) {
  .acm-user-tab-container {
    gap: 8px;
    padding: 6px;
    border-radius: 28px;
  }
}

.acm-user-tab-slider {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 280px;
  height: calc(100% - 20px);
  background: linear-gradient(71deg, #104E43 12%, #2E8274 67%, #15A590 94%);
  border-radius: 28px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.acm-user-tab-slider.acm-slide-right {
  transform: translateX(296px);
  width: 280px;
}
@media (max-width: 768px) {
  .acm-user-tab-slider {
    width: calc(50% - 7px);
    left: 6px;
    top: 6px;
    height: calc(100% - 12px);
    border-radius: 24px;
  }
  .acm-user-tab-slider.acm-slide-right {
    transform: translateX(calc(100% + 8px));
    width: calc(50% - 9px);
  }
}

.acm-user-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 280px;
  position: relative;
  z-index: 1;
  height: 60px;
  padding: 14px 24px;
  border-radius: 38px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
}
.acm-user-tab.acm-active {
  background: transparent;
  color: var(--color-white);
}
.acm-user-tab:not(.acm-active) {
  background: transparent;
  color: #535353;
}
.acm-user-tab:not(.acm-active):hover {
  background: transparent;
}
@media (max-width: 768px) {
  .acm-user-tab {
    width: auto;
    flex: 1;
    height: 44px;
    padding: 10px 16px;
    gap: 8px;
    font-size: var(--font-size-sm);
    border-radius: 24px;
  }
}

.acm-user-tab-arrow {
  width: 7px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .acm-user-tab-arrow {
    width: 5px;
    height: 9px;
  }
  .acm-user-tab-arrow svg {
    width: 5px;
    height: 9px;
  }
}

.acm-user-tab-content {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.acm-user-tab-content.acm-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.acm-user-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: var(--spacing-4);
  max-width: 1100px;
  margin: 0 auto;
}

.acm-user-feature-card {
  border: 1px solid #ebf7f3;
  border-radius: 10px;
  padding: var(--spacing-6);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.acm-user-feature-card.acm-full-width {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr auto;
  gap: var(--spacing-6);
  align-items: start;
  min-height: 280px;
}
.acm-user-feature-card.acm-full-width .acm-user-feature-link-wrapper {
  grid-column: 2;
  justify-self: end;
}
@media (max-width: 768px) {
  .acm-user-feature-card.acm-full-width {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .acm-user-feature-card.acm-full-width .acm-user-feature-link-wrapper {
    grid-column: 1;
  }
}
.acm-user-feature-card.acm-coming-soon {
  opacity: 0.6;
}

.acm-user-feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: var(--spacing-4);
}
@media (max-width: 768px) {
  .acm-user-feature-title {
    font-size: 16px;
  }
}

.acm-user-feature-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.acm-user-feature-image-masking {
  position: static;
  min-height: 300px;
}
@media (max-width: 768px) {
  .acm-user-feature-image-masking {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    min-height: auto;
  }
}

.acm-masking-screenshot-input {
  position: absolute;
/*  left: calc(5% + min(380px, 42%));*/
  bottom: 100px;
  width: min(450px, 50%);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (max-width: 768px) {
  .acm-masking-screenshot-input {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.acm-masking-screenshot-wizard {
  position: absolute;
  left: 5%;
  bottom: 30px;
  width: min(460px, 50%);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
@media (max-width: 768px) {
  .acm-masking-screenshot-wizard {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.acm-user-feature-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-base);
  color: #ebf7f3;
  cursor: pointer;
  transition: text-shadow var(--transition-fast), color var(--transition-fast);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.acm-user-feature-link:hover {
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(9, 209, 170, 0.8),
    0 0 16px rgba(9, 209, 170, 0.5),
    0 0 24px rgba(9, 209, 170, 0.3);
}
.acm-user-feature-link:hover .acm-user-feature-link-icon {
  transform: rotate(45deg);
  filter: drop-shadow(0 0 6px rgba(9, 209, 170, 0.8));
}

.acm-user-feature-card > .acm-user-feature-link {
  margin-top: auto;
  align-self: flex-end;
}

.acm-user-feature-link-wrapper {
  margin-top: auto;
  align-self: flex-end;
}

.acm-user-feature-link-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(235, 247, 243, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-white);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.acm-coming-soon-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  opacity: 0.6;
  position: absolute;
  bottom: var(--spacing-6);
  right: var(--spacing-6);
}

.acm-user-feature-comparison {
  display: flex;
  gap: 8px;
  padding: var(--spacing-4);
}

.acm-user-feature-comparison-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 10px;
  width: 100px;
  opacity: 0.6;
}

.acm-user-feature-comparison-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 600;
  color: #231e19;
  margin-bottom: 6px;
}

.acm-user-feature-comparison-text {
  font-size: 5px;
  line-height: 2;
  color: #231e19;
}


.acm-confidential-computing {
  padding: var(--spacing-16) var(--spacing-16);
  position: relative;
}
.acm-confidential-computing .acm-container {
  position: relative;
}
@media (max-width: 768px) {
  .acm-confidential-computing {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-cc-background-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1064px;
  max-width: calc(100% - 48px);
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .acm-cc-background-box {
    max-width:100%;
	border-radius: 0px;
  }
}

.acm-cc-content {
  position: relative;
  z-index: 1;
  padding: var(--spacing-12);
}
@media (max-width: 768px) {
  .acm-cc-content {
    padding: var(--spacing-4) var(--spacing-2);
  }
}

.acm-cc-title {
  font-size: clamp(1.5rem, 1.35rem + 0.6vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.4;
  margin-bottom: var(--spacing-6);
}
@media (max-width: 768px) {
  .acm-cc-title {
    font-size: 18px;
    margin-bottom: var(--spacing-3);
  }
}

.acm-cc-description {
  font-size: var(--font-size-md);
  color: var(--color-white);
  text-align: center;
  line-height: 1.75;
  max-width: 850px;
  margin: 0 auto var(--spacing-10);
}
@media (max-width: 768px) {
  .acm-cc-description {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
  }
}

.acm-cc-diagram {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-8);
}

.acm-cc-diagram-image {
  max-width: 100%;
  width: 950px;
  height: auto;
  border-radius: 8px;
}

.acm-cc-notice {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--spacing-2);
  text-align: center;
}

.acm-cc-notice-icon {
  width: 24px;
  height: 21px;
  flex-shrink: 0;
}

.acm-cc-notice-text {
  font-size: 12px;
  color: var(--color-white);
  line-height: 1.5;
  max-width: 600px;
}

.acm-solution-intro {
  position: relative;
  padding: var(--spacing-40) var(--spacing-16);
}
.acm-solution-intro::before {
  content: "";
  position: absolute;
  width: 234px;
  height: 234px;
  left: calc(50% - 250px);
  top: 80px;
  background: radial-gradient(50% 50% at 50% 50%, #09D1AA 0%, rgba(9, 209, 170, 0) 100%);
  opacity: 0.3;
  filter: blur(27px);
  pointer-events: none;
	z-index: -1;
}
@media (max-width: 768px) {
  .acm-solution-intro {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-solution-intro-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-md);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto var(--spacing-16);
}
@media (max-width: 768px) {
  .acm-solution-intro-description {
    text-align: left;
  }
}

.acm-solution-point {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-12);
  align-items: center;
  margin-bottom: var(--spacing-20);
}
.acm-solution-point:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .acm-solution-point {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }
}

.acm-solution-point-content {
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .acm-solution-point-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .acm-solution-point-content {
    text-align: left;
  }
}

.acm-point-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(100deg, #3D9B8F 0%, #5BB5A0 50%, #7ACFB1 100%);
  padding: 4px 28px 4px 16px;
  margin-bottom: var(--spacing-4);
  height: 35px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}
@media (max-width: 1024px) {
  .acm-point-badge {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .acm-point-badge {
    justify-content: flex-start;
  }
}

.acm-point-label {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.01em;
  line-height: 28px;
}

.acm-point-number {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 28px;
}

.acm-solution-point-title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: var(--spacing-4);
}
@media (max-width: 768px) {
  .acm-solution-point-title {
    font-size: 16px;
  }
}

.acm-solution-point-description {
  font-size: var(--font-size-base);
  line-height: 1.7;
  opacity: 0.9;
}

.acm-solution-point-image {
  overflow: hidden;
}
.acm-solution-point-image img {
  width: 100%;
}

.acm-llm-logos-bubble {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 32px;
  position: relative;
}
.acm-llm-logos-bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #fff;
}

.acm-llm-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  align-items: center;
  justify-items: center;
}

.acm-llm-logo-item-bubble {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
}
.acm-llm-logo-item-bubble img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.acm-llm-logo-item-bubble.acm-openai {
  color: #000;
}
.acm-llm-logo-item-bubble.acm-gemini {
  color: #4285f4;
}
.acm-llm-logo-item-bubble.acm-claude {
  color: #d97706;
}
.acm-llm-logo-item-bubble.acm-grok {
  color: #000;
}
.acm-llm-logo-item-bubble.acm-llama {
  color: #000;
}

.acm-feature-card {
  background-color: var(--color-white);
  padding: var(--spacing-8);
  border-radius: var(--border-radius-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.acm-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.acm-flow {
  position: relative;
  padding: var(--spacing-40) var(--spacing-16);
}
.acm-flow::before {
  content: "";
  position: absolute;
  width: 234px;
  height: 234px;
  left: calc(50% - 250px);
  top: 80px;
  background: radial-gradient(50% 50% at 50% 50%, #09D1AA 0%, rgba(9, 209, 170, 0) 100%);
  opacity: 0.3;
  filter: blur(27px);
  pointer-events: none;
	z-index: -1;
}
@media (max-width: 768px) {
  .acm-flow {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-flow-subtitle {
  text-align: center;
  color: #ffffff;
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-12);
}
@media (max-width: 768px) {
  .acm-flow-subtitle {
    text-align: left;
    margin-bottom: var(--spacing-6);
  }
}

.acm-flow-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .acm-flow-grid {
    flex-direction: column;
    gap: 24px;
  }
}

.acm-flow-card {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.acm-flow-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #231e19;
  line-height: 32px;
  letter-spacing: 0.2px;
}

.acm-flow-content {
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.acm-flow-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acm-flow-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.acm-flow-dot {
  width: 6px;
  height: 6px;
  background-color: #231e19;
  border-radius: 50%;
  flex-shrink: 0;
}

.acm-flow-label {
  font-size: 16px;
  color: #535353;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.16px;
}

.acm-flow-text {
  font-size: 14px;
  color: #231e19;
  line-height: 24px;
  letter-spacing: 0.14px;
  margin: 0;
}

.acm-flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 14px;
}
.acm-flow-arrow svg {
  width: 8px;
  height: 14px;
}
@media (max-width: 1024px) {
  .acm-flow-arrow {
    transform: rotate(90deg);
  }
}

.acm-flow-note {
  text-align: right;
  color: #ffffff;
  font-size: 14px;
  margin-top: 16px;
}

.acm-pricing {
  position: relative;
  padding: var(--spacing-40) var(--spacing-16);
}
.acm-pricing::before {
  content: "";
  position: absolute;
  width: 234px;
  height: 234px;
  left: calc(50% - 250px);
  top: 80px;
  background: radial-gradient(50% 50% at 50% 50%, #09D1AA 0%, rgba(9, 209, 170, 0) 100%);
  opacity: 0.3;
  filter: blur(27px);
  pointer-events: none;
	z-index: -1;
}
@media (max-width: 768px) {
  .acm-pricing {
    padding: var(--spacing-10) var(--spacing-3);
  }
}

.acm-pricing-subtitle {
  text-align: center;
  color: #ffffff;
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-12);
}
@media (max-width: 768px) {
  .acm-pricing-subtitle {
    text-align: left;
  }
}

.acm-plan-comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-6);
  max-width: 920px;
  margin: 0 auto;
}

.acm-suite {
  margin-bottom: 96px;
}

.acm-suite-header-section {
  position: relative;
  padding: var(--spacing-40) 0 var(--spacing-20);
}
@media (max-width: 768px) {
  .acm-suite-header-section {
    padding: var(--spacing-20) 0 var(--spacing-8);
  }
  .acm-suite-header-section .acm-section-header {
    margin-bottom: 0;
  }
}
.acm-suite-header-section::before {
  content: "";
  position: absolute;
  width: 234px;
  height: 234px;
  left: calc(50% - 250px);
  top: 80px;
  background: radial-gradient(50% 50% at 50% 50%, #09D1AA 0%, rgba(9, 209, 170, 0) 100%);
  opacity: 0.3;
  filter: blur(27px);
  pointer-events: none;
	z-index: -1;
}

.acm-suite-main {
  padding: var(--spacing-16) var(--spacing-20);
  border-radius: var(--border-radius-2xl);
  margin: auto;
	max-width: 1311px;
  position: relative;
  overflow: hidden;
  background-color: #0D68A0;
  background-image: radial-gradient(ellipse at 90% 10%, rgba(9, 209, 170, 0.8) 0%, transparent 70%), radial-gradient(ellipse at 20% 30%, rgba(119, 0, 126, 0.9) 0%, transparent 60%), radial-gradient(circle at 50% 100%, rgba(13, 104, 160, 0.6) 0%, transparent 80%);
}
@media (max-width: 768px) {
  .acm-suite-main {
    padding: var(--spacing-6) var(--spacing-3);
    margin: 0 var(--spacing-2);
    border-radius: var(--border-radius-xl);
  }
}

.acm-suite-content {
  display: flex;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .acm-suite-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }
}

.acm-suite-left {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.acm-suite-tagline {
  font-weight: 700;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: var(--spacing-10);
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
}
@media (max-width: 768px) {
  .acm-suite-tagline {
    font-size: 13px;
    margin-bottom: var(--spacing-2);
  }
}

.acm-suite-logo-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-12);
}
@media (max-width: 768px) {
  .acm-suite-logo-title {
    margin-bottom: var(--spacing-3);
  }
}

.acm-suite-logo-icon {
  height: 70px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .acm-suite-logo-icon {
    height: 48px;
  }
}

.acm-suite-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-12);
  line-height: 30px;
  max-width: 456px;
}
@media (max-width: 768px) {
  .acm-suite-description {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-4);
  }
}

.acm-suite-right {
  position: absolute;
  right: 16px;
  bottom: 0;
  pointer-events: none;
}

.acm-suite-diagram-image {
  width: clamp(150px, 45vw, 450px);
  height: auto;
  display: block;
}

.acm-footer-cta {
  padding: var(--spacing-16) 0;
  position: relative;
  overflow: hidden;
  background-color: #0D68A0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(9, 209, 170, 0.85) 0%, transparent 70%), radial-gradient(ellipse at 50% 50%, rgba(13, 104, 160, 0.6) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(119, 0, 126, 0.95) 0%, transparent 70%);
}

.acm-footer-cta-bg {
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 726px;
  height: 736px;
  opacity: 0.5;
  pointer-events: none;
}
.acm-footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.acm-footer-cta .acm-container {
  position: relative;
  z-index: 1;
}

.acm-footer-cta-title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.acm-footer-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-12);
  align-items: center;
}
@media (max-width: 1024px) {
  .acm-footer-cta-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    justify-items: center;
  }
}
@media (max-width: 768px) {
  .acm-footer-cta-content {
    gap: var(--spacing-4);
  }
}

.acm-footer-cta-images {
  display: flex;
  gap: var(--spacing-4);
}
@media (max-width: 1024px) {
  .acm-footer-cta-images {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .acm-footer-cta-images {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
  }
}

.acm-footer-cta-image {
  width: 280px;
}
.acm-footer-cta-image img {
  width: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .acm-footer-cta-image {
    width: 240px;
  }
}
@media (max-width: 768px) {
  .acm-footer-cta-image {
    width: 100%;
    max-width: 280px;
  }
}

.acm-footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
@media (max-width: 1024px) {
  .acm-footer-cta-actions {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .acm-footer-cta-actions {
    padding: 0;
    width: 100%;
    max-width: 280px;
    gap: var(--spacing-2);
  }
}

.acm-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  min-width: 378px;
  max-width: 100%;
}
.acm-footer-cta-btn svg {
  width: 7px;
  height: 12px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .acm-footer-cta-btn {
    min-width: 320px;
  }
}
@media (max-width: 768px) {
  .acm-footer-cta-btn {
    min-width: 0;
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    gap: 8px;
  }
  .acm-footer-cta-btn svg {
    width: 5px;
    height: 10px;
  }
}

.acm-footer-cta-btn-white {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}
.acm-footer-cta-btn-white:hover {
  background: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.acm-footer-cta-btn-primary {
  background: linear-gradient(90deg, #1A7B6E 0%, #1AA692 50%, #1AA692 100%);
  color: var(--color-white);
  border: 1px solid #1AA692;
}
.acm-footer-cta-btn-primary:hover {
  background: linear-gradient(90deg, #156B5F 0%, #15a590 50%, #15a590 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 166, 146, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.acm-animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.acm-feature-popover {
  position: fixed;
  inset: unset;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(180, 180, 180, 0.95);
  border-radius: 40px;
  width: min(95vw, 1100px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 100, 100, 0.5) transparent;
  opacity: 0;
  transition: opacity 0.3s ease, display 0.3s ease allow-discrete, overlay 0.3s ease allow-discrete;
}
.acm-feature-popover::-webkit-scrollbar {
  width: 6px;
}
.acm-feature-popover::-webkit-scrollbar-track {
  background: transparent;
  margin: 40px 0;
}
.acm-feature-popover::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.5);
  border-radius: 3px;
}
.acm-feature-popover::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.7);
}
.acm-feature-popover:popover-open {
  display: block;
  opacity: 1;
}
.acm-feature-popover::backdrop {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease, display 0.3s ease allow-discrete, overlay 0.3s ease allow-discrete;
}
.acm-feature-popover:popover-open::backdrop {
  opacity: 1;
}
@media (max-width: 768px) {
  .acm-feature-popover {
    width: 95vw;
    max-height: 90vh;
    border-radius: 24px;
  }
}

@starting-style {
  .acm-feature-popover:popover-open {
    opacity: 0;
  }
  .acm-feature-popover:popover-open::backdrop {
    opacity: 0;
  }
}
body.acm-popover-open {
  overflow: hidden;
}

.acm-feature-popover-inner {
  position: relative;
  padding: 48px 80px 60px;
}
@media (max-width: 768px) {
  .acm-feature-popover-inner {
    padding: 32px 24px 40px;
  }
}

.acm-feature-popover-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #231e19;
  font-size: 24px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.acm-feature-popover-close:hover {
  opacity: 1;
}

.acm-feature-popover-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 52px;
  letter-spacing: 0.01em;
  color: #231e19;
  text-align: center;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .acm-feature-popover-title {
    font-size: 24px;
    line-height: 36px;
  }
}

.acm-feature-popover-title-bar {
  width: 64px;
  height: 2px;
  background: linear-gradient(191.48deg, #92d0b2 1.27%, #1aa692 49.05%, #24767b 96.86%);
  margin: 0 auto 40px;
}

.acm-feature-popover-section {
  margin-bottom: 32px;
}

.acm-feature-popover-section-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #231e19;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 16px;
}

.acm-feature-popover-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #231e19;
}

.acm-feature-popover-list {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #231e19;
  padding-left: 21px;
  margin: 0;
}
.acm-feature-popover-list li {
  margin-bottom: 0;
}

.acm-feature-popover-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .acm-feature-popover-cards {
    flex-direction: column;
  }
}

.acm-feature-popover-card {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.acm-feature-popover-card-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acm-feature-popover-card-icon svg {
  width: 24px;
  height: 24px;
}

.acm-feature-popover-card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.01em;
  color: #231e19;
  text-align: center;
}

.acm-feature-popover-card-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #231e19;
  text-align: center;
  padding: 0 16px;
}

.acm-feature-popover-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .acm-feature-popover-row {
    flex-direction: column;
  }
}

.acm-feature-popover-row-content {
  flex: 1;
  min-width: 0;
}

.acm-feature-popover-llm-logos {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
}
.acm-feature-popover-llm-logos .acm-llm-logos-bubble {
  width: 100%;
  padding: 28px 32px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.acm-feature-popover-llm-logos .acm-llm-logos-bubble::after {
  display: none;
}
.acm-feature-popover-llm-logos .acm-llm-logos-grid {
  gap: 16px 32px;
}
.acm-feature-popover-llm-logos .acm-llm-logo-item-bubble {
  font-size: 15px;
  font-weight: 600;
}
.acm-feature-popover-llm-logos .acm-llm-logo-item-bubble img {
  width: 100px;
  height: auto;
}
@media (max-width: 768px) {
  .acm-feature-popover-llm-logos {
    width: 100%;
    padding-top: 0;
  }
}

.acm-feature-popover-targets {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .acm-feature-popover-targets {
    flex-direction: column;
    gap: 24px;
  }
}

.acm-feature-popover-target-group {
  flex: 1;
}

.acm-feature-popover-target-badge {
  display: inline-block;
  background: #e8e8e8;
  border-radius: 24px;
  padding: 2px 12px 3px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #231e19;
  margin-bottom: 12px;
}

.acm-user-feature-image-dashboard {
  position: static;
  min-height: 200px;
}
@media (max-width: 768px) {
  .acm-user-feature-image-dashboard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    min-height: auto;
  }
}

.acm-dashboard-screenshot-main {
  position: absolute;
  left: 5%;
  bottom: 10px;
  width: min(450px, 50%);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
@media (max-width: 768px) {
  .acm-dashboard-screenshot-main {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.acm-dashboard-screenshot-sub {
  position: absolute;
  left: calc(5% + min(380px, 42%));
  bottom: 30px;
  width: min(400px, 45%);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media (max-width: 768px) {
  .acm-dashboard-screenshot-sub {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.acm-user-feature-image-cost {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.acm-cost-reduction-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.acm-cost-logo {
  width: 200px;
  height: auto;
  opacity: 0.4;
}

.acm-cost-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.5;
}

/* ========================================
   Footer Styles (based on template)
   ======================================== */
#footer {
  background-color: #231E19;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  line-height: 1;
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
  gap: 2rem;
  font-size: 14px;
}
@media (min-width: 961px) {
  #footer {
    padding-inline: clamp(1.25rem, 1.25rem + 1vw, 2.5rem);
    gap: 1rem;
    font-size: clamp(0.75rem, 0.375rem + 0.63vw, 0.875rem);
  }
}

#footer a {
  color: #fff;
  text-decoration: none;
}

.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 2.875rem;
}
@media (min-width: 961px) {
  .footer-container {
    padding-top: clamp(1.5rem, 1.5rem + 1vw, 1.5rem);
    gap: clamp(2.875rem, 2.875rem + 1vw, 5rem);
  }
}

.footer-container.wrapper {
  width: 100%;
}

/* Footer Top - Navigation Columns */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 1080px;
  gap: 2.5rem 4em;
}
@media (max-width: 960.99px) {
  .footer-top {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-inline: 2rem;
  }
}

.footer-top-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  flex-wrap: wrap;
}
@media (max-width: 960.99px) {
  .footer-top-menu {
    width: 100%;
  }
  .footer-top-menu.left,
  .footer-top-menu.center,
  .footer-top-menu.right {
    flex: 0 0 100%;
  }
}

.footer-top-menu.left,
.footer-top-menu.right {
  flex: 0 0 16rem;
}

.footer-top-menu.center {
  flex: 1;
}

.footer-top-menu dt {
  border-bottom: solid 1px #fff;
  position: relative;
  padding-bottom: 0.75em;
  font-weight: 600;
  width: 100%;
  margin-bottom: 0.5em;
  z-index: 0;
}

.footer-top-menu dt::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 20px;
  background-color: #AF2038;
  z-index: 1;
}

.footer-top-menu dt::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  height: 1px;
  width: 20px;
  background-color: #114F7C;
  z-index: 1;
}

.footer-top-menu dt a,
.footer-top-menu dt span {
  color: #fff;
  text-decoration: none;
}

.footer-top-menu dd {
  width: 100%;
}

.footer-top-menu dd a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-top-menu dd a:hover {
  opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 961px) {
  .footer-bottom {
    gap: clamp(0.75rem, 0.75rem + 1vw, 1rem);
  }
}
@media (max-width: 960.99px) {
  .footer-bottom {
    justify-content: center;
  }
}

.footer-bottom .logo {
  flex-shrink: 0;
}

.footer-bottom .logo-img {
  height: 32px;
  width: auto;
}

.footer-bottom-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 961px) {
  .footer-bottom-right {
    gap: clamp(1.5rem, 1.5rem + 1vw, 3rem);
  }
}
@media (max-width: 960.99px) {
  .footer-bottom-right {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.footer-bottom-text-link2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 0;
  font-size: 12px;
}
@media (min-width: 961px) {
  .footer-bottom-text-link2 {
    font-size: clamp(0.688rem, 0.5rem + 0.31vw, 0.75rem);
  }
}

.footer-bottom-text-link2 li:not(:last-child) a {
  border-right: solid 1px #8C8C8C;
}

.footer-bottom-text-link2 a {
  padding-inline: 0.75rem;
}
@media (min-width: 961px) {
  .footer-bottom-text-link2 a {
    padding-inline: clamp(0.375rem, 0.375rem + 1vw, 0.75rem);
  }
}

/* SNS and IMS badges */
.sns-ims {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
}

.sns {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (min-width: 961px) {
  .sns {
    gap: clamp(1.5rem, 1.5rem + 1vw, 1.5rem);
  }
}

.sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.sns a:hover {
  opacity: 0.7;
}

.sns img {
  width: 24px;
  height: 24px;
}

.ims {
  display: flex;
  align-items: center;
}

.ims img {
  height: 48px;
  width: auto;
}

/* Footer Copyright */
.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 24px;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-copyright {
    text-align: center;
    padding: 0 20px 24px;
  }
}

.footer-copyright .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* SP only logo in footer */
#footer .logo.sp-only {
  display: none;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  #footer .logo.sp-only {
    display: block;
  }
  #footer .logo.pc-only {
    display: none;
  }
}

#footer .logo.sp-only .logo-img {
  height: 28px;
  width: auto;
}

/* PC only utility */
.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
