@charset "UTF-8";

:root {
  --primary-color: #194169;
  --primary-soft: #2f5f8f;
  --secondary-color: #4b8fd6;
  --accent-color: #f2994a;
  --accent-strong: #eb7f23;
  --bg-light: #f7fafc;
  --bg-soft: #edf4fb;
  --bg-dark: #0f2740;
  --text-color: #23313f;
  --text-light: #5f6d79;
  --white: #ffffff;
  --border-color: rgba(25, 65, 105, 0.16);
  --glass-border: rgba(255, 255, 255, 0.26);
  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Roboto', sans-serif;
  --base-font-size: 16px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 24px rgba(12, 32, 52, 0.08);
  --shadow-md: 0 20px 50px rgba(11, 34, 57, 0.14);
  --shadow-lg: 0 30px 80px rgba(10, 28, 45, 0.2);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.2, 1.1, 0.25, 1);
  --section-space: clamp(72px, 9vw, 120px);
  --focus-ring-color: #2d6dc4;
  --focus-ring-width: 3px;
  --focus-ring-offset: 3px;
}

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

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-base);
  color: var(--text-color);
  line-height: 1.85;
  background: radial-gradient(circle at 15% -5%, #f4f9ff 0%, #f5f9fc 35%, #ffffff 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor .btn,
body.has-custom-cursor .service-card,
body.has-custom-cursor .work-card {
  cursor: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

:where(a, button, input, textarea, select):focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

button {
  border: 0;
  background: transparent;
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.bg-light {
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.86) 0%, rgba(247, 251, 255, 0.96) 100%);
}

.section {
  padding-block: var(--section-space);
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.38) 52%, transparent 84%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-smooth);
}

.btn:hover::after {
  transform: translateX(140%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(235, 127, 35, 0.32);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(235, 127, 35, 0.38);
}

.btn-outline {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(25, 65, 105, 0.28);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-white {
  color: var(--primary-color);
  background: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(10, 28, 45, 0.18);
}

.btn-white:hover {
  color: #fff;
  background: var(--secondary-color);
}

.magnetic-btn {
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.3s var(--ease-smooth);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  transition: transform 0.2s var(--ease-smooth), opacity 0.25s var(--ease-smooth);
}

.cursor-follower {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(25, 65, 105, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(3px);
  transition: width 0.25s var(--ease-smooth), height 0.25s var(--ease-smooth), border-color 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth);
}

body.is-hovering .cursor {
  transform: translate(-50%, -50%) scale(0.35);
}

body.is-hovering .cursor-follower {
  width: 62px;
  height: 62px;
  border-color: rgba(242, 153, 74, 0.64);
  background: rgba(242, 153, 74, 0.15);
}

.header {
  position: relative;
  z-index: 1000;
}

.header-top {
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, rgba(233, 244, 255, 0.9), rgba(247, 252, 255, 0.95));
  padding: 10px 0;
  font-size: 0.82rem;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.34s var(--ease-smooth), padding 0.34s var(--ease-smooth), opacity 0.28s var(--ease-smooth), border-color 0.28s var(--ease-smooth);
}

.header-top.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tagline {
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-utilities {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-link {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid rgba(25, 65, 105, 0.34);
  background: rgba(255, 255, 255, 0.85);
}

.portfolio-link:hover {
  color: #fff;
  background: var(--primary-color);
}

.accessibility-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accessibility-tools button {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(25, 65, 105, 0.24);
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-en);
  font-weight: 700;
  transition: background 0.22s var(--ease-smooth), color 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth);
}

.accessibility-tools button:hover,
.accessibility-tools button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
  border-color: transparent;
}

#font-sm {
  font-size: 0.75rem;
}

#font-md {
  font-size: 0.95rem;
}

#font-lg {
  font-size: 1.15rem;
}

.header-main,
.header .header-inner {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), padding 0.3s var(--ease-smooth);
  z-index: 1002;
}

.header-main.is-scrolled,
.header .header-inner.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(25, 65, 105, 0.09);
  box-shadow: 0 14px 28px rgba(15, 39, 64, 0.1);
}

.header-main .container,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo,
.header-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.logo i {
  color: var(--accent-color);
}

.nav,
.header-nav {
  position: relative;
}

.nav-list,
.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.nav-list a,
.header-nav a {
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-color);
  position: relative;
  padding: 8px 0;
}

