/* ========================================
   Button CSS Custom Properties
   ======================================== */
@property --angle-1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -75deg;
}

@property --angle-2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}

/* ========================================
   CSS Variables
   ======================================== */
:root {
  /* Colors - ESSENCE Brand */
  --color-navy: #1e365c;
  --color-steel-blue: #4ca9ce;
  --color-light-blue: #b3d8e5;
  --color-terracotta: #cf6f4c;
  --color-deep-purple: #780bb3;

  /* 旧変数との互換マッピング（使用中のみ残す） */
  --color-primary-light: #b3d8e5;
  --color-secondary: #1e365c;
  --color-text: #1e365c;
  --color-bg: #ffffff;

  /* Gradients */
  --gradient-logo: linear-gradient(
    135deg,
    #1e365c 0%,
    #4aa8ce 60%,
    #c0dee8 100%
  );
  --gradient-brand: linear-gradient(
    135deg,
    #07244e 0%,
    #691994 33%,
    #e4917e 66%,
    #c43d0c 100%
  );
  --gradient-dark-section: linear-gradient(
    to bottom,
    #000010 0%,
    #020002 33%,
    #8b2f13 66%,
    #831400 100%
  );
  --gradient-origin-story: linear-gradient(to bottom, #020002 0%, #1e365c 100%);

  /* Steel Colors */
  --color-steel-1: #b9cddf;
  --color-steel-2: #bed2e2;
  --color-steel-3: #7f9ab8;
  --gradient-steel: linear-gradient(
    135deg,
    #b9cddf 0%,
    #bed2e2 50%,
    #7f9ab8 100%
  );

  /* Typography */
  --font-primary: "Noto Sans JP", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --anim--hover-time: 400ms;
  --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ========================================
   Loader
   ======================================== */
.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader__logo {
  width: 120px;
  animation: loaderFillUp 1.6s ease forwards;
}

@keyframes loaderFillUp {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0% 0);
  }
}

/* ========================================
   Container
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: white;
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent__content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent__content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-consent__content a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-consent__button {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-base);
}

.cookie-consent__button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  z-index: 1000;
  transition:
    background-color 0.3s,
    box-shadow 0.3s,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.header.is-scrolled {
  /* background-color: var(--color-navy); */
  backdrop-filter: blur(10px);
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); */
}

/* ライトページ用ヘッダー（白背景ページ） */
.header--light .nav-list a {
  color: var(--color-secondary);
}

.header--light .nav-list a:not(.nav-cta)::after {
  background: var(--gradient-brand);
}

.header--light.is-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.header__container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo .logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: var(--transition-base);
}

.header__logo a:hover .logo-img {
  transform: translateY(-2px);
  opacity: 0.85;
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a.is-active {
  color: var(--color-light-blue);
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-logo);
  transition: width 0.3s ease;
}

.nav-list a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  --border-width: clamp(1px, 0.0625em, 4px);
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  border: none;
  background: linear-gradient(
    -75deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 999vw;
  /* box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.3),
    0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(clamp(1px, 0.125em, 4px)); */
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.nav-cta {
  font-size: 0.9rem;
}

.nav-list .button-wrap {
  clip-path: inset(0 round 999vw);
}

.nav-list .button-shadow {
  --shadow-cuttoff-fix: 0em;
  filter: blur(clamp(2px, 0.5em, 12px));
}

.nav-list .button-shadow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  font-size: 1rem;
}

.nav-cta:hover,
.btn:hover {
  transform: scale(0.975);
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.4),
    0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25),
    0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.3);
}

.nav-cta span,
.btn span {
  position: relative;
  display: block;
  user-select: none;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  /* text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.2); */
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  padding-inline: 1.5em;
  padding-block: 0.875em;
}

.nav-cta span {
  padding-block: 0.75em;
}

.nav-cta span::after,
.btn span::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  top: calc(0% + var(--border-width) / 2);
  left: calc(0% + var(--border-width) / 2);
  box-sizing: border-box;
  border-radius: 999vw;
  overflow: clip;
  background: linear-gradient(
    var(--angle-2),
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 40% 50%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  transition:
    background-position calc(var(--anim--hover-time) * 1.25)
      var(--anim--hover-ease),
    --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.nav-cta:hover span::after,
.btn:hover span::after {
  background-position: 25% 50%;
}

.nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 999vw;
  width: calc(100% + var(--border-width));
  height: calc(100% + var(--border-width));
  top: calc(0% - var(--border-width) / 2);
  left: calc(0% - var(--border-width) / 2);
  padding: var(--border-width);
  box-sizing: border-box;
  background:
    conic-gradient(
      from var(--angle-1) at 50% 50%,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0) 5% 40%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 60% 95%,
      rgba(255, 255, 255, 0.6)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition:
    all var(--anim--hover-time) var(--anim--hover-ease),
    --angle-1 500ms ease;
}

