/* ============================================================
   Ambition Theme - Main Stylesheet
   株式会社アンビション (Ambition Co., Ltd.)
   Logistics DX Company
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  --color-primary: #2472f5;
  --color-primary-dark: #1a5cd4;
  --color-primary-light: #4a8ff7;
  --color-accent: #ffc600;
  --color-accent-dark: #e6b300;
  --color-text-dark: #282828;
  --color-text-gray: #7b7b7b;
  --color-red: #c62929;
  --color-white: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-bg-gray: #ececec;
  --color-bg-light-blue: #ddefff;
  --color-footer-bg: #282828;
  --color-border: #e0e0e0;
  --color-border-light: #efefef;
  --color-hero-top: #a1d3ff;
  --color-hero-bottom: #5bb4ff;

  --gradient-blue: linear-gradient(135deg, #2472f5 0%, #1a5cd4 100%);
  --gradient-blue-header: linear-gradient(
    90deg,
    #2472f5 0%,
    #1a5cd4 50%,
    #1346a8 100%
  );

  --font-primary: "Noto Sans JP", sans-serif;
  --font-en: Arial, "Noto Sans JP", sans-serif;

  --max-width: 1200px;
  --header-height: 72px;

  --section-padding: 80px 0;
  --section-padding-sm: 50px 0;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.anim {
  opacity: 0;
}

.anim.is-visible {
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.anim-up.is-visible { animation-name: fadeInUp; }
.anim-left.is-visible { animation-name: fadeInLeft; }
.anim-right.is-visible { animation-name: fadeInRight; }
.anim-fade.is-visible { animation-name: fadeIn; }

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* SP専用改行 / PC専用改行 */
.br-sp { display: none; }
.br-pc { display: block; }
@media (max-width: 768px) {
  .br-sp { display: block; }
  .br-pc { display: none; }
  p, .sv-desc, .sv-intro, .sv-feat-cap, .sv-card-desc, .sv-solve-box, .sv-benefit p {
    text-align: justify;
  }
}

/* 全ページ共通 タイトル */
.page-eyebrow {
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: 38px;
  color: var(--color-primary);
  line-height: 1;
  text-align: center;
}

.page-eyebrow-sub {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
  /* margin-top: 8px; */
  text-align: center;
}

@media (max-width: 768px) {
  .page-eyebrow {
    font-size: 37px;
  }

  .page-eyebrow-sub {
    font-size: 23px;
    margin-top: 0;
  }
}

/* ============================================================
   2. CSS Reset / Base
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

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

a:hover {
  opacity: 0.85;
}

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

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

table {
  border-collapse: collapse;
  width: 100%;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-en {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.section-en--blue {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  font-size: 15px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 198, 0, 0.4);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  font-size: 15px;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Site Main */
.site-main {
  min-height: calc(100vh - var(--header-height) - 200px);
}

/* ============================================================
   4. Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--gradient-blue-header);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.header-logo:hover {
  opacity: 1;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--color-white);
}

.logo-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list li a {
  display: block;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  padding: 10px 16px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: opacity var(--transition-fast);
}

.nav-list li a:hover {
  opacity: 0.8;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--transition-base);
  flex-shrink: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.header-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 198, 0, 0.4);
}

.header-contact-btn .mail-icon {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 19px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ============================================================
   4b. Mobile Menu
   ============================================================ */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.35s ease;
    overflow-y: auto;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-blue-header);
    padding: 0 16px;
    height: 60px;
    flex-shrink: 0;
  }

  .mobile-menu-header .header-logo {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
  }

  .mobile-menu-header .logo-text {
    font-size: 22px;
  }

  .mobile-menu-header .logo-sub {
    font-size: 10px;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-menu-close span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    left: 50%;
    top: 50%;
  }

  .mobile-menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-nav {
    flex: 1;
    padding: 20px 24px 40px;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list li {
    border-bottom: 1px solid var(--color-primary);
  }

  .mobile-menu-list li:first-child {
    border-top: none;
  }

  .mobile-menu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
  }

  .mobile-menu-list li a:hover {
    opacity: 1;
    color: var(--color-primary);
  }

  .mobile-menu-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .mobile-menu-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
  }

  .mobile-menu-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-primary);
    border-top: 2px solid var(--color-primary);
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-menu-footer {
    background: var(--color-footer-bg);
    color: var(--color-white);
    padding: 30px 24px;
    text-align: center;
    flex-shrink: 0;
  }

  .mobile-menu-footer-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .mobile-menu-footer-logo-text {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    color: var(--color-primary);
  }

  .mobile-menu-footer-logo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
  }

  .mobile-menu-footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .mobile-menu-footer-tel {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .mobile-menu-footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
  }

  .mobile-menu-footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
  }
}