.nav-list a::after,
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-list a:hover::after,
.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
  border-radius: 999px;
  padding: 0.6rem 1rem !important;
  box-shadow: 0 12px 26px rgba(19, 58, 99, 0.22);
}

.btn-nav::after {
  display: none;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(25, 65, 105, 0.25);
  background: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-color);
  transition: transform 0.25s var(--ease-smooth), opacity 0.25s var(--ease-smooth);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.06);
  will-change: transform;
  z-index: -2;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 153, 74, 0.25), transparent 58%),
    linear-gradient(120deg, rgba(8, 29, 50, 0.82), rgba(16, 58, 97, 0.48));
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.reveal-text {
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  line-height: 1.12;
  margin-bottom: 1.35rem;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 36px rgba(6, 20, 33, 0.25);
}

.text-line {
  display: block;
  overflow: hidden;
}

.text-line-inner {
  display: block;
  transform: translateY(118%);
  opacity: 0;
  transition: transform 0.95s var(--ease-smooth), opacity 0.95s var(--ease-smooth);
}

body.hero-ready .text-line-inner {
  transform: translateY(0);
  opacity: 1;
}

body.hero-ready .text-line:nth-child(2) .text-line-inner {
  transition-delay: 0.13s;
}

.hero-desc,
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

body.hero-ready .hero-desc,
body.hero-ready .hero-content .btn,
body.hero-ready .hero-content .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

body.hero-ready .hero-desc {
  transition-delay: 0.26s;
}

body.hero-ready .hero-content .btn {
  transition-delay: 0.37s;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.86;
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.scroll-indicator.is-hidden {
  opacity: 0;
  transform: translate(-50%, 12px);
}

.scroll-text {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), #fff);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
  background: #fff;
  animation: scrollline 1.9s linear infinite;
}

@keyframes scrollline {
  to {
    transform: translateY(78px);
  }
}

.project-highlights {
  margin-top: -56px;
  position: relative;
  z-index: 3;
  padding-bottom: 18px;
}

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

.highlight-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.highlight-card h2 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.62rem;
  font-family: var(--font-en);
}

.highlight-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.78;
}

.section-header {
  margin-bottom: clamp(30px, 4vw, 58px);
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.78rem;
}

.section-title {
  font-size: clamp(1.88rem, 4vw, 2.62rem);
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.divider {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.section-header.center .divider {
  margin-inline: auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.about-text h3 {
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.1rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 1.6rem 0 1.9rem;
}

.counter-item {
  background: #fff;
  border: 1px solid rgba(25, 65, 105, 0.12);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.counter-number {
  font-family: var(--font-en);
  font-size: clamp(1.42rem, 2.7vw, 2.2rem);
  line-height: 1;
  color: var(--primary-color);
  font-weight: 700;
}

.counter-suffix {
  font-family: var(--font-en);
  color: var(--secondary-color);
  font-weight: 700;
  margin-left: 3px;
}

.counter-label {
  display: block;
  margin-top: 4px;
  font-size: 0.77rem;
  color: var(--text-light);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
  transition: transform 0.55s var(--ease-smooth), box-shadow 0.55s var(--ease-smooth);
}

.about-image::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -20px;
  width: min(150px, 34%);
  aspect-ratio: 1;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(75, 143, 214, 0.24), rgba(242, 153, 74, 0.2));
  z-index: -1;
}

.about-image:hover img {
  transform: scale(1.03);
}

.wave-separator {
  color: #f2f7fc;
  line-height: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(25, 65, 105, 0.12);
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -35%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 143, 214, 0.24), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(75, 143, 214, 0.28);
}

.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.95rem;
  color: var(--secondary-color);
  background: linear-gradient(150deg, rgba(75, 143, 214, 0.14), rgba(242, 153, 74, 0.18));
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.read-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
}

.read-more::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.72rem;
}

.news-list {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 80px 1fr;
  align-items: center;
  gap: 18px;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(25, 65, 105, 0.14);
}

.news-date {
  font-family: var(--font-en);
  color: var(--text-light);
  font-size: 0.88rem;
}

