@charset "UTF-8";
/**
 * ============================================
 * HOME.CSS - ホームページ専用スタイルシート
 * ============================================
 * 使用箇所: home/index.twig
 * 作成日: 2026-02-10
 * 
 * 新しいホームページ専用のスタイルシート。
 * 共通スタイルは top.css を参照してください。
 * ============================================
 */

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.header.for_pc {
  background: rgba(255, 255, 255, 0.92);
}

.header.show {
  background: rgba(255, 255, 255, 0.95);
}

.home {
  line-height: 1.55em;
  letter-spacing: normal;
}

.home .wrap {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }
}

/*home-fv----------------*/
.home-fv {
  position: relative;
  width: 100%;
  min-height: 672px;
  padding: 132px 0 80px;
  box-sizing: border-box;
  background:
    linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%),
    url('/assets-official/home/img/bg/background-linear.png') center 50% / 100% 275% no-repeat;
}

.home-fv__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  max-width: 1222px;
}

.home-fv__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 525px;
  max-width: 45%;
}

.home-fv__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 42px;
  font-weight: 700;
  color: rgb(54, 54, 72);
  margin: 0;
  white-space: nowrap;
}

.home-fv__heading-line {
  display: block;
  line-height: 62px;
}

.home-fv__description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #49495a;
  margin: 0;
  white-space: nowrap;
  margin-top: 24px;
}

.home-fv__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.home-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
  min-width: 200px;
}

.home-fv__btn--primary {
  background: linear-gradient(90deg, #067EC3 0%, #00A3CC 100%);
  border: none;
  color: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.2),
    0px 8px 10px -6px rgba(29, 95, 169, 0.2),
    0px 20px 25px -5px rgba(4, 116, 181, 0.2);
}

.home-fv__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: rgba(11, 122, 184, 0.4) 0px 6px 20px;
}

.home-fv__btn--secondary {
  background: rgb(255, 255, 255);
  color: rgb(54, 54, 72);
  border: 1px solid #d1d5db;
}

.home-fv__btn--secondary:hover {
  background: rgb(245, 245, 247);
  border-color: rgb(176, 176, 184);
}

/* Focus states for accessibility */
.home-fv__btn:focus-visible {
  outline: 2px solid #067ec3;
  outline-offset: 2px;
}

.home-fv__btn--secondary:focus-visible {
  outline-color: #363648;
}

.home-fv__note {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: #49495A;
  margin: 13px 0 0 12px;
  line-height: 18px;
}

.home-fv__note-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.home-fv__banner {
  flex: 1;
  min-width: 0;
  max-width: 695px;
}

.home-fv__banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet Large (1024px - 1300px) - Scale down, keep horizontal */
@media screen and (max-width: 1300px) {
  .home-fv__container {
    max-width: calc(100% - 80px);
    gap: 24px;
  }

  .home-fv__content {
    width: auto;
    max-width: 480px;
    flex-shrink: 0;
  }

  .home-fv__heading {
    font-size: 40px;
  }

  .home-fv__banner {
    flex: 1;
    min-width: 400px;
  }
}