/* ============================================================
   5. Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding-top: 60px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 19px;
}

.footer-info {
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-logo-text {
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.footer-logo-sub {
  font-size: 12px;
  /* color: rgba(255, 255, 255, 0.7); */
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-address {
  font-size: 13px;
  /* color: rgba(255, 255, 255, 0.7); */
  line-height: 1.1;
  margin-bottom: 8px;
}

.footer-tel {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}

.footer-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 198, 0, 0.4);
}

.footer-contact-btn .mail-icon {
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 50px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  /* padding: 5px 0; */
  transition: color var(--transition-fast);
  font-weight: 500;
}

.footer-nav-col a:first-child {
  font-weight: 700;
  color: var(--color-white);
  /* margin-bottom: 4px; */
  font-size: 15px;
}

.footer-nav-col a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-privacy:hover {
  color: var(--color-white);
  opacity: 1;
}

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

/* ============================================================
   6. Page Top Button
   ============================================================ */
.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #015eea 0%, #00c0fa 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.page-top-arrow {
  width: 12px;
  height: 12px;
  border-left: 2.5px solid var(--color-white);
  border-top: 2.5px solid var(--color-white);
  transform: rotate(45deg);
  margin-top: 4px;
}

.page-top-text {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.page-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-btn:hover {
  background: linear-gradient(180deg, #0150cc 0%, #00a8dd 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* ============================================================
   7. Page Header (shared subpage banner)
   ============================================================ */
.page-header {
  background: var(--gradient-blue);
  padding: 50px 20px;
  text-align: center;
  color: var(--color-white);
}

.page-header-en {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.page-header-ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ============================================================
   8. Front Page - Hero Area
   ============================================================ */
.hero-area {
  position: relative;
  height: 755px;
  overflow: visible;
}

.hero {
  position: relative;
  height: 755px;
  background: url("../img/hero_bg.png") center/cover no-repeat;
  padding: 0 99px;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 124px;
  text-shadow: 2px 3px 4px rgba(0, 38, 96, 0.32);
}

.hero-line1 {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-line1-text {
  font-size: 50px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 1px;
}

.hero-up {
  height: 130px;
  width: auto;
  margin-left: 4px;
  vertical-align: bottom;
  position: relative;
  top: 24px;
  filter: drop-shadow(0 4px 3px rgba(0, 40, 120, 0.22));
}

.hero-line2 {
  font-weight: 900;
  color: var(--color-white);
  margin-top: 15px;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  letter-spacing: -1px;
}

.hero-line2-large {
  font-size: 52px;
  line-height: 1;
}

.hero-times {
  margin: 0 15px;
}

.hero-line2-no {
  font-size: 32px;
  line-height: 1;
}

.hero-line2-partner {
  font-size: 46px;
  line-height: 1;
}

.hero-line2-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-line2-col .hero-tag {
  margin-top: 8px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.55;
  margin-top: 18px;
  text-shadow: 1px 2px 3px rgba(0, 38, 96, 0.3);
}

.hero-illustration {
  position: absolute;
  right: 59px;
  top: 23px;
  width: 381px;
  height: 418px;
  z-index: 2;
}

/* ============================================================
   9. Front Page - Point Cards
   ============================================================ */
.points-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 35px;
  justify-content: center;
  padding: 0 100px;
  margin-top: -218px;
}

.point-card {
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  width: 280px;
  overflow: hidden;
  padding-bottom: 18px;
  box-shadow: 0 6px 16px rgba(0, 40, 120, 0.12);
  text-align: center;
}

.point-ribbon {
  display: flex;
  align-items: baseline;
  background: var(--color-primary);
  width: 65%;
  height: 46px;
  padding-left: 20px;
  margin-top: 15px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}

.point-ribbon-label {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  color: var(--color-white);
  line-height: 1;
  margin-right: 2px;
}

.point-ribbon-num {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 46px;
  color: var(--color-white);
  line-height: 0.85;
}

.point-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 144px;
  margin-top: 10px;
}

.point-card-img img {
  max-height: 152px;
  max-width: 216px;
  object-fit: contain;
}

.point-card-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 0 10px;
  letter-spacing: -0.5px;
}

/* ============================================================
   11. Front Page - Wall (Challenges) Section
   ============================================================ */
.wall-section {
  background: var(--color-bg-gray);
  padding: 132px 0 40px;
  position: relative;
}

.wall-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 140px;
}

.wall-heading {
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 45px;
}

.wall-heading-highlight {
  position: relative;
  display: inline;
  z-index: 0;
  font-size: 55px;
}

.wall-heading-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 18px;
  right: 8px;
  height: 36px;
  background: var(--color-accent);
  z-index: -1;
  width: 293px;
}