.news-cat {
  text-align: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.news-title {
  font-weight: 600;
  color: var(--text-color);
}

.news-title:hover {
  color: var(--secondary-color);
}

.btn-container {
  display: flex;
  justify-content: center;
}

.recruit-section {
  padding-top: 0;
}

.recruit-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(120deg, rgba(14, 43, 71, 0.78), rgba(32, 89, 141, 0.5)), url('./assets/images/recruit-banner.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(280px, 34vw, 390px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.recruit-content {
  text-align: center;
  color: #fff;
  padding: 22px;
}

.recruit-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.recruit-content p {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section {
  padding-top: 20px;
  padding-bottom: var(--section-space);
}

.cta-inner {
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
  color: #fff;
  background: linear-gradient(130deg, #164a7a, #2f77b6 58%, #f29a57);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: -38% auto auto -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
}

.cta-inner h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 0.8rem;
  position: relative;
}

.cta-inner p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact {
  padding-top: 14px;
}

.contact-desc {
  color: var(--text-light);
  margin-top: 0.8rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 3.2vw, 36px);
  margin-top: 2.2rem;
}

.contact-info {
  border-radius: 24px;
  border: 1px solid rgba(25, 65, 105, 0.12);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.95));
  padding: clamp(24px, 3.6vw, 40px);
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-item i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(75, 143, 214, 0.2), rgba(242, 153, 74, 0.22));
  color: var(--secondary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.phone-number {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

.hours {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form,
.form {
  border-radius: 24px;
  border: 1px solid rgba(25, 65, 105, 0.12);
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(24px, 3.8vw, 42px);
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--primary-color);
}

.required {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #fff;
  background: #e05242;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(25, 65, 105, 0.22);
  border-radius: 12px;
  padding: 0.78rem 0.88rem;
  font-size: 0.96rem;
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(75, 143, 214, 0.17);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn,
.btn-full {
  width: 100%;
}

.footer {
  margin-top: 12px;
  background: linear-gradient(160deg, #0e2d49, #152f49 48%, #10253b);
  color: #fff;
  padding: clamp(52px, 8vw, 74px) 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.9rem;
}

.logo.white i {
  color: var(--accent-color);
}

.footer-links h3 {
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-links ul,
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.46rem;
}

.footer-links a {
  color: rgba(231, 241, 255, 0.76);
}

.footer-links a:hover {
  color: #fff;
}

.footer-copyright,
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  color: rgba(221, 233, 247, 0.66);
  font-size: 0.84rem;
}

.page-title {
  padding: clamp(68px, 10vw, 110px) 0 clamp(48px, 8vw, 74px);
  color: #fff;
  text-align: center;
  background: linear-gradient(130deg, rgba(12, 38, 61, 0.9), rgba(26, 70, 111, 0.66)), url('./assets/images/page-title-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-title h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.service-detail {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(25, 65, 105, 0.12);
  border-radius: 20px;
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: var(--shadow-sm);
}

.service-detail + .service-detail {
  margin-top: 1.3rem;
}

.service-detail h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  margin-bottom: 0.85rem;
  font-size: clamp(1.26rem, 2.3vw, 1.6rem);
}

.service-detail-icon {
  font-size: 1.35rem;
}

.service-features {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-feature {
  border-radius: 12px;
  border: 1px solid rgba(75, 143, 214, 0.24);
  background: rgba(75, 143, 214, 0.07);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.56rem 0.72rem;
}

.work-card {
  border-radius: 18px;
  border: 1px solid rgba(25, 65, 105, 0.12);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.work-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-body {
  padding: 1rem 1rem 1.2rem;
}

.work-body h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
}

.work-meta {
  color: var(--secondary-color);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.52rem;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.company-table th,
.company-table td {
  border: 1px solid rgba(25, 65, 105, 0.15);
  padding: 0.96rem 1rem;
  vertical-align: top;
  background: #fff;
}

.company-table th {
  width: 30%;
  color: var(--primary-color);
  background: rgba(75, 143, 214, 0.09);
  font-weight: 700;
  text-align: left;
}

.philosophy {
  padding-bottom: var(--section-space);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.philosophy-item {
  border-radius: 18px;
  border: 1px solid rgba(25, 65, 105, 0.12);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.1rem;
}

.philosophy-item h3 {
  font-family: var(--font-en);
  color: var(--secondary-color);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.philosophy-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.72rem;
  font-size: 1.12rem;
}

.cta {
  color: #fff;
  text-align: center;
  margin-top: var(--section-space);
  background: linear-gradient(130deg, #194169, #2f77b6);
  padding: clamp(50px, 8vw, 78px) 0;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.58rem, 3.8vw, 2.2rem);
  margin-bottom: 0.65rem;
}

.cta p {
  margin-bottom: 1.1rem;
  opacity: 0.92;
}

.contact-form-section {
  padding: var(--section-space) 0;
}

.contact-form-container {
  max-width: 880px;
  margin-inline: auto;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--text-light);
  font-size: 0.83rem;
  line-height: 1.7;
}

.btn-large {
  padding: 0.95rem 1.7rem;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.85s var(--ease-smooth), opacity 0.85s var(--ease-smooth);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-stagger {
  transform: translateY(28px);
}

.reveal.is-visible,
.reveal-up.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .header-top .container {
    flex-wrap: wrap;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image::after {
    right: -10px;
    bottom: -12px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-features,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1200px, 100% - 28px);
  }

  .header-top {
    padding: 8px 0;
  }

  .header-top .container {
    align-items: flex-start;
    gap: 8px;
  }

  .tagline {
    font-size: 0.75rem;
  }

  .header-utilities {
    width: 100%;
    justify-content: space-between;
  }

  .header-main .container,
  .header-inner {
    min-height: 68px;
  }

  body.corporate-home .header-main {
    top: var(--header-top-offset, 42px);
  }

  body.corporate-home .header-top.is-hidden + .header-main {
    transform: translate3d(0, calc(-1 * var(--header-top-offset, 42px)), 0);
  }

  body.corporate-home main {
    padding-top: var(--header-main-offset, 68px);
  }

  .hamburger {
    display: inline-flex;
  }

  .header-main .nav-list,
  .header-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(310px, 88vw);
    border-radius: 16px;
    border: 1px solid rgba(25, 65, 105, 0.14);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
  }

  .header-main .nav-list.active,
  .header-nav.active {
    display: block;
  }

  .header-main .nav-list,
  .header-nav ul {
    list-style: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-main .nav-list li,
  .header-nav li {
    border-bottom: 1px solid rgba(25, 65, 105, 0.08);
  }

  .header-main .nav-list li:last-child,
  .header-nav li:last-child {
    border-bottom: none;
  }

  .header-main .nav-list a,
  .header-nav a {
    display: block;
    padding: 0.86rem 1rem;
  }

  .header-main .nav-list a::after,
  .header-nav a::after {
    display: none;
  }

  .header-main .nav-list .btn-nav {
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 92svh;
  }

  .project-highlights {
    margin-top: -42px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
    display: grid;
    gap: 10px;
  }

  .footer-links ul {
    list-style: none;
  }

  .page-title {
    padding-top: 62px;
  }
}

@media (max-width: 560px) {
  .portfolio-link {
    font-size: 0.7rem;
  }

  .accessibility-tools button {
    width: 31px;
    height: 31px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .hero-content .btn {
    width: auto;
  }

  .scroll-indicator {
    bottom: 18px;
  }

  .contact-form,
  .form,
  .contact-info {
    padding: 18px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .noise-overlay {
    display: none;
  }

  .reveal,
  .reveal-up,
  .text-line-inner {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Corporate Home Redesign (Wa-modern, distinct from docs/index)
   ========================================================= */

.cursor,
.cursor-follower {
  display: none;
}

body.has-custom-cursor .cursor,
body.has-custom-cursor .cursor-follower {
  display: block;
}

body.corporate-home {
  color: #1f2b36;
  background-color: #f4efe5;
  background-image: radial-gradient(circle at 12% -8%, rgba(194, 168, 124, 0.2), transparent 45%);
  transition: background-color 0.8s var(--ease-smooth), background-image 0.8s var(--ease-smooth);
}

body.corporate-home.tone-0 {
  background-color: #f4efe5;
  background-image: radial-gradient(circle at 12% -8%, rgba(194, 168, 124, 0.2), transparent 45%);
}

body.corporate-home.tone-1 {
  background-color: #f1ece2;
  background-image: radial-gradient(circle at 88% 8%, rgba(142, 161, 179, 0.22), transparent 48%);
}

body.corporate-home.tone-2 {
  background-color: #ece7dd;
  background-image: radial-gradient(circle at 90% 18%, rgba(68, 88, 108, 0.17), transparent 56%);
}

body.corporate-home.tone-3 {
  background-color: #f6f2ea;
  background-image: radial-gradient(circle at 10% 24%, rgba(184, 148, 92, 0.2), transparent 50%);
}

body.corporate-home.tone-4 {
  background-color: #eeebe3;
  background-image: radial-gradient(circle at 78% 0%, rgba(126, 146, 166, 0.17), transparent 45%);
}

body.corporate-home.tone-5 {
  background-color: #f7f3ec;
  background-image: radial-gradient(circle at 16% 8%, rgba(175, 148, 102, 0.18), transparent 50%);
}

body.corporate-home .header-top {
  background: rgba(246, 241, 230, 0.96);
  border-bottom: 1px solid rgba(54, 70, 86, 0.2);
}

body.corporate-home .header-main {
  position: fixed;
  top: var(--header-top-offset, 46px);
  left: 0;
  width: 100%;
  z-index: 1003;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

body.corporate-home .header-top.is-hidden + .header-main {
  transform: translate3d(0, calc(-1 * var(--header-top-offset, 46px)), 0);
}

body.corporate-home main {
  padding-top: var(--header-main-offset, 78px);
}

body.corporate-home .tagline {
  color: #4a5560;
}

body.corporate-home .portfolio-link {
  border-color: rgba(45, 63, 81, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

body.corporate-home .portfolio-link:hover {
  background: #2d4255;
}

body.corporate-home .accessibility-tools button {
  border-color: rgba(45, 63, 81, 0.24);
  background: rgba(255, 255, 255, 0.74);
  color: #2f4356;
}

body.corporate-home .header-main {
  background: rgba(249, 246, 239, 0.78);
  border-bottom: 1px solid rgba(53, 70, 89, 0.12);
}

body.corporate-home .header-main.is-scrolled {
  background: rgba(249, 246, 239, 0.94);
  border-color: rgba(50, 66, 85, 0.22);
  box-shadow: 0 12px 32px rgba(30, 42, 53, 0.14);
}

body.corporate-home .logo,
body.corporate-home .header-logo a {
  color: #2a3f54;
}

body.corporate-home .footer-brand .logo {
  color: #ffffff;
}

body.corporate-home .logo i {
  color: #9e7c46;
}

body.corporate-home .btn-nav {
  background: linear-gradient(130deg, #334a61, #45607a);
}

.home-kv {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 9vw, 104px);
}

.home-kv__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.62;
}

.home-kv .container {
  position: relative;
  z-index: 1;
}

.home-kv__frame {
  display: grid;
  grid-template-columns: 70px 1fr minmax(280px, 42%);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
}

.home-kv__vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.42em;
  font-family: var(--font-en);
  font-size: 0.74rem;
  color: rgba(42, 63, 84, 0.62);
  justify-self: center;
  position: relative;
}

.home-kv__vertical::after {
  content: '';
  display: block;
  width: 1px;
  height: 108px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, rgba(87, 105, 123, 0.2), rgba(87, 105, 123, 0.72));
}

.home-kv__copy {
  position: relative;
}

.home-kv__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: #4f6477;
  text-transform: uppercase;
}

.home-kv__tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(69, 95, 121, 0.66);
}

.home-kv__title {
  font-size: clamp(2.08rem, 4.7vw, 3.9rem);
  line-height: 1.18;
  letter-spacing: 0.06em;
  color: #24374b;
  margin-bottom: 1rem;
}

.home-kv__lead {
  color: #4f5b67;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

.home-kv__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-kv__gallery {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
}

.home-kv__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(55, 72, 89, 0.18);
  box-shadow: 0 8px 16px rgba(34, 47, 60, 0.12);
}

.home-kv__visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(65, 85, 103, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 48px rgba(32, 45, 58, 0.2);
  position: relative;
}

.home-kv__visual img {
  width: 100%;
  height: clamp(350px, 42vw, 580px);
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.home-kv .hero-parallax {
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center center;
}

.home-kv__visual figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-family: var(--font-en);
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(29, 45, 60, 0.76);
}

.home-kv .scroll-indicator {
  bottom: 24px;
}

.home-kv .scroll-text {
  color: rgba(59, 79, 99, 0.92);
}

.home-kv .scroll-line {
  background: linear-gradient(to bottom, rgba(72, 93, 114, 0.2), rgba(72, 93, 114, 0.78));
}

.home-kv .scroll-line::before {
  background: #7d6034;
}

.care-principles {
  padding-top: clamp(52px, 7vw, 90px);
}

.principle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 18px;
}

.principle-list::before {
  content: none;
}

.principle-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: flex-start;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 82, 100, 0.16);
  padding: 18px 20px;
  box-shadow: 0 10px 20px rgba(34, 46, 58, 0.08);
}

.principle-glyph {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #36526d;
  background: rgba(97, 122, 147, 0.16);
}

.principle-item h3 {
  font-size: clamp(1.16rem, 2.1vw, 1.42rem);
  margin-bottom: 0.4rem;
  color: #2c4257;
}

.principle-item p {
  color: #54606a;
}

.timeline-flow {
  padding-top: clamp(56px, 8vw, 96px);
}

.flow-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.flow-list::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(47, 65, 83, 0.2), rgba(47, 65, 83, 0.85), rgba(47, 65, 83, 0.2));
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 10px 0 10px;
}

.flow-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  background: #2f4459;
  box-shadow: 0 10px 20px rgba(30, 45, 60, 0.24);
  z-index: 2;
}

.flow-body {
  border-radius: 16px;
  border: 1px solid rgba(48, 66, 84, 0.16);
  background: rgba(255, 255, 255, 0.75);
  padding: 16px 18px;
  transition: transform 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth), background-color 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.flow-body h3 {
  font-size: 1.16rem;
  margin-bottom: 0.4rem;
  color: #30485f;
}

.flow-body p {
  color: #55616d;
}

.flow-item.is-active .flow-body {
  transform: translateX(10px);
  border-color: rgba(158, 124, 70, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 26px rgba(33, 45, 57, 0.14);
}

.flow-item.is-active .flow-index {
  background: #8f6f3f;
}

.flow-visual {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(53, 72, 90, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 30px rgba(33, 46, 59, 0.15);
}

.flow-visual img {
  width: 100%;
  height: clamp(350px, 44vw, 560px);
  object-fit: cover;
}

.flow-visual figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #4f5f6d;
  border-top: 1px solid rgba(54, 72, 90, 0.14);
}

.assurance-band {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.assurance-shell {
  border-radius: 24px;
  border: 1px solid rgba(56, 75, 94, 0.18);
  background: linear-gradient(132deg, rgba(249, 245, 239, 0.95), rgba(237, 231, 222, 0.95));
  box-shadow: 0 24px 48px rgba(32, 45, 56, 0.12);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.assurance-item {
  text-align: center;
  padding: 12px 10px;
  border-right: 1px solid rgba(58, 77, 96, 0.16);
}

.assurance-item:last-child {
  border-right: none;
}

.assurance-value {
  margin: 0;
  line-height: 1;
  font-family: var(--font-en);
}

.assurance-value .counter-number {
  font-size: clamp(2.1rem, 4.7vw, 3.8rem);
  color: #2e455c;
}

.assurance-suffix {
  font-size: 1.16rem;
  color: #8d6d3e;
  margin-left: 4px;
}

.assurance-label {
  margin-top: 0.62rem;
  color: #5c6872;
  font-size: 0.9rem;
}

.voice-strip {
  padding-top: clamp(54px, 8vw, 92px);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.voice-panel {
  border-radius: 16px;
  border: 1px solid rgba(48, 67, 86, 0.16);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 18px;
  box-shadow: 0 12px 24px rgba(36, 49, 62, 0.08);
}

.voice-panel p {
  color: #4f5b66;
  margin-bottom: 0.85rem;
}

.voice-panel span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3b5268;
}

.explore-pages {
  padding-top: clamp(54px, 8vw, 92px);
}

.page-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-link-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(48, 67, 86, 0.18);
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(36, 49, 62, 0.12);
  transition: transform 0.42s var(--ease-smooth), border-color 0.42s var(--ease-smooth), box-shadow 0.42s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.page-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158, 124, 70, 0.48);
  box-shadow: 0 24px 48px rgba(33, 45, 57, 0.18);
}

.page-link-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(158, 124, 70, 0.12), rgba(142, 161, 179, 0.08));
}