/* Tablet Small (768px - 1024px) - Stack vertically */
@media screen and (max-width: 1024px) {
  .home-fv {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .home-fv__container {
    flex-direction: column;
    align-items: center;
    max-width: calc(100% - 64px);
    gap: 40px;
  }

  .home-fv__content {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .home-fv__heading {
    white-space: normal;
    align-items: center;
  }

  .home-fv__heading-line {
    line-height: 1.3;
  }

  .home-fv__description {
    white-space: normal;
    text-align: center;
  }

  .home-fv__cta {
    justify-content: center;
  }

  .home-fv__note {
    margin-left: 0;
    justify-content: center;
  }

  .home-fv__banner {
    flex: none;
    max-width: 600px;
    width: 100%;
    min-width: auto;
  }
}

/* Mobile styles - Using display:contents + order for reordering */
@media screen and (max-width: 767px) {
  .home-fv {
    display: block;
    padding: 80px 0 20px;
    min-height: auto;
    background:
      linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%),
      url('/assets-official/home/img/bg/background-linear.png') center top / cover no-repeat;
  }

  .home-fv__container {
    flex-direction: column;
    align-items: flex-start;
    max-width: calc(100% - 32px);
    position: relative;
    z-index: 1;
    gap: 0px;
  }

  /* Use display:contents to allow children to be reordered by parent flex */
  .home-fv__content {
    display: contents;
  }

  .home-fv__description  {
    text-align: left;
  }

  .home-fv__heading {
    align-items: start;
  }

  /* Reorder elements: heading(1, contains badge) → description(2) → banner(3) → cta(4) → note(5) */
  .home-fv__heading {
    order: 1;
    font-size: 29px;
    white-space: normal;
    margin: 0;
    text-align: left;
  }

  .home-fv__heading-line {
    line-height: 1.3;
  }

  .home-fv__description {
    order: 2;
    line-height: 1.63;
    margin: 18px 0 0 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .home-fv__banner {
    order: 3;
    flex: none;
    width: calc(100% + 32px);
    max-width: none;
    min-width: auto;
    margin: 8px -16px 0;
  }

  .home-fv__cta {
    order: 4;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }

  .home-fv__btn {
    width: 100%;
    font-weight: 700;
    min-width: auto;
  }

  .home-fv__note {
    order: 5;
    margin: 16px 0 0 10px;
    text-align: left;
  }
}

/*enterprise----------------*/
.enterprise {
  width: 100vw;
  background: #ffffff;
  padding-top: 40px;
}

.enterprise .enterprise-title {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.company_logo_top,
.company_logo_bottom {
  align-items: center;
  display: flex;
  margin-top: 32px;
}

.enterprise .company_logo_wrap {
  align-items: center;
  display: flex;
}

.enterprise .company_logo_wrap .company_logo_item {
  width: auto;
  height: auto;
  margin: 0 26px;
}

.company_logo_item {
  mix-blend-mode: multiply !important;
}

.company_logo_top .company_logo_wrap.loop1 {
  -webkit-animation: loop1 60s -30s linear infinite;
  animation: loop1 60s -30s linear infinite;
}

.company_logo_top .company_logo_wrap.loop2 {
  -webkit-animation: loop2 60s linear infinite;
  animation: loop2 60s linear infinite;
}

.company_logo_bottom .company_logo_wrap.loop1 {
  -webkit-animation: loop1 60s -30s linear infinite;
  animation: loop1 60s -30s linear infinite;
  animation-direction: reverse;
}

.company_logo_bottom .company_logo_wrap.loop2 {
  -webkit-animation: loop2 60s linear infinite;
  animation: loop2 60s linear infinite;
  animation-direction: reverse;
}

.enterprise .company_logo_wrap .company_logo_item img {
  width: 90px;
  height: auto;
}

@-webkit-keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 767px) {
  .company_logo_top {
    margin-top: 24px;
  }

  .company_logo_bottom {
    margin-top: 16px;
  }
}

/* ======== Customer Concern ======== */
.customer-concern {
  padding: 80px 0 0;
}

.customer-concern__container {
  width: calc(100% - 224px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customer-concern__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #333333;
}

.customer-concern__title span {
  color: #0099dd;
}

.customer-concern__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  overflow: visible;
  padding-top: 45px;
}

.customer-concern__card {
  width: 224px;
  height: 244px;
  background: #F4F6F8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px 0;
  gap: 16px;
  overflow: visible;
  position: relative;
}

.customer-concern__card-image {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  position: absolute;
  bottom: calc(100% - 200px + 35px);
  left: 50%;
  transform: translateX(-50%);
}

.customer-concern__card-image img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.customer-concern__card-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #333333;
  padding: 0 12px;
  margin-top: auto;
}

.customer-concern__solution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  margin-top: 40px;
}

.customer-concern__solution-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
}

.customer-concern__solution-text span {
  color: #0099dd;
}

.customer-concern__solution-logo {
  height: 52px;
  padding-bottom: 8px;
}

.customer-concern__solution-logo img {
  height: 100%;
}