.wall-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.wall-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.wall-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
}

.wall-checklist li img {
  width: 32px;
  height: 27px;
  flex-shrink: 0;
}

.wall-person {
  width: 212px;
  flex-shrink: 0;
  margin-top: -80px;
}

/* ============================================================
   12. Front Page - CTA Band
   ============================================================ */
.cta-wrapper {
  background: var(--color-bg-gray);
}

.cta-section {
  background: var(--color-primary);
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  clip-path: polygon(0 0, 50% 42%, 100% 0, 100% 100%, 0 100%);
  margin-top: 0;
}

.cta-text {
  text-align: center;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.cta-text-prefix {
  font-size: 30px;
  font-weight: 400;
}

.cta-text-brand {
  font-size: 46px;
  font-weight: 700;
}

.cta-text-suffix {
  font-size: 30px;
  font-weight: 400;
}

/* ============================================================
   13. Front Page - Strength Section
   ============================================================ */
.strength-section {
  padding: 55px 0 0;
  text-align: center;
}

.strength-dots {
  display: none;
}

.strength-dots-wrapper {
  display: none;
}

.strength-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.strength-label {
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-align: center;
}

.section-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
}

.section-heading .num5 {
  font-size: 50px;
  color: var(--color-primary);
}

.strength-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-text-dark);
}

.strength-panel {
  background: var(--color-primary);
  border-radius: 14px;
  padding: 60px 20px 80px;
}

.strength-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 46px;
}

.strength-row:last-child {
  margin-bottom: 0;
}

.strength-card {
  background: var(--color-white);
  border-radius: 10px;
  width: 281px;
  height: 296px;
  padding: 30px 13px 0;
  position: relative;
  text-align: left;
  box-shadow: none;
  overflow: visible;
}

.strength-card:hover {
  transform: none;
  box-shadow: none;
}

.strength-badge {
  position: absolute;
  top: -22px;
  left: -12px;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 40, 120, 0.25);
}

.strength-badge span {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  color: var(--color-white);
  line-height: 1;
}

.strength-card-title {
  font-size: 19px;
  font-weight: 700;
  /* margin: 0 0 8px; */
  text-align: center;
  color: var(--color-text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.strength-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 118px;
  margin: 0 0 8px;
}

.strength-card-img img {
  max-height: 118px;
  max-width: 240px;
  object-fit: contain;
}

.strength-card-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text-dark);
}

/* ============================================================
   14. Front Page - Service Section
   ============================================================ */
.service-section {
  background: var(--color-bg-light-blue);
  padding: 65px 0 50px;
  margin-top: 65px;
}

.service-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 99px;
}

.service-label-en {
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 8px;
}

.service-subtitle {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-text-dark);
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.service-sub-label {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  padding: 7px 58px 7px 26px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 41px) 100%, 0 100%);
  flex-shrink: 0;
}

.service-title {
  font-size: 25px;
  font-weight: 700;
}

.service-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-main-card {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 35px;
}

.service-diagram-img {
  width: 100%;
  height: auto;
  display: block;
}

.service-diagram {
  display: flex;
  justify-content: center;
  gap: 26px;
  position: relative;
}

.service-diagram-line {
  position: absolute;
  top: 69%;
  left: 211px;
  right: 80px;
  height: 11px;
  background: var(--color-primary);
  z-index: 1;
  width: 614px;
}

.service-diagram-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 200px;
  position: relative;
  z-index: 2;
}

.service-diagram-col-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 175px;
}

.service-diagram-col-img img {
  object-fit: contain;
  max-height: 175px;
  max-width: 100%;
}