.page-link-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-smooth), filter 0.55s var(--ease-smooth);
  filter: brightness(0.88) contrast(1.04);
}

.page-link-card:hover .page-link-image img {
  transform: scale(1.08);
  filter: brightness(0.94) contrast(1.06);
}

.page-link-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 63, 84, 0.68), rgba(44, 66, 87, 0.42));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.42s var(--ease-smooth);
}

.page-link-card:hover .page-link-overlay {
  background: linear-gradient(135deg, rgba(42, 63, 84, 0.58), rgba(44, 66, 87, 0.32));
}

.page-link-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.32);
  transition: transform 0.42s var(--ease-smooth), background-color 0.42s var(--ease-smooth), border-color 0.42s var(--ease-smooth);
}

.page-link-card:hover .page-link-icon {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-link-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-link-content h3 {
  font-size: 1.32rem;
  color: #2c4257;
  margin-bottom: 0.7rem;
}

.page-link-content p {
  color: #54606a;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.page-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(125, 97, 54, 0.14);
  color: #7d6136;
  font-size: 0.88rem;
  align-self: flex-start;
  transition: background-color 0.32s var(--ease-smooth), transform 0.32s var(--ease-smooth);
}

.page-link-card:hover .page-link-arrow {
  background: rgba(125, 97, 54, 0.28);
  transform: translateX(5px);
}

.contact-cta {
  padding-top: clamp(58px, 8vw, 96px);
}

.contact-cta__grid {
  border-radius: 26px;
  border: 1px solid rgba(54, 73, 92, 0.18);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 50px rgba(32, 45, 56, 0.14);
  padding: clamp(20px, 3.4vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 30px);
}

.contact-cta__lead h2 {
  font-size: clamp(1.5rem, 3.1vw, 2.3rem);
  color: #2b4156;
  margin: 0.2rem 0 0.8rem;
}

.contact-cta__lead p {
  color: #535f69;
  margin-bottom: 0.84rem;
}

.contact-cta__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-cta__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3e5569;
  font-weight: 600;
}