.customer-concern__arrow {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-concern__arrow img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======== Customer Concern - Responsive ======== */
@media screen and (max-width: 1280px) {
  .customer-concern__container {
    width: calc(100% - 32px);
  }
}

@media screen and (max-width: 1100px) {
  .customer-concern__container {
    width: 100%;
  }
  .customer-concern__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .customer-concern__cards {
    padding-left: 16px;
    padding-top: 55px;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .customer-concern__cards::-webkit-scrollbar {
    display: none;
  }

  .customer-concern__card {
    flex-shrink: 0;
  }

  .customer-concern__card:last-child {
    margin-right: 16px;
  }

  .customer-concern__solution {
    flex-direction: column;
    padding: 18px 0 18px;
  }
}

/* ======== Solution Section ======== */
.solution-section {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
  padding: 80px 112px;
  width: 100%;
  box-sizing: border-box;
  margin-top: -40px;
}

.solution-section__inner {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.solution-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.solution-section__label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #067ec3;
  text-align: center;
}

.solution-section__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: #363648;
  text-align: center;
  margin: 0;
}

.solution-section__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.solution-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.solution-item__image {
  width: 480px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

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

.solution-item__content {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-item__number {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #067ec3;
}

.solution-item__heading {
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  color: #334155;
  margin: 0;
}

.solution-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #49495a;
  margin: 0;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .solution-section {
    padding: 80px 40px;
  }
  
  .solution-item {
    gap: 24px;
  }
  
  .solution-item__image {
    width: 45%;
    height: auto;
    aspect-ratio: 480 / 300;
    flex-shrink: 0;
  }
  
  .solution-item__content {
    width: 55%;
    flex: 1;
  }
  
  .solution-item__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .solution-section {
    padding: 80px 16px;
  }
  
  .solution-section__inner {
    gap: 40px;
  }
  
  .solution-section__items {
    gap: 40px;
  }
  
  .solution-item {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  
  /* Force Image on TOP for ALL items (including Item 2) */
  .solution-item__image {
    width: 100%;
    height: auto;
    aspect-ratio: 358 / 223.75;
    border-radius: 12px;
    order: 1;
  }
  
  .solution-item__content {
    width: 100%;
    gap: 8px;
    order: 2;
  }
  
  .solution-item__heading {
    font-size: 24px;
    line-height: 130%;
  }
  
  .solution-item__heading br {
    display: none;
  }
}

/* ======== Conversation Experience ======== */
.conversation-exp {
  padding: 80px 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.conversation-exp__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1216px;
}

.conversation-exp__label {
  font-size: 16px;
  font-weight: 700;
  color: #067ec3;
  letter-spacing: 0.7px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.conversation-exp__title {
  font-size: 36px;
  font-weight: 700;
  color: #363648;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.conversation-exp__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #363648;
  line-height: 1.3;
  text-align: center;
}

.conversation-exp__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1216px;
  justify-content: center;
}

.conversation-exp__card {
  background: #f4f6f8;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(50% - 10px);
  box-sizing: border-box;
}

.conversation-exp__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 24px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #1558eb 0%, #08b3d0 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
}

.conversation-exp__badge-sp {
  display: none;
}

.conversation-exp__badge-pc {
  display: inline-flex;
}

.conversation-exp__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin: 0;
}

.conversation-exp__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #49495a;
  line-height: 1.6;
}

.conversation-exp__card-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: auto;
}

.conversation-exp__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .conversation-exp {
    padding: 80px 40px;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .conversation-exp {
    padding: 80px 16px;
    gap: 40px;
  }

  .conversation-exp__grid {
    flex-direction: column;
    gap: 12px;
  }

  .conversation-exp__card {
    width: 100%;
    padding: 16px;
    gap: 8px;
    border: none;
  }

  .conversation-exp__badge {
    font-size: 14px;
  }

  .conversation-exp__badge-sp {
    display: inline-flex;
  }

  .conversation-exp__badge-pc {
    display: none;
  }

  .conversation-exp__card-title {
    color: #363648;
  }

  .conversation-exp__card-img {
    border-radius: 12px;
  }
}

/* ======== Functions Section ======== */
.functions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 112px 80px;
  gap: 40px;
  background: #ffffff;
  box-sizing: border-box;
}

.functions__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1216px;
  gap: 12px;
}

.functions__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  color: #067ec3;
  text-transform: uppercase;
  text-align: center;
}

.functions__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #363648;
  text-align: center;
  margin: 0;
}

.functions__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #363648;
  text-align: center;
  margin: 0;
}

/* Cards grid: 3 top + 2 bottom centered */
.functions__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1216px;
  gap: 16px;
}

.functions__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((100% - 32px) / 3);
  padding: 22px;
  gap: 6px;
  background: #ffffff;
  border: 2px solid #e6f2f9;
  border-radius: 16px;
  box-sizing: border-box;
}

.functions__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4px;
}

.functions__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.functions__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #363648;
  margin: 0;
}