.nav-cta:hover::after,
.btn:hover::after {
  --angle-1: -125deg;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__hamburger span {
  width: 25px;
  height: 1px;
  background-color: var(--color-secondary);
  border-radius: 1px;
  transition: var(--transition-base);
}

@media (max-width: 968px) {
  .header__nav {
    display: none;
  }

  /* ロゴ非表示（将来的に表示する場合はこのブロックを削除） */
  .header__logo {
    display: none;
  }

  .header__hamburger {
    display: flex;
    z-index: 1001;
    margin-left: auto;
    padding-right: 0;
  }

  .header__hamburger span {
    background-color: #fff;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, #07244e 0%, #0d0d1a 100%);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  max-height: 100vh;
}

/* ヘッダー（ロゴ＋タグライン / ×ボタン） */
.mobile-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 2rem 1rem 2.5rem;
  flex-shrink: 0;
}

.mobile-menu__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__logo {
  height: 28px;
  width: auto;
}

.mobile-menu__tagline {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  margin: 0;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu__close:hover {
  opacity: 1;
}

/* ナビリスト */
.mobile-menu__list {
  list-style: none;
  padding: 0 2.5rem;
  text-align: left;
  width: 100%;
  counter-reset: menu-counter;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu__list li {
  counter-increment: menu-counter;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mobile-menu__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.active .mobile-menu__list li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-menu__list li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu__list li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}
.mobile-menu.active .mobile-menu__list li:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu__list li:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

.mobile-menu__list a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.mobile-menu__list a::before {
  content: counter(menu-counter, decimal-leading-zero);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  letter-spacing: 0.05em;
  min-width: 1.5rem;
}

.mobile-menu__list a:hover {
  color: #fff;
  gap: 1.75rem;
  background-color: transparent;
  transform: none;
}

/* 下部 CTA（お問い合わせ） */
.mobile-menu__cta-wrap {
  padding: 1.5rem 2.5rem 2.5rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease 0.35s,
    transform 0.35s ease 0.35s;
}

.mobile-menu.active .mobile-menu__cta-wrap {
  opacity: 1;
  transform: none;
}

.mobile-menu__cta-wrap .button-wrap {
  width: 100%;
  display: block;
  clip-path: inset(0 round 999vw);
}

.mobile-menu__cta-wrap .button-shadow {
  --shadow-cuttoff-fix: 0em;
  filter: blur(clamp(2px, 0.5em, 12px));
}

.mobile-menu__cta-wrap .button-shadow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile-menu__cta-wrap .btn {
  width: 100%;
  justify-content: center;
}

.mobile-menu__cta-wrap .btn span {
  width: 100%;
  text-align: center;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  object-fit: cover;
}

.hero__bg video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1500px;
  padding: 0 2rem;
  z-index: 2;
}

.hero__content {
  z-index: 2;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__title-main {
  display: block;
  margin-bottom: 1rem;
}

.hero__title-svg {
  height: 80px;
  width: auto;
  display: block;
}

.hero__title-sub {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.hero__description {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: #ffffff;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

@media (max-width: 968px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__title-main {
    font-size: 3.5rem;
  }

  .hero__title-sub {
    font-size: 1.25rem;
  }

  .circle--1 {
    width: 200px;
    height: 200px;
  }

  .circle--2 {
    width: 150px;
    height: 150px;
  }

  .circle--3 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero__title-main {
    font-size: 2.5rem;
  }

  .hero__title-sub {
    font-size: 1rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }
}

/* ========================================
   Mission Section
   ======================================== */
.mission {
  padding: 4rem 0;
  background: var(--gradient-logo);
  color: white;
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.mission__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.mission__label {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 5px 0 8px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c) 1;
}

.mission__text {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.section-header__title::after {
  content: "";
  display: none;
  width: 48px;
  height: 1px;
  margin: 12px 0 0;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
}

.section-header:has(p) .section-header__title::after {
  display: block;
}

.section-header p {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .section-header__title {
    font-size: 2rem;
  }
}

/* ========================================
   Drow Background Image (About〜ContactCTA)
   ======================================== */
.drop-section-wrap {
  position: relative;
  background:
    url("../images/drop.webp") calc(50% + 500px) top / cover no-repeat,
    var(--gradient-dark-section);
}

/* ========================================
   About Intro Section
   ======================================== */
.about-intro {
  padding: 130px 0 50px;
  background-color: transparent;
}

.about-intro .container {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.about-intro__logo {
  width: 440px;
  min-height: 380px;
  flex-shrink: 0;
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  flex: 1;
  color: #fff;
}

.about-intro__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 2;
  color: #fff;
}

.about-intro__text .text-large {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.about-intro__text p {
  margin: 0;
}

.about-intro__text strong {
  color: #fff;
  font-weight: 600;
}

.about-intro .section-header {
  text-align: left;
  margin-bottom: 0;
}

.about-intro .section-header__title {
  font-size: 36px;
  color: #fff;
}

.about-intro .section-header__title::after {
  margin: 12px 0 0;
}

.about-intro .section-header__label {
  font-size: 12px;
  letter-spacing: 1.8px;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.logo-visual {
  text-align: center;
}

.logo-visual__circles {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 2rem;
}

.logo-visual__mark-img {
  width: 100%;
  height: auto;
  opacity: 0.95;
}

/* SVGの3つの円の中心に合わせてラベルを配置 */
/* viewBox 182×205 のうち上円:50%/26%, 左下:29%/57%, 右下:71%/57% */
.logo-circle-label {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.logo-circle-label--1 {
  top: 22%;
  left: 50%;
}

.logo-circle-label--2 {
  top: 62%;
  left: 22%;
}

.logo-circle-label--3 {
  top: 62%;
  left: 76%;
}

.logo-visual__description {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
}

@media (max-width: 968px) {
  .hero__scroll {
    display: none;
  }

  .about-intro .container {
    flex-direction: column;
    gap: 66px;
  }

  .about-intro__logo {
    width: 100%;
    min-height: unset;
    order: 2;
  }

  .about-intro__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    order: 1;
  }

  .logo-visual__circles {
    max-width: 280px;
    height: 280px;
  }

  .logo-circle {
    width: 140px;
    height: 140px;
    font-size: 0.8rem;
  }
}

/* ========================================
   Gradient Section Wrap (Services + Cases)
   ======================================== */
.gradient-section-wrap {
  background: transparent;
}

/* ========================================
   Services Overview - Card Style
   ======================================== */
.services-overview {
  padding: var(--spacing-xl) 0;
  background: transparent;
  color: white;
}

.services-overview .section-header {
  text-align: left;
}

.services-overview .section-header__title::after {
  margin: 12px 0 0;
}

.services-overview .section-header__label,
.business-area .section-header__label,
.mission-detail .section-header__label,
.company-overview .section-header__label,
.origin-story .section-header__label,
.contact-form-section .section-header__label,
.strength-card .section-header__label {
  font-size: 12px;
  letter-spacing: 1.8px;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.services-overview .section-header__title {
  color: white;
}

.services-flow__intro {
  text-align: left;
  font-size: 1.05rem;
  margin-top: 40px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

@keyframes slideUpCard {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 現行スタイル（グラデーションボーダー・maskテクニック） ---
.service-card {
  opacity: 0;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(105, 25, 148, 0.15) 0%,
    rgba(196, 61, 12, 0.15) 100%
  );
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    #c43d0c 0%,
    #e4917e 33%,
    #691994 66%,
    #07244e 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
--- */

.service-card {
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      rgba(105, 25, 148, 0.15) 0%,
      rgba(196, 61, 12, 0.15) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 139, 112, 0.2) 0%,
      rgba(255, 139, 112, 0.2) 100%
    );
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  border: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-cards.is-visible .service-card:nth-child(1) {
  animation: slideUpCard 1.2s ease forwards;
  animation-delay: 0s;
}

.service-cards.is-visible .service-card:nth-child(2) {
  animation: slideUpCard 1.2s ease forwards;
  animation-delay: 0.4s;
}

.service-cards.is-visible .service-card:nth-child(3) {
  animation: slideUpCard 1.2s ease forwards;
  animation-delay: 0.8s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.service-card__subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: none;
  position: relative;
}

.service-card__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #c43d0c, #ffc4b6, #c43d0c);
}

.service-card__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-card__details {
  margin-top: auto;
}

.service-card__details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.service-card__details ul {
  list-style-type: circle;
  padding-left: 1.25rem;
  margin: 0;
}

.service-card__details li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.services-overview__cta {
  text-align: center;
}

@media (max-width: 968px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .services-flow__intro {
    font-size: 0.95rem;
    margin-bottom: 3rem;
  }

  .service-card__title {
    font-size: 1.3rem;
  }
}

/* ========================================
   Cases Overview
   ======================================== */
.cases-overview {
  padding: var(--spacing-xl) 0;
  background: transparent;
  color: white;
  text-align: center;
}

.cases-overview .section-header {
  text-align: left;
}

.cases-overview .section-header__label {
  font-size: 12px;
  letter-spacing: 1.8px;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.cases-overview .section-header__title {
  color: white;
}

.cases-overview .section-header__title::after {
  margin: 12px 0 0;
}

.cases-overview__description {
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 3rem;
  text-align: left;
}

/* KPI Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.kpi-item {
  text-align: center;
  padding: 2rem 1rem;
  color: white;
}

.kpi-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.kpi-item__value {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #e4917e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kpi-item__unit {
  font-size: 1.75rem;
  font-weight: 700;
}

.kpi-item__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.kpi-item__industry {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.kpi-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e4917e;
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 145, 126, 0.4);
  padding-bottom: 2px;
  transition:
    gap 0.2s,
    border-color 0.2s;
}

.kpi-item__link:hover {
  gap: 0.65rem;
  border-color: #e4917e;
}

/* .btn--outline-white は .btn に統合 */

@media (max-width: 1024px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .kpi-item__value {
    font-size: 2.5rem;
  }
}

/* ========================================
   Contact CTA Section
   ======================================== */
.contact-cta {
  position: relative;
  padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 2rem);
  overflow: hidden;
}

/* サブページ用 contact-cta（グラデーション + 2カラム） */
.contact-cta--subpage .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-cta--subpage .section-header__title,
.contact-cta--subpage .section-header__label,
.contact-cta--subpage .contact-cta__description {
  color: #fff;
  text-shadow: 0 1px 7px rgb(128 141 160 / 85%);
}

.contact-cta--subpage {
  background: var(--gradient-steel);
  padding: 5rem 0;
}

/* .contact-cta--subpage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    345deg,
    rgb(174, 23, 0) 19%,
    rgb(228, 145, 126) 24%,
    rgb(105, 25, 148) 67%,
    rgb(7, 36, 78) 112%
  );
  mix-blend-mode: hard-light;
  z-index: 0;
} */

.contact-cta--subpage::after {
  display: none;
}

.contact-cta--subpage .button-wrap {
  clip-path: inset(0 round 999vw);
}

.contact-cta--subpage .button-shadow {
  --shadow-cuttoff-fix: 0em;
  filter: blur(clamp(2px, 0.5em, 12px));
}

.contact-cta--subpage .button-shadow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-cta__layout {
  position: relative;
  z-index: 1;
  isolation: isolate; /* ブレンドモードの影響をコンテンツに及ぼさない */
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.contact-cta__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.contact-cta__right {
  flex-shrink: 0;
  width: 380px;
}

.contact-cta__philosophy-svg {
  display: block;
}

.contact-cta__philosophy-svg text {
  font-family: "Digital Numbers", "Courier New", monospace;
  font-size: 22px;
  fill: rgba(255, 255, 255, 0.6);
  text-anchor: end;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 1024px) {
  .contact-cta__right {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-cta__layout {
    padding: 0 1.5rem;
  }
}

/* 放射状グロー */
.contact-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  /* background: radial-gradient(
    ellipse at center,
    rgba(120, 11, 179, 0.28) 0%,
    rgba(196, 61, 12, 0.18) 45%,
    transparent 70%
  ); */
  z-index: 0;
  pointer-events: none;
}

/* セパレーター（上部グラデーションライン） */
.contact-cta .container {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.contact-cta__content {
  text-align: left;
}

.contact-cta .section-header {
  text-align: left;
}

/* ラベル: services-overviewと同じグラデーション */
.contact-cta .section-header__label {
  font-size: 12px;
  letter-spacing: 1.8px;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* タイトル下のアンダーライン: services-overviewと統一 */
.contact-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.contact-cta__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 12px 0 0;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
}

.contact-cta__description {
  font-size: 1.1rem;
  margin-top: 40px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* CTA Form */
.contact-cta__form {
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  /* border: 1px solid rgba(255, 255, 255, 0.35); */
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 実績バッジ */
.contact-cta__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.contact-cta__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.contact-cta__badge strong {
  color: #fff;
  margin: 0 0.15em;
}

.contact-cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-cta__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-cta__form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
}

.contact-cta__required {
  color: #e4917e;
  margin-left: 0.2em;
}

.contact-cta__form-group input,
.contact-cta__form-group textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: #fff;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-cta__form-group input::placeholder,
.contact-cta__form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-cta__form-group input:focus,
.contact-cta__form-group textarea:focus {
  outline: none;
  border-color: rgba(120, 11, 179, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.contact-cta__form-group textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 1.25rem;
}

.contact-cta__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-cta__privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-cta__privacy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.contact-cta__full-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-cta__full-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .contact-cta__title {
    font-size: 1.75rem;
  }

  .contact-cta__form {
    padding: 1.5rem;
  }

  .contact-cta__form-row {
    grid-template-columns: 1fr;
  }

  .contact-cta__form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   Buttons
   ======================================== */

/* Button Wrap */
.button-wrap {
  position: relative;
  z-index: 2;
  border-radius: 999vw;
  background: transparent;
  pointer-events: none;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  display: inline-block;
}

/* Button Shadow */
.button-shadow {
  --shadow-cuttoff-fix: 2em;
  position: absolute;
  width: calc(100% + var(--shadow-cuttoff-fix));
  height: calc(100% + var(--shadow-cuttoff-fix));
  top: calc(0% - var(--shadow-cuttoff-fix) / 2);
  left: calc(0% - var(--shadow-cuttoff-fix) / 2);
  filter: blur(clamp(2px, 0.125em, 12px));
  overflow: visible;
  pointer-events: none;
}

.button-shadow::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 999vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  left: calc(var(--shadow-cuttoff-fix) - 0.875em);
  padding: 0.125em;
  box-sizing: border-box;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  opacity: 1;
}

/* .btn styles are combined with .nav-cta above */

.btn:active span::after {
  background-position: 50% 15%;
  --angle-2: -15deg;
}

.btn:active::after {
  --angle-1: -75deg;
}

/* Large variant */
.btn--large span {
  padding-inline: 2em;
  padding-block: 1em;
  font-size: 1.05em;
}

/* Hover shadow */
.button-wrap:has(.btn:hover) .button-shadow {
  filter: blur(clamp(2px, 0.0625em, 6px));
  transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

.button-wrap:has(.btn:hover) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.875em);
}

/* Active state */
.button-wrap:has(.btn:active) {
  transform: rotate3d(1, 0, 0, 25deg);
}

.button-wrap:has(.btn:active) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  opacity: 0.75;
}

@media (max-width: 480px) {
  .btn span {
    padding-inline: 1.2em;
    padding-block: 0.75em;
    font-size: 0.95em;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn span::after,
  .btn:active span::after {
    --angle-2: -45deg;
  }
  .btn::after,
  .btn:hover::after,
  .btn:active::after {
    --angle-1: -75deg;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  background-color: var(--color-secondary);
  color: white;
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/footer-bg.webp") center bottom / cover no-repeat;
  mix-blend-mode: multiply;
  z-index: 0;
}

.footer .container {
  max-width: 1500px;
  position: relative;
  z-index: 1;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.footer__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-top: 2rem;
}

.footer__logo {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer__logo-img {
  height: 2rem;
  width: auto;
  margin-bottom: 0.5rem;
  display: block;
  filter: brightness(0) invert(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer__info {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer__info p {
  margin-bottom: 0.5rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__nav-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__nav-column ul {
  list-style: none;
}

.footer__nav-column li {
  margin-bottom: 0.75rem;
}

.footer__nav-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer__nav-column a:hover {
  color: white;
  padding-left: 5px;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .footer__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Strength Detail Page
   ======================================== */
.page-hero {
  padding: 8rem 0 2.5rem;
  background-color: #000010;
  color: white;
  text-align: left;
}

@media (max-width: 968px) {
  .page-hero {
    padding: 6rem 0 2.5rem;
  }
}

.page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Strengths Cards Section */
.strengths-cards {
  padding: 6rem 0;
  background-color: #000010;
}

.strength-card .section-header {
  text-align: left;
  margin-bottom: 80px;
}

.strength-card .section-header__title {
  color: #fff;
}

.strength-card .section-header__title::after {
  margin-left: 0;
}

.strength-card {
  margin-bottom: 2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: visible;
}

.strength-card__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 8px;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strength-card__number {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.strength-card__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.strength-card__intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 40px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.strength-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 2.5rem 0 1.25rem;
}

.strength-card p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.strength-card ul {
  list-style-type: circle;
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.strength-card li {
  padding: 0.75rem 0;
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.strength-card .highlight-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  margin: 2.5rem 0 0;
}

.strength-card .highlight-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-light-blue);
  margin: 0 0 1rem;
}

.strength-card .highlight-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .strength-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .strength-card__number {
    font-size: 3rem;
  }

  .strength-card__title {
    font-size: 1.75rem;
  }

  .page-hero__title {
    font-size: 1.75rem;
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* ========================================
   Sub-page Section Headers (dark backgrounds)
   ======================================== */
.mission-detail .section-header,
.company-overview .section-header,
.origin-story .section-header,
.business-area .section-header {
  text-align: left;
}

.business-area .section-header p {
  color: #fff;
}

.business-area .section-header .highlight {
  font-weight: 700;
  color: #fff;
}

.mission-detail .section-header__title::after,
.company-overview .section-header__title::after,
.origin-story .section-header__title::after {
  margin-left: 0;
}
.mission-detail .section-header__title,
.origin-story .section-header__title,
.contact-form-section .section-header__title {
  color: #fff;
}

.company-overview .section-header__title {
  color: #fff;
  text-shadow: 0 1px 7px rgb(128 141 160 / 85%);
}

.business-area .section-header__title {
  color: #fff;
}

/* ========================================
   見出し階層
   ======================================== */

/* 中見出し（h3） */
.heading-secondary {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  padding: 0.75em 0;
  isolation: isolate;
}

/* 左側グロー光球 */
.heading-secondary::before {
  content: "";
  position: absolute;
  left: -66px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #c43d0c 0%, #691994 60%, transparent 80%);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

/* 小見出し（h4） */
.heading-tertiary {
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Utility
   ======================================== */
.text-white {
  color: #fff;
}

.link-white {
  color: #fff;
  text-decoration: underline;
}

/* ========================================
   Services Page
   ======================================== */
.business-area {
  padding: 6rem 0;
  background: var(--gradient-logo);
}

.business-area__intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.business-area__intro p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.business-area__intro .highlight {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1.5rem;
}

.service-detail {
  padding: 5rem 0;
  background-color: #07244e;
}

.service-detail:nth-child(even) {
  background-color: #000010;
}

.service-detail__container .section-header {
  text-align: left;
  margin-bottom: 80px;
}

.service-detail__container .section-header__title {
  color: #fff;
}

.service-detail__container .section-header__label {
  font-size: 12px;
  letter-spacing: 1.8px;
  background: linear-gradient(to left, #c43d0c, #ffc4b6, #c43d0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.service-detail__body p {
  color: #fff;
}

.service-detail__container {
  max-width: 1000px;
  margin: 0 auto;
}

.service-detail__header {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.service-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-detail__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.service-detail__content {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-detail__content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.service-list {
  list-style-type: circle;
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.service-list li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-list li i {
  color: var(--color-light-blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-box ul {
  list-style-type: circle;
  padding-left: 1.25rem;
}

.feature-box li {
  padding: 0.5rem 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.service-cta {
  padding: 5rem 0;
  background-color: #000010;
  text-align: center;
}

.service-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.service-cta__description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Case Detail Page
   ======================================== */
.case-hero-meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-light-blue);
  margin-bottom: 1rem;
}

.case-hero-desc {
  max-width: 720px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.case-content {
  padding: 6rem 0;
  background-color: #000010;
}

.case-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-section {
  margin-bottom: 4rem;
}

.case-section--results {
  background: var(--gradient-logo);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 4rem;
}

.case-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-brand) 1;
  margin-bottom: 2rem;
}

.case-section__number {
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.case-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.case-section__content {
  padding-left: 64px;
}

.case-section__content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.case-section__content strong {
  color: var(--color-light-blue);
  font-weight: 600;
}

.case-section__content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.case-section__content li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
  border-radius: 0 8px 8px 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.kpi-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.kpi-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.kpi-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-light-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.kpi-box .kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.kpi-box .kpi-item {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.kpi-box .kpi-item__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.kpi-box .kpi-item__value {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.results-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.results-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.results-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-light-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.result-item__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.result-item__value {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.back-to-list {
  padding: 4rem 0;
  text-align: center;
  background-color: #07244e;
}

@media (max-width: 768px) {
  .case-section__content {
    padding-left: 0;
  }

  .kpi-box .kpi-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   About Page
   ======================================== */
.mission-detail {
  padding: 6rem 0;
  background: var(--gradient-logo);
}

.mission-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mission-detail__card {
  text-align: center;
  padding: 3rem 2rem;
}

.mission-detail__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-detail__icon i {
  font-size: 1.75rem;
  color: white;
}

.about-gradient-wrap {
  background: var(--gradient-origin-story);
}

.company-overview {
  padding: 6rem 0;
}

.company-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  overflow: hidden;
}

.company-overview__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  padding: 1.5rem 2rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-overview__item:last-child {
  border-bottom: none;
}

.company-overview__label {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  padding-top: 0.1rem;
  text-shadow: 0 1px 7px rgb(128 141 160 / 85%);
}

.company-overview__value {
  color: #fff;
  line-height: 1.8;
  font-size: 0.95rem;
  text-shadow: 0 1px 7px rgb(128 141 160 / 85%);
  margin: 0;
}

.company-overview__value a {
  color: #fff;
  text-decoration: underline;
}

.origin-story {
  padding: 6rem 0;
}

.origin-story__content {
  max-width: 860px;
  margin: 3rem auto 0;
}

.origin-story__section {
  margin-bottom: 3.5rem;
}

.origin-story__section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.origin-story__section p {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.origin-story__highlight {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.members {
  padding: 6rem 0;
  background-color: #000010;
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.member-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem;
  transition: var(--transition-base);
}

.member-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.07);
}

.member-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.member-card__role {
  font-size: 0.9rem;
  color: var(--color-light-blue);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.member-card__bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
  .mission-detail__grid,
  .members__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-overview__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
  }
}

/* ========================================
   Cases Page
   ======================================== */
.cases-section {
  padding: 6rem 0;
  background-color: #000010;
}

.cases-intro {
  max-width: 800px;
}

.cases-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.case-card__header {
  padding: 2rem;
  background: var(--gradient-logo);
  color: white;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.case-card__industry {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.case-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.case-card__challenge {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.9;
}

.case-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-card__section {
  margin-bottom: 1.5rem;
}

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

.case-card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.case-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.case-card__results {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.result-badge {
  background-color: rgba(179, 216, 229, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light-blue);
  border: 1px solid rgba(179, 216, 229, 0.3);
}

.case-card__footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-light-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-base);
}

.case-card__link:hover {
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-form-section {
  padding: 6rem 0;
  background-color: #000010;
}

.contact-form-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-light-blue);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group label .required {
  color: #e4917e;
  margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-base);
}

.form-group select option {
  background-color: #07244e;
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-light-blue);
  background-color: rgba(255, 255, 255, 0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

.form-submit {
  text-align: center;
  margin-top: 3rem;
}

.privacy-agreement {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.privacy-agreement label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-agreement input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.privacy-agreement a {
  color: var(--color-light-blue);
  text-decoration: underline;
}

.contact-info {
  padding: 5rem 0;
  background-color: #07244e;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info__item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-base);
}

.contact-info__item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-info__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-info__icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-info__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light-blue);
  margin-bottom: 0.75rem;
}

.contact-info__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-info__text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-info__text a:hover {
  color: var(--color-light-blue);
}

.carry-over-banner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(120, 11, 179, 0.15);
  border: 1px solid rgba(179, 216, 229, 0.25);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.85);
}

.carry-over-banner i {
  color: var(--color-light-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Privacy Page
   ======================================== */
.privacy-content {
  padding: 6rem 0;
  background-color: #07244e;
}

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

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-light-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 2rem 0 1rem;
}

.privacy-section p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.privacy-section ul,
.privacy-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.9;
}

.privacy-section li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.privacy-updated {
  text-align: right;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