.contact-cta__points i {
  color: #7d6136;
}

.contact-cta__phone {
  font-family: var(--font-en);
  font-size: clamp(1.7rem, 3.7vw, 2.5rem);
  color: #2c4256;
  line-height: 1.2;
  margin-top: 0.9rem;
}

.contact-cta__form {
  border-radius: 18px;
  border: 1px solid rgba(52, 70, 88, 0.16);
  background: rgba(255, 255, 255, 0.95);
  padding: clamp(16px, 2.6vw, 26px);
}

.contact-cta__form .submit-btn {
  margin-top: 0.2rem;
}

body.corporate-home .footer {
  background: linear-gradient(155deg, #24384c, #2d4358 48%, #293b4d);
}

@media (max-width: 1100px) {
  .home-kv__frame {
    grid-template-columns: 54px 1fr;
  }

  .home-kv__visual {
    grid-column: 2 / 3;
  }

  .assurance-shell,
  .voice-grid,
  .page-links-grid {
    grid-template-columns: 1fr;
  }

  .assurance-item {
    border-right: none;
    border-bottom: 1px solid rgba(58, 77, 96, 0.16);
  }

  .assurance-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .home-kv {
    padding-top: clamp(36px, 8vw, 76px);
  }

  .home-kv__frame {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-kv__vertical {
    writing-mode: horizontal-tb;
    letter-spacing: 0.26em;
    justify-self: flex-start;
  }

  .home-kv__vertical::after {
    width: 84px;
    height: 1px;
    margin: 10px 0 0;
  }

  .home-kv__visual,
  .home-kv__copy {
    grid-column: auto;
  }

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

  .flow-layout {
    grid-template-columns: 1fr;
  }

  .principle-list::before,
  .flow-list::before {
    left: 21px;
  }

  .flow-item {
    grid-template-columns: 58px 1fr;
  }
}

@media (max-width: 640px) {
  .home-kv__title {
    letter-spacing: 0.03em;
  }

  .home-kv__lead {
    font-size: 0.96rem;
  }

  .home-kv__actions {
    flex-direction: column;
  }

  .home-kv__actions .btn {
    width: 100%;
  }

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

  .home-kv__gallery img:first-child {
    display: none;
  }

  .home-kv .scroll-indicator {
    display: none;
  }

  .principle-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .flow-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-index {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .flow-item.is-active .flow-body {
    transform: translateX(0);
  }

  .contact-cta__phone {
    font-size: 1.9rem;
  }
}