.functions__card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #49495a;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* Extras box */
.functions__extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 896px;
  width: 100%;
  padding: 24px;
  gap: 16px;
  background: #f4f6f8;
  border-radius: 16px;
  box-sizing: border-box;
}

.functions__extras-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #49495a;
  margin: 0;
  text-align: center;
}

.functions__extras-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.functions__tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: calc((100% - 48px) / 4);
}

.functions__tag img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.functions__tag span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #363648;
}

/* Tablet Large (≤1300px) */
@media screen and (max-width: 1300px) {
  .functions {
    padding: 0 80px 80px;
  }
}

/* Tablet Medium (≤1100px) */
@media screen and (max-width: 1100px) {
  .functions {
    padding: 0 60px 80px;
  }
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .functions {
    padding: 0 40px 80px;
  }

  .functions__tag {
    width: calc((100% - 32px) / 3);  /* 3 columns at tablet */
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .functions {
    padding: 0 16px 80px;
    gap: 40px;
  }

  .functions__cards {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .functions__card {
    width: 100%;
  }

  .functions__card-header {
    justify-content: flex-start;
  }

  .functions__card-desc {
    text-align: left;
  }

  .functions__extras {
    max-width: 100%;
    align-items: flex-start;
  }

  .functions__extras-title {
    text-align: left;
  }

  .functions__extras-tags {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
  }

  .functions__tag {
    width: auto;
  }
}

/* ======== Security Section ======== */
.security {
  width: 100%;
  background: linear-gradient(to bottom, #172033, #23304c);
  padding: 80px 112px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.security__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1216px;
}

.security__label {
  font-size: 16px;
  font-weight: 700;
  color: #6fb7e1;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1;
  text-align: center;
}

.security__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  width: 100%;
}

.security__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
}

.security__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1216px;
}

.security__card {
  position: relative;
  flex: 1;
  max-width: 392px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

.security__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.security__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}

.security__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #a8b2ca;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.security__card-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: rgba(23, 170, 255, 0.2);
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security__card-icon img {
  width: 32px;
  height: 32px;
}

/* Tablet (≤1200px) */
@media (max-width: 1200px) {
  .security {
    padding: 80px 16px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .security {
    padding: 80px 16px;
  }

  .security__cards {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .security__card {
    width: 100%;
    max-width: 358px;
    padding: 24px;
  }

  .security__card-icon {
    width: 40px;
    height: 40px;
    border-bottom-left-radius: 8.5px;
  }

  .security__card-icon img {
    width: 24px;
    height: 24px;
  }
}

/* ======== Feature Section ======== */
.feature {
  background: linear-gradient(180deg, #EFF6FF 0%, #F8FBFF 100%);
}

.feature > .inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0 110px;
}

.feature__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1216px;
}

.feature__label {
  font-size: 16px;
  font-weight: 700;
  color: #067ec3;
  letter-spacing: 0.7px;
  text-align: center;
}

.feature__title {
  font-weight: 700;
  color: #363648;
  margin-bottom: 38px;
  font-size: 36px;
  text-align: center;
}

.feature > .inner span {
  color: #067EC3;
}

.feature > .inner .image_wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
}

.feature > .inner .chat_type_main {
  border-radius: 18px 18px 0 0;
  display: block;
  width: 100%;
}

.feature > .inner .chat_type_icon {
  position: absolute;
  bottom: -12px;
  left: -115px;
  z-index: 1;
  width: 171px;
}

.feature > .inner .chat_type_sp_wrap {
  display: none;
}

.feature > .inner .chat_type_icon_sp_icon {
  display: none;
}


@media screen and (min-width: 976px) {
  .chat_type_icon_sp {
    display: none;
  }

  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 975px) {
  .feature__header {
    gap: 10px;
    margin-bottom: 43px;
  }
  .feature__title {
      line-height: 47px;
  }
  .chat_type_icon_sp {
    display: block;
  }

  .chat_type_main {
    display: none !important;
  }

  .feature > .inner .chat_type_icon {
    display: none !important;
  }

  .feature > .inner .chat_type_icon_sp_icon {
    display: block !important;
  }

  .feature > .inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
    width: 90%;
  }
  
  .feature > .inner .image_wrap {
    margin-top: -42px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
  }
  
  .feature > .inner .image_wrap .chat_type_sp_wrap {
    display: block !important;
    position: relative;
    width: 100%;
  }
  
  .feature > .inner .image_wrap img.chat_type_icon_sp:first-of-type {
    position: relative;
  }
  
  .feature > .inner .image_wrap img:not(.chat_type_icon_sp_icon) {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }
  
  .feature > .inner .image_wrap .chat_type_sp_wrap .chat_type_icon_sp {
    border-radius: 18px 18px 0 0;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  .feature > .inner .image_wrap .chat_type_sp_wrap .chat_type_icon_sp_icon {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 25%;
    height: auto;
    max-width: none;
    z-index: 0;
    display: block !important;
    margin: 0;
  }
}