.service-diagram-col--center {
  flex: 0 0 260px;
}

.service-diagram-col--center .service-diagram-col-img {
  height: 200px;
}

.service-diagram-col--center .service-diagram-col-img img {
  max-height: 200px;
}

.service-diagram-col-label {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.service-diagram-col-sublabel {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.service-btn-wrapper {
  text-align: center;
}

.service-btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  padding: 15px 120px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}

.service-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 114, 245, 0.3);
}

/* ============================================================
   14b. Front Page - Other Services
   ============================================================ */
.other-section {
  background: var(--color-bg-light-blue);
  padding: 35px 0 50px;
}

.other-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 99px;
}

.other-header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.other-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 35px;
}

.other-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 18px 12px 12px;
  text-align: center;
  position: relative;
  height: 162px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.other-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}

.other-card-icon {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.other-card-icon img {
  max-height: 64px;
  max-width: 80px;
  object-fit: contain;
}

.other-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-dark);
}

.other-card-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #015eea 0%, #00c0fa 100%);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-card-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2.5px solid var(--color-white);
  border-bottom: 2.5px solid var(--color-white);
  transform: rotate(-45deg);
  margin-left: -2px;
}

.other-btn-wrapper {
  text-align: center;
  padding-top: 10px;
}

/* ============================================================
   14c. Front Page - Mini Footer Nav
   ============================================================ */
.mini-footer {
  padding: 50px 0 40px;
  background: var(--color-white);
}

.mini-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 88px;
}

.mini-footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-base);
}

.mini-footer-item:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.mini-footer-circle {
  width: 85px;
  height: 85px;
  border-radius: var(--radius-circle);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-footer-circle img {
  max-width: 42px;
  max-height: 38px;
  filter: brightness(0) invert(1);
}

.mini-footer-label {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-dark);
}

.mini-footer-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(-45deg);
}

/* ============================================================
   15. FAQ Page
   ============================================================ */
.faq-section {
  padding: var(--section-padding);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-gray);
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition-fast);
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: var(--color-primary-dark);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
}

.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 24px;
  background: var(--color-white);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-circle);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
  float: left;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-dark);
}

/* ============================================================
   16. Contact Page
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-gray);
  margin-bottom: 40px;
}

.contact-message {
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 500;
}

.contact-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.contact-message--error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-required {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: border-color var(--transition-fast);
  background: var(--color-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36, 114, 245, 0.1);
}

.form-note {
  font-size: 13px;
  color: var(--color-text-gray);
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  min-height: 150px;
  resize: vertical;
  transition: border-color var(--transition-fast);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36, 114, 245, 0.1);
}

.form-privacy {
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.form-privacy-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.form-privacy-note {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-top: 8px;
}

.form-privacy-note a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-top: 16px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 60px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 114, 245, 0.3);
}

/* ============================================================
   17. Service Page
   ============================================================ */
.service-intro {
  padding: 50px 0;
  text-align: center;
}

.service-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.service-subtitle {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-top: 8px;
}

/* Service Main Header */
.service-main-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
}

/* Matching Diagram */
.service-matching-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.matching-block {
  text-align: center;
  padding: 30px 24px;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  min-width: 180px;
}

.matching-block--company {
  border: 2px solid var(--color-primary);
}

.matching-block-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.matching-block--conelogi {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.matching-block--conelogi .matching-block-label {
  color: var(--color-white);
}

.matching-block--driver {
  border: 2px solid var(--color-accent);
}

/* Service Functions */
.service-functions {
  margin: 40px 0;
}

.service-functions-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.service-functions-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-functions-list li {
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-left: 3px solid var(--color-primary);
}

/* Service Merits */
.service-merits {
  margin: 50px 0;
}

.service-merits-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.service-merits-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-merits-col {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.merits-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.merits-col-sub {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.merits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.merits-list li {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.merits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
}

/* Service CTA */
.service-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}

.service-cta-btn--download {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.service-cta-btn--download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 198, 0, 0.4);
}

.service-cta-btn--contact {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-cta-btn--contact:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 114, 245, 0.3);
}

/* Other Services (service page) */
.service-other {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.service-other-heading {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

.service-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.service-card-desc {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card-solution {
  padding: 16px;
  background: rgba(36, 114, 245, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.service-card-solution-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.service-card-solution-text {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* ============================================================
   18. Company Page
   ============================================================ */
.company-section {
  padding: var(--section-padding);
}

.company-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-catchphrase {
  text-align: center;
  margin-bottom: 50px;
}

.company-catchphrase-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.company-catchphrase-sub {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.8;
}

.company-overview {
  margin-bottom: 60px;
}

.company-overview-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  font-weight: 700;
  width: 160px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.company-table td {
  color: var(--color-text-dark);
}

.company-access {
  margin-bottom: 40px;
}

.company-access-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.company-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.company-map iframe {
  display: block;
  width: 100%;
  min-height: 450px;
}

/* ============================================================
   19. Case Studies Page
   ============================================================ */
.case-section {
  padding: var(--section-padding);
}

.case-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.case-heading {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

.case-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-gray);
  margin-bottom: 50px;
}

.case-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.case-item:last-child {
  margin-bottom: 0;
}

.case-item-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 20px 30px;
}

.case-item-title {
  font-size: 20px;
  font-weight: 700;
}

.case-item-title-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.8;
}

.case-item-body {
  display: flex;
  gap: 30px;
  padding: 30px;
}

.case-item-image {
  flex-shrink: 0;
  width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.case-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-item-content {
  flex: 1;
}

.case-item-block {
  margin-bottom: 20px;
}

.case-item-block:last-child {
  margin-bottom: 0;
}

.case-item-label {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.case-item-label--issue {
  background: #fbe9e7;
  color: #c62828;
}

.case-item-label--solution {
  background: #e3f2fd;
  color: var(--color-primary);
}

.case-item-block p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.case-item-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-border-light);
}

.case-stat {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--color-border-light);
}

.case-stat:last-child {
  border-right: none;
}

.case-stat-label {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.case-stat-value {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.case-stat-unit {
  font-size: 24px;
}

.case-item-effects {
  padding: 20px 30px;
  background: var(--color-bg-light);
}

.case-effects-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.case-effects-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.case-effects-list li {
  font-size: 14px;
  color: var(--color-text-gray);
  padding-left: 18px;
  position: relative;
}

.case-effects-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
}

/* ============================================================
   20. Flow Page
   ============================================================ */
.flow-section {
  padding: var(--section-padding);
}

.flow-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-gray);
  margin-bottom: 10px;
}

.flow-note {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 50px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}


.flow-step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
}

.flow-step-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-icon img,
.flow-step-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.flow-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.flow-step-desc {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.8;
}

.flow-emergency {
  /* background: var(--color-bg-light); */
  /* border-radius: var(--radius-lg); */
  padding: 40px;
  text-align: center;
  /* border: 2px solid var(--color-border); */
}

.flow-emergency-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.flow-emergency-text {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

.flow-emergency-tel {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  margin-top: 16px;
}

.flow-emergency-tel a {
  color: var(--color-primary);
}

.flow-emergency-tel a:hover {
  opacity: 0.7;
}

/* ============================================================
   21. Privacy Policy Page
   ============================================================ */
.privacy-section {
  padding: var(--section-padding);
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-intro {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
  color: var(--color-text-dark);
}

.privacy-article {
  margin-bottom: 40px;
}

.privacy-article-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-dark);
}

.privacy-article p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.privacy-list {
  padding-left: 0;
  margin: 12px 0;
}

.privacy-list li {
  font-size: 14px;
  line-height: 1.9;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
}

.privacy-contact-box {
  margin-top: 40px;
  padding: 30px;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-contact-row {
  font-size: 14px;
  line-height: 1.8;
}

.privacy-date {
  text-align: right;
  font-size: 14px;
  color: var(--color-text-gray);
  margin-top: 40px;
}

/* ============================================================
   22. Generic Pages (page.php, index.php)
   ============================================================ */
.page-content {
  padding: var(--section-padding);
}

.page-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--color-text-dark);
}

.entry-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-dark);
}

.entry-content p {
  margin-bottom: 16px;
}

.entry-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

.entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.entry-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.entry-content ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.entry-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.entry-content img {
  border-radius: var(--radius-md);
  margin: 16px 0;
}

/* ============================================================
   23. 404 Page
   ============================================================ */
.error-404-content {
  text-align: center;
  padding: 60px 20px;
}

.error-404-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.error-404-content p {
  font-size: 15px;
  color: var(--color-text-gray);
  margin-bottom: 30px;
}