/* ======== CTA Section ======== */
.cta {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background:
    url('/assets-official/home/img/bg/background-linear.png') center / cover no-repeat,
    linear-gradient(180deg, #1DA0CC 0%, #007ACC 100%);
  background-blend-mode: color-burn, normal;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta__heading {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.cta__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 836px;
}

.cta__card {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.cta__card--info {
  flex: 0 0 452px;
  width: 452px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.cta__card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 174px;
  height: 234px;
  flex-shrink: 0;
}

.cta__card-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}

.cta__card-img-wrap {
  width: 148px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}

.cta__card-img-wrap img {
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* cta01 (book) = 210px wide */
.cta__card-col:first-child .cta__card-img-wrap img {
  width: 210px;
}

/* cta02 (robot) = 160px wide */
.cta__card-col:last-child .cta__card-img-wrap img {
  width: 160px;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__btn--white {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #363648;
  width: 174px;
}

.cta__btn--trial {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #067ec3;
  min-width: 216px;
}

.cta__card--trial {
  flex: 0 0 360px;
  width: 360px;
  height: 300px;
  background: rgba(6, 126, 195, 0.4);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.cta__trial-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta__trial-arrow {
  width: 11px;
  height: auto;
}

.cta__trial-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.cta__trial-text strong {
  font-weight: 700;
  font-size: 16px;
}

.cta__trial-img-wrap {
  width: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cta__trial-img-wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 424px;
  height: auto;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .cta__cards {
    flex-direction: column;
    max-width: 500px;
  }

  .cta__card--info,
  .cta__card--trial {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 40px 16px;
    max-width: 100%;
  }

  .cta__cards {
    max-width: 358px;
  }

  .cta__card--info {
    height: auto;
    min-height: 316px;
    padding: 30px 16px;
    gap: 16px;
    align-items: flex-end;
  }

  .cta__card-col {
    width: auto;
    height: auto;
    min-height: 256px;
    flex: 1;
  }

  .cta__card-label {
    white-space: normal;
  }

  .cta__card-img-wrap img {
    width: 130px;
  }

  .cta__btn--white {
    width: 100%;
    max-width: 155px;
  }

  .cta__card--trial {
    height: auto;
    min-height: 300px;
  }

  .cta__trial-img-wrap img {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
/* ======== Works Section ======== */
.works {
  background: linear-gradient(to bottom, #eff6ff, #f8fbff);
  padding: 80px 112px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.works__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1216px;
}

.works__label {
  font-size: 16px;
  font-weight: 700;
  color: #067ec3;
  letter-spacing: 0.7px;
  text-align: center;
  line-height: 1;
}

.works__title {
  font-size: 36px;
  font-weight: 700;
  color: #363648;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.3;
}

.works__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1216px;
  margin-top: 39px;
  margin-bottom: 24px;
}

.works__card {
  width: 1000px;
  max-width: 100%;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
  margin: 0;
}

.works__card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.works__card a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  padding-right: 12px;
  gap: 24px;
}

.works__card-image {
  flex-shrink: 0;
  width: 320px;
  height: 210px;
  overflow: hidden;
}

.works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
  width: 100%;
}

.works__card-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.works__card-company {
  font-size: 12px;
  font-weight: 400;
  color: #374151;
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

.works__card-heading {
  font-size: 16px;
  font-weight: 700;
  color: #363648;
  text-align: left;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.works__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #067ec3;
  border-radius: 20px;
  padding: 4px 21px;
  width: fit-content;
}

.works__card-tag span {
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 400;
  color: #067ec3;
  text-align: left;
  white-space: nowrap;
}

.works__card-logo {
  flex-shrink: 0;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: multiply;
}

.works__card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.works__card-logo img[alt="川場リゾート株式会社"] {
  width: 116px;
}

.works__more-wrap {
  display: flex;
  justify-content: center;
}

.works__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  background: #067ec3;
  color: #fff;
  border: 1px solid #067ec3;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  min-width: 144px;
  height: 37px;
  box-sizing: border-box;
}

.works__more-btn:hover {
  opacity: 0.85;
}

.works__more-btn svg {
  flex-shrink: 0;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .works {
    padding: 80px 40px;
  }

  .works__card {
    width: 100%;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .works {
    padding: 80px 16px;
  }

  .works__cards {
    gap: 20px;
  }

  .works__card {
    height: auto;
    border-radius: 18px;
  }

  .works__card a {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    gap: 15px;
  }

  .works__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 351 / 210;
  }

  .works__card-content {
    padding: 0 4px 0 22px;
    gap: 17px;
  }

  .works__card-logo {
    width: 70%;
    height: auto;
  }

  .works__card:first-child .works__card-logo {
    padding: 30px 0;
  }
}

/* ======== Flow Section ======== */
.flow {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #FFFFFF;
}

.flow__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1216px;
  gap: 12px;
}

.flow__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  color: #067ec3;
  text-transform: uppercase;
  text-align: center;
}

.flow__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #363648;
  text-align: center;
  margin: 0;
}

.flow__subtitle {
  font-size: 16px;
  color: #363648;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.flow__img {
  width: 100%;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .flow {
    padding: 50px 16px;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .flow {
    padding: 50px 16px;
  }
  .flow__img {
  width: 90%;
}
}

/* ======== Common Utility Classes ======== */

/* Move Page Button */
a.move_page_bt {
  position: relative;
  color: #fff;
  background-color: #067EC3;
  border: 1px solid #067EC3;
  border-radius: 20px;
  padding: 4px 40px 4px 30px;
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

.move_page_bt_wrap.for_sp a.move_page_bt {
  display: inline-block;
  margin-top: 20px;
}

a.move_page_bt.for_pc {
  width: unset;
  min-width: unset;
  margin-right: 0;
}

a.move_page_bt:hover {
  color: #067EC3;
  background-color: #fff;
  border: 1px solid #067EC3;
}

a.move_page_bt svg {
  position: absolute;
  right: 20px;
  top: 14px;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

a.move_page_bt:hover svg {
  position: absolute;
  right: 16px;
  top: 14px;
}

a.move_page_bt svg line {
  stroke: #fff;
}

a.move_page_bt:hover svg line {
  stroke: #067EC3;
}

.move_page_bt_wrap {
  text-align: center;
}

/* Label Button */
p.label_bt {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f0f4f8;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #067EC3;
}

/* Fadein Animation */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* ======== Plan Section ======== */
.plan {
  background-color: #fff;
  padding: 80px 32px;
  box-sizing: border-box;
}

.plan__inner {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Header */
.plan__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.plan__label {
  font-size: 16px;
  font-weight: 700;
  color: #067ec3;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-align: center;
  line-height: 1;
}

.plan__title {
  font-size: 36px;
  font-weight: 700;
  color: #363648;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.plan__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #363648;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* Cards Row */
.plan__cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

/* Single Card */
.plan__card {
  position: relative;
  width: 286px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  flex-shrink: 0;
}

.plan__card--featured {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #009a7c, #098bcb);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.plan__card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Top Section */
.plan__card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tags */
.plan__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
}

.plan__tag--gray {
  background-color: #f3f4f6;
  color: #363648;
}

.plan__tag--blue {
  background-color: #ecf8ff;
  color: #067ec3;
}

.plan__tag--gradient {
  background: linear-gradient(to right, rgba(0, 154, 124, 0.1), rgba(9, 139, 203, 0.1));
  color: #098bcb;
}

/* Card Name */
.plan__card-name {
  font-size: 20px;
  font-weight: 700;
  color: #363648;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

/* Price Block */
.plan__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan__price-row {
  display: flex;
  align-items: baseline;
}

.plan__price-prefix {
  font-size: 14px;
  font-weight: 500;
  color: #363648;
  margin-right: 4px;
}

.plan__price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #363648;
  line-height: 1;
}

.plan__price-suffix {
  font-size: 16px;
  font-weight: 500;
  color: #363648;
  margin-left: 2px;
}

.plan__price-note {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.3;
}

/* Feature List */
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan__feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #363648;
  line-height: 1;
}

.plan__check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Recommend Badge */
.plan__recommend-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #009a7c, #098bcb);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
  height: 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

/* Options Section */
.plan__options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan__options-box {
    background: #f4f6f8;
    border-radius: 16px;
    padding: 18px 23px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan__options-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  text-align: left;
}

.plan__options-grid {
  display: flex;
  gap: 16px;
}

.plan__option-item {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 13px;
    display: flex;
    flex-direction: column;
}

.plan__option-name {
  font-size: 14px;
  font-weight: 400;
  color: #363648;
  margin: 0;
  line-height: 1.4;
}

.plan__option-price {
  font-size: 14px;
  font-weight: 400;
  color: #363648;
  margin: 0;
  line-height: 1.4;
}

.plan__option-price strong {
  font-weight: 700;
}

.plan__disclaimer {
  font-size: 14px;
  font-weight: 400;
  color: #49495a;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ===== Plan Section - Tablet Responsive Fix ===== */
@media screen and (max-width: 1248px) and (min-width: 769px) {
  .plan {
    padding: 80px 40px;
  }

  .plan__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .plan__card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    width: auto;
  }

  .plan__card--featured {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .plan__options-grid {
    flex-wrap: wrap;
  }

  .plan__option-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .plan {
    padding: 80px 16px;
  }

  .plan__cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .plan__card {
    width: 100%;
    max-width: 358px;
  }

  .plan__card-top {
      gap: 12px;
  }

  .plan__options-grid {
    flex-direction: column;
    gap: 10px;
  }

  .plan__option-item {
    width: 100%;
    padding: 13px 16px;
  }

  .plan__disclaimer {
    text-align: left;
    line-height: 1.6;
  }
  .plan__options-box {
    gap:12px;
  }
}

/* ======== Banner ======== */
.banner {
  width: 100%;
  max-width: 1248px;
  margin: 0px auto 80px;
  padding: 0 16px;
}

.banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 112px;
  gap: 40px;
  border-radius: 24px;
  background: 
    url('/assets-official/home/img/bg/background-linear.png') center/cover no-repeat,
    linear-gradient(180deg, #1da0cc 0%, #007acc 100%);
  background-blend-mode: multiply, normal;
  border: none;
  box-shadow: 
    inset 0 0 0 4px rgba(255, 255, 255, 0.2),
    0px 8px 10px -6px rgba(29, 95, 169, 0.2),
    0px 20px 25px -5px rgba(4, 116, 181, 0.2);

  overflow: hidden;
}

.banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.banner__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner__tag-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ddf2ff;
  white-space: nowrap;
}

.banner__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
}

.banner__subheading {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
}

.banner__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0px 8px 10px -6px rgba(29, 95, 169, 0.2),
    0px 20px 25px -5px rgba(4, 116, 181, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.banner__button:hover {
  opacity: 0.85;
}

.banner__button-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #067ec3;
  white-space: nowrap;
}

.banner__robot {
  position: absolute;
  right: 5px;
  bottom: -72px;
  width: 275px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
}

.banner__robot-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 257px;
  height: 257px;
  object-fit: contain;
}

.banner__robot-blur {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 257px;
  height: 257px;
  object-fit: contain;
  filter: blur(26px);
  opacity: 0.5;
  z-index: -1;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .banner__inner {
    padding: 60px 40px;
  }

  .banner__heading {
    font-size: 30px;
  }

  .banner__robot {
    width: 200px;
    height: 200px;
  }

  .banner__robot-img,
  .banner__robot-blur {
    width: 180px;
    height: 180px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .banner {
    max-width: 100%;
  }

  .banner__inner {
    padding: 40px 16px;
    gap: 40px;
    align-items: center;
  }

  .banner__content {
    order: 2;
  }

  .banner__heading {
    font-size: 24px;
    line-height: 1.3;
  }

  .banner__subheading {
    font-size: 16px;
    line-height: 1.6;
  }

  .banner__button {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .banner__robot {
    position: absolute;
    bottom: 55px;
    right: -35px;
    top: auto;
    left: auto;
    margin: 0;
    width: 120px;
    height: auto;
  }

  .banner__robot-img {
    max-width: 100%;
    width: 112px;
    height: auto;
    display: block;
  }

  .banner__robot-blur {
    width: 112px;
    height: 112px;
    filter: blur(13px);
  }
}