/* ============================================================
   24. Responsive - Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero Tablet */
  .hero {
    height: auto;
    min-height: 500px;
    padding: 0 40px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-line1-text {
    font-size: 40px;
  }

  .hero-up {
    height: 86px;
  }

  .hero-line2-large {
    font-size: 50px;
  }

  .hero-line2-no {
    font-size: 28px;
  }

  .hero-line2-partner {
    font-size: 40px;
  }

  .hero-illustration {
    right: 40px;
    width: 280px;
  }

  .points-wrapper {
    padding: 0 40px;
    margin-top: -112px;
  }

  .point-card {
    width: auto;
    flex: 1;
  }

  .cta-section {
    height: 250px;
    padding-top: 60px;
  }

  /* Wall Tablet */
  .wall-inner {
    padding: 0 40px;
  }

  .wall-heading {
    font-size: 36px;
  }

  /* Strength Tablet */
  .strength-row {
    flex-wrap: wrap;
  }

  .strength-card {
    width: calc(50% - 13px);
  }

  /* Service Tablet */
  .service-section-inner,
  .other-section-inner {
    padding: 0 40px;
  }

  .service-main-card {
    padding: 24px 20px;
  }

  .service-diagram-col {
    flex: 0 0 160px;
  }

  .service-diagram-col--center {
    flex: 0 0 200px;
  }

  .service-btn {
    padding: 16px 80px;
  }

  /* Other Services Tablet */
  .other-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-item-body {
    flex-direction: column;
  }

  .case-item-image {
    width: 100%;
    max-height: 300px;
  }

  .footer-nav {
    gap: 30px;
  }

  .service-functions-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   25. Responsive - Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --section-padding: 50px 0;
  }

  /* Header Mobile */
  .header-nav {
    display: flex;
  }

  .nav-list {
    display: none;
  }

  .header-contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero-area {
    height: auto;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 30px 20px 40px;
    background-size: cover;
    background-position: center;
  }

  .hero-content {
    padding-top: 10px;
    text-align: center;
    text-shadow: 1px 2px 3px rgba(0, 38, 96, 0.32);
  }

  .hero-line1 {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-line1-text {
    font-size: 32px;
  }

  .hero-up {
    height: 64px;
    top: 8px;
  }

  .hero-line2 {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 23px;
  }

  .hero-line2-large {
    font-size: 38px;
  }

  .hero-line2-col {
    align-items: center;
    flex-direction: column-reverse;
  }

  .hero-line2-col .hero-tag {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .hero-times {
    margin: 0 8px;
    font-size: 38px;
    align-self: flex-end;
  }

  .hero-line2-break {
    flex-basis: 100%;
    height: 0;
  }

  .hero-line2-no {
    font-size: 30px;
  }

  .hero-line2-partner {
    font-size: 36px;
    margin-top: 0;
  }

  .hero-tag {
    font-size: 12px;
    padding: 3px 14px;
  }

  .hero-sub {
    font-size: 13px;
    text-align: center;
    line-height: 1.7;
    margin-top: 14px;
  }

  .hero-illustration {
    display: block;
    position: absolute;
    right: 10px;
    top: auto;
    bottom: 0;
    width: 180px;
    height: auto;
    z-index: 1;
  }

  /* Points Mobile */
  .points-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    margin-top: 20px;
    gap: 16px;
  }

  .point-card {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 16px;
  }

  .point-card .point-ribbon {
    width: 42%;
    height: 42px;
    padding: 5px 0 3px 17px;
    margin-top: -30px;
    margin-right: auto;
  }

  .point-ribbon-label {
    font-size: 22px;
  }

  .point-ribbon-num {
    font-size: 36px;
  }

  .point-card-img {
    height: 100px;
    width: 120px;
    flex-shrink: 0;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 10px;
  }

  .point-card-img img {
    max-height: 100px;
    max-width: 110px;
  }

  .point-card-title {
    font-size: 17px;
    flex-basis: 100%;
    text-align: left;
    padding: 0 16px 0;
    margin-top: -25px;
  }

  /* Wall Mobile */
  .wall-section {
    padding: 40px 0 30px;
  }

  .wall-inner {
    padding: 0 20px;
  }

  .wall-heading {
    font-size: 22px;
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .wall-heading-highlight {
    font-size: 26px;
  }

  .wall-heading-highlight::after {
    height: 20px;
    bottom: -2px;
    left: 6px;
    width: 142px;
  }

  .wall-content {
    position: relative;
  }

  .wall-checklist {
    gap: 16px;
  }

  .wall-checklist li {
    font-size: 14px;
    gap: 10px;
  }

  .wall-checklist li img {
    width: 22px;
    height: 18px;
  }

  .wall-person {
    position: absolute;
    right: -17px;
    top: 62px;
    width: 92px;
    z-index: 0;
  }

  /* CTA Mobile */
  .cta-section {
    height: 160px;
    padding-top: 40px;
    clip-path: polygon(0 0, 50% 28%, 100% 0, 100% 100%, 0 100%);
  }

  .cta-text {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
  }

  .cta-text-prefix {
    font-size: 14px;
  }

  .cta-text-brand {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .cta-text-suffix {
    font-size: 14px;
  }

  /* Strength Mobile */
  .strength-section {
    /* padding: 40px 0 40px; */
  }

  .strength-section-inner {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .strength-label {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 900;
  }

  .section-heading {
    font-size: 20px;
  }

  .section-heading .num5 {
    font-size: 32px;
  }

  .strength-desc {
    font-size: 17px;
    line-height: 1.9;
    padding: 0 20px;
  }

  .strength-panel {
    padding: 44px 0 1px;
    border-radius: 0;
    background: var(--color-primary);
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 34px;
  }

  .strength-panel::-webkit-scrollbar {
    display: none;
  }

  .strength-row {
    display: contents;
  }

  .strength-card {
    min-width: calc(100% - 40px);
    width: calc(100% - 40px);
    scroll-snap-align: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--color-white);
    height: auto;
    padding: 46px 0px 34px;
    margin: 0;
  }

  .strength-card:first-child {
    margin-left: 20px;
  }

  .strength-card:last-child {
    margin-right: 20px;
  }

  .strength-dots-wrapper {
    display: block;
    background: var(--color-primary);
    padding: 24px 0 30px;
  }

  .strength-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .strength-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
  }

  .strength-dot.active {
    background: var(--color-accent);
  }

  .strength-badge {
    top: -16px;
    left: -8px;
    width: 60px;
    height: 60px;
  }

  .strength-badge span {
    font-size: 33px;
  }

  .strength-card-title {
    font-size: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 29px;
  }

  .strength-card-img {
    /* height: 100px; */
    width: 100%;
  }

  .strength-card-img img {
    max-height: none;
    max-width: 100%;
    width: 100%;
  }

  .strength-card-text {
    font-size: 16px;
    padding: 0 20px;
    margin-top: 25px;
  }

  /* Service Mobile */
  .service-section {
    padding: 40px 0;
    margin-top: 0;
  }

  .service-section-inner,
  .other-section-inner {
    padding: 0 20px;
  }

  .service-label-en {
    font-size: 22px;
  }

  .service-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .service-header-row,
  .other-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-sub-label {
    font-size: 22px;
    padding: 1px 36px 1px 16px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .service-main-card {
    padding: 0;
    margin-bottom: 24px;
  }

  .service-diagram {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-diagram-line {
    display: none;
  }

  .service-diagram-col,
  .service-diagram-col--center {
    flex: none;
    width: 100%;
    max-width: 200px;
  }

  .service-btn {
    padding: 14px 50px;
    font-size: 22px;
    display: block;
    width: 87%;
    margin: 0 auto;
  }

  /* Other Services Mobile */
  .other-section {
    padding: 30px 0 40px;
  }

  .other-desc {
    font-size: 13px;
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .other-card {
    height: auto;
    min-height: 140px;
    padding: 14px 10px 36px;
  }

  .other-card-icon {
    height: 50px;
    margin-bottom: 8px;
  }

  .other-card-icon img {
    max-height: 50px;
  }

  .other-card-title {
    font-size: 14px;
  }

  .other-card-arrow {
    width: 24px;
    height: 24px;
    bottom: 8px;
    right: 8px;
  }

  /* Mini Footer Mobile */
  .mini-footer {
    padding: 30px 0;
  }

  .mini-footer-inner {
    gap: 30px;
  }

  .mini-footer-circle {
    width: 85px;
    height: 85px;
  }

  .mini-footer-circle img {
    max-width: 42px;
    max-height: 38px;
  }

  .mini-footer-label {
    font-size: 15px;
  }

  /* Page Header Mobile */
  .page-header {
    padding: 35px 20px;
  }

  .page-header-en {
    font-size: 28px;
  }

  .page-header-ja {
    font-size: 14px;
  }

  /* Company Mobile */
  .company-catchphrase-text {
    font-size: 22px;
  }

  .company-table th {
    width: 120px;
    padding: 12px;
    font-size: 14px;
  }

  .company-table td {
    padding: 12px;
    font-size: 14px;
  }

  .company-map iframe {
    min-height: 300px;
  }

  /* Service Page Mobile */
  .service-matching-diagram {
    flex-direction: column;
  }

  .matching-block {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  .service-functions-list {
    grid-template-columns: 1fr;
  }

  .service-merits-columns {
    grid-template-columns: 1fr;
  }

  .service-cta {
    flex-direction: column;
    align-items: center;
  }

  .service-card-list {
    grid-template-columns: 1fr;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 14px 18px;
    gap: 12px;
  }

  .faq-q-text {
    font-size: 14px;
  }

  .faq-answer {
    padding: 18px;
  }

  /* Flow Mobile */
  .flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 0;
  }

  .flow-emergency {
    padding: 30px 20px;
  }

  .flow-emergency-tel {
    font-size: 20px;
  }

  /* Contact Mobile */
  .contact-container {
    max-width: 100%;
  }

  .form-checkbox-group {
    flex-direction: column;
    gap: 12px;
  }

  .form-submit-btn {
    width: 100%;
    padding: 16px 20px;
  }

  /* Case Mobile */
  .case-item-body {
    flex-direction: column;
    padding: 20px;
  }

  .case-item-image {
    width: 100%;
  }

  .case-item-stats {
    flex-direction: column;
  }

  .case-stat {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }

  .case-stat:last-child {
    border-bottom: none;
  }

  .case-stat-value {
    font-size: 36px;
  }

  .case-item-effects {
    padding: 16px 20px;
  }

  .case-effects-list {
    flex-direction: column;
    gap: 8px;
  }

  /* Privacy Mobile */
  .privacy-article-title {
    font-size: 16px;
  }

  .privacy-contact-box {
    padding: 20px;
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 19px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-text {
    font-size: 44px;
  }

  .footer-logo-sub {
    font-size: 15px;
    font-weight: 700;
  }

  .footer-address {
    text-align: left;
    font-weight: 700;
  }

  .footer-tel {
    font-size: 30px;
  }

  .footer-contact-btn {
    font-size: 14px;
    padding: 9px 35px;
  }

  .footer-nav {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Page Top Button Mobile */
  .page-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   26. Responsive - Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-line1-text {
    font-size: 30px;
  }

  .hero-up {
    height: 70px;
  }

  .hero-line2-large {
    font-size: 33px;
  }

  .hero-times {
    font-size: 24px;
    margin: 0 6px;
  }

  .hero-line2-no {
    font-size: 29px;
    margin-top: 7px;
  }

  .hero-line2-partner {
    font-size: 32px;
    margin-top: 7px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 2px 10px;
  }

  .hero-sub {
    font-size: 15px;
    text-align: left;
    margin-top: 30px;
  }

  .hero-illustration {
    width: 140px;
    right: 5px;
  }

  .wall-heading {
    font-size: 29px;
  }

  .wall-heading-highlight {
    font-size: 35px;
  }

  .wall-heading-highlight::after {
    height: 21px;
    width: 191px;
    left: 12px;
  }

  .wall-checklist li {
    font-size: 14px;
  }

  .cta-text-brand {
    font-size: 22px;
  }

  .cta-text-prefix,
  .cta-text-suffix {
    font-size: 14px;
  }

  .point-card-title {
    font-size: 21px;
  }

  .section-heading {
    font-size: 25px;
  }

  .section-heading .num5 {
    font-size: 50px;
  }

  .case-item-header {
    padding: 16px 20px;
  }

  .case-item-title {
    font-size: 16px;
  }

  .flow-step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .logo-text {
    font-size: 24px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .company-table td {
    padding-top: 4px;
  }
}

/* ============================================================
   27. Print Styles
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .page-top-btn,
  .hamburger,
  .bottom-nav {
    display: none !important;
  }

  body {
    padding-top: 0;
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.6;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    color: #000;
  }
}
