:root {
  --header-h: 88px;
  --teal: #08bdc7;
  --teal-dark: #008fa4;
  --blue: #0b65c8;
  --navy: #052a5f;
  --text: #0f3363;
  --muted: #60738f;
  --line: #d7e7f3;
  --bg: #f7fbff;
  --white: #ffffff;
  --container: 1280px;
  --shadow: 0 18px 42px rgba(16, 92, 145, 0.11);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(215, 231, 243, 0.35);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(215, 231, 243, 0.9);
  box-shadow: 0 8px 22px rgba(5, 42, 95, 0.08);
}

main {
  padding-top: var(--header-h);
}

/* ==================== Sub-page Hero ==================== */
.page-hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 28%, rgba(8, 189, 199, 0.18), transparent 38%),
    radial-gradient(circle at 12% 76%, rgba(11, 101, 200, 0.12), transparent 42%),
    linear-gradient(120deg, #f7fbff 0%, #eaf5fb 60%, #d8ecf8 100%);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(8, 189, 199, 0.18) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 80%);
}

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

.page-hero .breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-hero .breadcrumb a {
  color: var(--teal-dark);
  margin-right: 8px;
}

.page-hero .breadcrumb a::after {
  content: " / ";
  color: var(--muted);
}

.page-hero .kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-hero .lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #284a7a;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  line-height: 1.95;
}

/* ==================== Info table (会社概要) ==================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
  line-height: 1.85;
}

.info-table th {
  width: 220px;
  color: var(--navy);
  background: #f4f9fc;
  font-weight: 800;
}

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

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

/* ==================== Greeting card ==================== */
.greeting-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.greeting-card .greeting-image {
  position: sticky;
  top: 112px;
}

.greeting-card .greeting-text .signature {
  margin-top: 24px;
  text-align: right;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.greeting-card .greeting-text p {
  margin: 0 0 16px;
  color: #284a7a;
  font-size: 15px;
  line-height: 2;
}

.greeting-card .greeting-text p:last-child {
  margin-bottom: 0;
}

.greeting-card .greeting-image {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #f4fbff 0%, #e7f5fb 60%, #d8ecf8 100%);
  display: grid;
  place-items: center;
  padding: 12px;
}

.greeting-card .greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creed-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.creed-list li {
  padding: 22px 24px;
  background: linear-gradient(135deg, #e9fbfc, #f4fbff);
  border-radius: 14px;
  border: 1px solid #d3eef5;
  text-align: center;
}

.creed-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.creed-list span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.creed-list em {
  display: block;
  margin-top: 10px;
  color: #355577;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.7;
  text-align: left;
}

/* ==================== Feature pillars (3-step) ==================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pillar {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillar .num {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pillar h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

/* ==================== FAQ ==================== */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-item dt {
  position: relative;
  padding-left: 36px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.faq-item dt::before {
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  content: "Q";
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.faq-item dd {
  position: relative;
  margin: 14px 0 0;
  padding-left: 36px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.95;
}

.faq-item dd::before {
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  content: "A";
  color: var(--teal-dark);
  background: #e9fbfc;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

/* ==================== Feature checklist ==================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 28px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-grid li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.feature-grid li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  content: "";
  background:
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
}

.feature-grid li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 9px;
  height: 5px;
  content: "";
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* ==================== Form ==================== */
.form-card {
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card .form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.form-card .form-row:first-child {
  padding-top: 0;
}

.form-card .form-row:last-child {
  border-bottom: 0;
}

.form-card label.row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  padding-top: 12px;
}

.form-card .req {
  display: inline-block;
  padding: 2px 10px;
  color: var(--white);
  background: #e35d6a;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.form-card .opt {
  display: inline-block;
  padding: 2px 10px;
  color: var(--muted);
  background: #eef3f7;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card input[type="date"],
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8, 189, 199, 0.18);
}

.form-card textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.form-submit .button {
  min-width: 280px;
}

.note-box {
  margin: 0 0 28px;
  padding: 18px 22px;
  background: #f1f8fd;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: #284a7a;
  font-size: 14px;
  line-height: 1.85;
}

/* ==================== Sub-page responsive ==================== */
@media (max-width: 1024px) {
  .greeting-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }

  .creed-list,
  .pillars {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 14px 18px;
  }

  .info-table th {
    border-bottom: 0;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-card .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-card label.row-label {
    padding-top: 0;
  }
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: auto;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #062b5b;
  font-size: 15px;
  font-weight: 800;
}

.global-nav a {
  position: relative;
  white-space: nowrap;
}

.global-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transition: width 0.2s ease;
}

.global-nav a:hover::after,
.global-nav .is-current::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button,
.nav-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #08c6ce, var(--teal-dark));
  box-shadow: 0 16px 32px rgba(0, 164, 181, 0.28);
}

.button-outline {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(5, 54, 103, 0.16);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  display: block;
  padding: 0;
  background: #fff;
}

.hero-static-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 68%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 45%, rgba(0, 181, 226, 0.055), transparent 34%),
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 1) 62%, rgba(255, 255, 255, 0.97) 82%, rgba(255, 255, 255, 0) 100%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(0, 181, 226, 0.13) 1px, transparent 1.5px);
  background-size: 23px 23px;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.18) 42%, transparent 62%);
}

.mv-hotspot {
  display: none;
}

.mv-hotspot-primary {
  left: 2.3%;
  top: 70%;
  width: 20.4%;
  height: 8.8%;
}

.mv-hotspot-secondary {
  left: 23.5%;
  top: 70%;
  width: 17.4%;
  height: 8.8%;
}

.hero-bg {
  display: none;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  right: -11%;
  width: 62%;
  height: 52%;
  content: "";
  border: 1px solid rgba(102, 202, 238, 0.14);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: blur(0.2px);
  transform: rotate(-13deg);
}

.hero-bg::before {
  top: 14%;
}

.hero-bg::after {
  top: 30%;
  right: -6%;
  width: 50%;
  height: 42%;
  opacity: 0.65;
  transform: rotate(-20deg);
}

.hero-inner {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: center;
  gap: 0;
  padding: 0 clamp(34px, 2.45vw, 46px) clamp(28px, 4vw, 64px);
}

.hero-inner::before {
  position: absolute;
  z-index: -1;
  left: -5%;
  top: 18%;
  width: 54%;
  height: 54%;
  content: "";
  background:
    radial-gradient(circle at 18% 36%, rgba(0, 181, 226, 0.08) 0 1px, transparent 2px),
    linear-gradient(118deg, transparent 0 42%, rgba(0, 181, 226, 0.08) 42.2%, transparent 56% 100%),
    linear-gradient(24deg, transparent 0 58%, rgba(11, 101, 200, 0.055) 58.2%, transparent 72% 100%);
  background-size: 26px 26px, 100% 100%, 100% 100%;
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 34% 48%, rgba(255, 255, 255, 1), transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(43vw, 590px);
  padding-top: 0;
  align-self: center;
  transform: translateY(-22px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 900;
  letter-spacing: 0;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 15px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 4.2vw, 68px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0;
  text-shadow: 0 6px 16px rgba(5, 42, 95, 0.08);
}

.hero h1 span {
  white-space: nowrap;
}

.lead {
  max-width: 560px;
  margin: clamp(24px, 2.8vw, 46px) 0 0;
  color: #173f70;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.72;
}

.hero-actions {
  width: min(43vw, 590px);
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(18px, 1.8vw, 28px);
  margin-top: clamp(32px, 4vw, 58px);
}

.hero-visual {
  display: none;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  top: 0;
  right: auto;
  width: min(111%, 858px);
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.18) contrast(1.08) brightness(1.04) drop-shadow(0 28px 38px rgba(4, 60, 112, 0.15));
  -webkit-mask-image:
    radial-gradient(ellipse at 58% 55%, #000 0 53%, rgba(0, 0, 0, 0.94) 61%, rgba(0, 0, 0, 0.42) 72%, transparent 86%),
    linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image:
    radial-gradient(ellipse at 58% 55%, #000 0 53%, rgba(0, 0, 0, 0.94) 61%, rgba(0, 0, 0, 0.42) 72%, transparent 86%),
    linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  right: -42px;
  top: 6px;
  width: 780px;
  height: 510px;
  content: "";
  background:
    radial-gradient(circle at 22% 72%, rgba(16, 185, 192, 0.1), transparent 12%),
    radial-gradient(circle at 72% 32%, rgba(11, 101, 200, 0.075), transparent 18%),
    repeating-radial-gradient(ellipse at 58% 52%, rgba(79, 190, 232, 0.1) 0 1px, transparent 2px 22px);
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0.54;
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  right: -36px;
  top: 32px;
  width: 720px;
  height: 440px;
  content: "";
  border: 1px solid rgba(77, 191, 232, 0.15);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: 0.54;
}

.reservation-panel {
  position: relative;
  z-index: 5;
  margin-top: clamp(-84px, -5vw, -48px);
}

.reservation-card,
.service-card,
.partner-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1.42fr 0.96fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 40px;
}

.reservation-heading {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reservation-heading h2,
.partner h2,
.contact h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.reservation-heading p,
.partner p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.reservation-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.reservation-features div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
}

.reservation-features strong {
  color: var(--navy);
  font-size: 14px;
}

.reservation-features span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.section {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.section-copy h2,
.section-title h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
}

.section-copy p:not(.section-kicker) {
  margin: 0 0 16px;
  color: #31577f;
  font-size: 15px;
  font-weight: 500;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.06);
}

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

.service {
  padding-top: 52px;
}

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

.service-card {
  overflow: hidden;
}

.service-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.04);
}

.service-body {
  position: relative;
  padding: 34px 30px 28px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.partner,
.cmp-section,
.contact {
  padding: 0 0 20px;
}

.partner-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 34px;
  box-shadow: none;
}

.partner-icon {
  width: 90px;
  height: 62px;
  background: url("../images/partner-handshake.png") center / cover;
  border-radius: 14px;
}

.cmp-banner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 160px 1fr 160px auto;
  align-items: center;
  gap: 30px;
  padding: 18px 40px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 72% 50%, rgba(16, 185, 192, 0.28), transparent 34%), linear-gradient(135deg, #00336f, #00549d);
  border-radius: var(--radius);
}

.cmp-logo-img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.cmp-logo strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.cmp-copy h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.cmp-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.cmp-banner > img {
  width: 160px;
  object-fit: contain;
}

.cmp-button {
  min-height: 48px;
  color: var(--navy);
  background: var(--white);
}

.news-layout {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 32px;
  row-gap: 18px;
  align-items: end;
}

.news-layout > .section-title {
  grid-column: 1;
  grid-row: 1;
}

.news-layout > .news-list {
  grid-column: 1 / -1;
  grid-row: 2;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 116px 142px 1fr 18px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-weight: 700;
}

.tag {
  justify-self: start;
  min-width: 86px;
  padding: 2px 12px;
  color: var(--blue);
  border: 1px solid #9fd1f7;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.news-list strong {
  color: var(--navy);
  font-size: 14px;
}

.news-more {
  position: static;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: end;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 24px 40px;
  box-shadow: none;
}

.phone {
  min-width: 260px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding-left: 22px;
  color: var(--teal-dark);
  border-left: 1px solid var(--line);
}

.phone strong {
  font-size: 28px;
  line-height: 1.1;
}

.phone small {
  grid-column: 2;
  color: var(--muted);
}

.site-footer {
  margin-top: 12px;
  padding: 42px 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, #00356f, #00224d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 34px;
}

.footer-col {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: auto;
  height: 34px;
}

.footer-company p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 15px;
}

.site-footer a:not(.brand):not(.page-top) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.copyright {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

.circle-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: #e9fbfc;
  border-radius: 50%;
}

.circle-icon.large {
  width: 76px;
  height: 76px;
}

.circle-icon.float {
  position: absolute;
  left: 30px;
  top: -31px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: 6px solid var(--white);
  box-sizing: content-box;
}

.icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.icon.calendar {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon.calendar::before {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 6px;
  height: 2px;
  content: "";
  background: currentColor;
}

.icon.globe {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon.globe::after {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 9px;
  height: 2px;
  content: "";
  background: currentColor;
}

.icon.home::before {
  position: absolute;
  inset: 8px 4px 3px;
  content: "";
  border: 2px solid currentColor;
}

.icon.home::after {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  content: "";
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon.monitor {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon.support {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon.chart::before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 4px;
  height: 9px;
  content: "";
  background: currentColor;
  box-shadow: 7px -5px 0 currentColor, 14px -10px 0 currentColor;
}

.arrow,
.chevron,
.arrow-dot,
.external {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.arrow::after,
.chevron::after {
  position: absolute;
  inset: 3px 5px 0 0;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.arrow-dot {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  vertical-align: middle;
}

.arrow-dot::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.text-link.small {
  margin-top: 14px;
  font-size: 14px;
}

.contact-icon {
  width: 72px;
  height: 72px;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.contact-icon::before {
  position: absolute;
  inset: 23px 18px;
  content: "";
  border: 3px solid var(--white);
}

.phone-icon {
  width: 28px;
  height: 28px;
  border: 4px solid currentColor;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
  transform: rotate(45deg);
}

.page-top {
  position: fixed;
  right: 36px;
  bottom: 28px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 31, 68, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.is-scrolled .page-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top::before {
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
  transform: translateY(3px) rotate(45deg);
}

@media (max-width: 1180px) {
  .global-nav {
    gap: 18px;
    font-size: 12px;
  }

  .nav-cta {
    padding-inline: 20px;
  }
}

@media (min-width: 1025px) and (max-height: 780px) {
  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 0;
    padding: 64px 0 96px;
    background:
      radial-gradient(circle at 80% 38%, rgba(94, 214, 255, 0.22), transparent 34%),
      linear-gradient(90deg, #fff 0%, #f7fcff 48%, #eaf7ff 100%);
  }

  .hero-static-image {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    position: relative;
    inset: auto;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0;
  }

  .hero-copy {
    max-width: 720px;
    transform: none;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    min-height: 0;
    padding-left: 0;
    transform: none;
  }

  .hero-visual img {
    width: min(100%, 680px);
    max-width: 100%;
    right: auto;
    top: 0;
  }

  .reservation-card,
  .partner-card,
  .contact-card,
  .cmp-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .split,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-layout > .news-list {
    grid-column: 1;
  }

  .news-more {
    position: static;
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .header-inner {
    height: 72px;
  }

  .brand img {
    height: 32px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-size: 14px;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 12px 8px;
  }

  .global-nav a::after {
    display: none;
  }

  .hero {
    padding: 48px 0 78px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1 span {
    white-space: normal;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .reservation-panel {
    margin-top: -20px;
  }

  .reservation-card,
  .partner-card,
  .contact-card {
    padding: 24px 20px;
  }

  .reservation-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .reservation-features,
  .service-grid,
  .news-list a {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .service {
    padding-top: 56px;
  }

  .news-list a {
    gap: 4px;
    padding: 14px 0;
  }

  .chevron {
    display: none;
  }

  .phone {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
  }

  .phone strong {
    font-size: 24px;
  }
}

/* ==================== Intro Video section ==================== */
.intro-video {
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}
.intro-video .section-title { margin-bottom: 18px; }
.intro-video .video-tagline {
  display: inline-block;
  margin: 14px 0 0;
  padding: 6px 18px;
  background: rgba(8, 189, 199, 0.1);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.intro-video .video-warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 22px;
  padding: 8px 18px;
  background: #fff8e1;
  border: 1px solid #ffe6a8;
  color: #8a5a00;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
}
.intro-video .container { text-align: center; }
.video-frame {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5, 42, 95, 0.18);
  border: 1px solid rgba(215, 231, 243, 0.9);
  background: #000;
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}
.video-meta {
  margin: 14px 0 0;
  color: #6b7c92;
  font-size: 12.5px;
}
.video-notes {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  color: #6b7c92;
  font-size: 12px;
  line-height: 1.85;
}
.video-notes li { margin: 0; }
.video-cta {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(5, 42, 95, 0.06);
  text-align: center;
}
.video-cta p {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.8;
}
.icon.volume {
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: radial-gradient(circle at 30% 50%, #000 28%, transparent 30%) no-repeat;
          mask: radial-gradient(circle at 30% 50%, #000 28%, transparent 30%) no-repeat;
}
@media (max-width: 768px) {
  .video-cta { padding: 22px 18px; }
  .video-notes { font-size: 11.5px; }
}

/* ==================== HERO ANIMATIONS (Parallax+) ==================== */

/* --- Keyframes --- */
@keyframes itl-kenburns {
  0%   { transform: scale(1.00) translate3d(0, 0, 0); }
  50%  { transform: scale(1.06) translate3d(-1.2%, -0.8%, 0); }
  100% { transform: scale(1.00) translate3d(0, 0, 0); }
}
@keyframes itl-float-y {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -12px, 0); }
}
@keyframes itl-float-orb-1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(18px, -22px, 0) scale(1.06); }
}
@keyframes itl-float-orb-2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-22px, 16px, 0) scale(0.95); }
}
@keyframes itl-float-orb-3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(14px, 18px, 0) scale(1.05); }
}
@keyframes itl-fade-up {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes itl-pulse-glow {
  0%, 100% { box-shadow: 0 14px 30px rgba(8, 189, 199, 0.32), 0 0 0 0 rgba(8, 189, 199, 0.40); }
  50%      { box-shadow: 0 18px 38px rgba(8, 189, 199, 0.40), 0 0 0 14px rgba(8, 189, 199, 0.00); }
}
@keyframes itl-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(8px); opacity: 1; }
}
@keyframes itl-drift {
  from { background-position: 0 0; }
  to   { background-position: 220px 220px; }
}

/* --- Ken-Burns on MV image (subtle slow zoom) --- */
.hero .hero-static-image {
  animation: itl-kenburns 22s ease-in-out infinite;
  will-change: transform;
}

/* --- Parallax: MV image moves slower than scroll (modern translate prop composes with kenburns transform) --- */
.hero .hero-static-image {
  translate: 0 calc(var(--scroll-y, 0) * 0.08px);
}
/* Move dashboard slightly with float */
.hero-visual img {
  animation: itl-float-y 7s ease-in-out infinite;
  will-change: transform;
}

/* --- Animated dot drift on hero ::after --- */
.hero::after {
  animation: itl-drift 60s linear infinite;
}

/* --- Floating decorative orbs --- */
.hero-orb {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
  will-change: transform;
}
.hero-orb-1 {
  width: 380px; height: 380px;
  left: -90px; top: 12%;
  background: radial-gradient(circle, rgba(8,189,199,0.55), transparent 70%);
  animation: itl-float-orb-1 11s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  right: 6%; top: 6%;
  background: radial-gradient(circle, rgba(11,101,200,0.32), transparent 70%);
  animation: itl-float-orb-2 13s ease-in-out infinite;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  right: 22%; bottom: 4%;
  background: radial-gradient(circle, rgba(102,202,238,0.40), transparent 70%);
  animation: itl-float-orb-3 9s ease-in-out infinite;
}
/* parallax shift on orbs */
.hero-orb-1 { translate: 0 calc(var(--scroll-y, 0) * -0.05px); }
.hero-orb-2 { translate: 0 calc(var(--scroll-y, 0) * 0.04px); }
.hero-orb-3 { translate: 0 calc(var(--scroll-y, 0) * -0.03px); }

/* --- Hero copy: fade-up sequence on body.is-loaded --- */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
body.is-loaded .hero-copy .eyebrow      { animation: itl-fade-up 0.85s ease-out 0.10s forwards; }
body.is-loaded .hero-copy h1            { animation: itl-fade-up 0.95s ease-out 0.28s forwards; }
body.is-loaded .hero-copy .lead         { animation: itl-fade-up 0.85s ease-out 0.52s forwards; }
body.is-loaded .hero-copy .hero-actions { animation: itl-fade-up 0.80s ease-out 0.74s forwards; }

/* --- CTA pulse glow on primary button (in hero only) --- */
.hero .button-primary {
  animation: itl-pulse-glow 2.6s ease-in-out infinite;
}
.hero .button-primary:hover {
  animation-play-state: paused;
}

/* --- Scroll indicator at bottom of hero --- */
.hero-scroll-indicator {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(18px, 3vw, 36px);
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(8, 142, 164, 0.55);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}
.hero-scroll-indicator::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--teal-dark);
  border-radius: 2px;
  animation: itl-scroll-bounce 1.6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-scroll-indicator { display: none; }
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- prefers-reduced-motion: turn everything off --- */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-static-image,
  .hero-visual img,
  .hero::after,
  .hero-orb,
  .hero .button-primary,
  .hero-scroll-indicator::after,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .reveal {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ==================== SECTION-WIDE SCROLL ANIMATIONS ==================== */

/* Update reveal to support stagger via --reveal-delay */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Service / pillar / FAQ cards: extra hover lift */
.service-card,
.pillar,
.faq-item {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    opacity 0.85s ease;
}
.service-card:hover,
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(5, 42, 95, 0.16);
}

/* News list rows: hover slide */
.news-list > a {
  transition: transform 0.35s ease, background-color 0.35s ease, opacity 0.85s ease;
}
.news-list > a:hover {
  transform: translateX(4px);
}

/* Section-kicker subtle slide-in (after reveal) */
.section-kicker {
  position: relative;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.is-visible .section-kicker::before,
.section-title.is-visible .section-kicker::before {
  transform: scaleX(1);
}

/* ==================== SECTION-SPECIFIC PARALLAX ==================== */

/* PHILOSOPHY: section image gets a soft parallax up while in view */
.philosophy .image-frame img {
  translate: 0 calc(var(--scroll-y, 0) * -0.04px);
  transition: translate 0.05s linear;
  will-change: transform;
}

/* CMP banner dashboard image: parallax + tilt */
.cmp-banner img:last-of-type {
  translate: 0 calc(var(--scroll-y, 0) * -0.025px);
  transition: translate 0.05s linear, transform 0.4s ease;
  will-change: transform;
}
.cmp-banner:hover img:last-of-type {
  transform: scale(1.02);
}

/* Greeting image: subtle parallax (sticky already, supplement with tiny tilt) */
.greeting-card .greeting-image {
  transition: transform 0.4s ease;
}
.greeting-card:hover .greeting-image {
  transform: translateY(-3px);
}

/* Reservation card: float-in from below */
.reservation-card { transition: transform 0.6s ease, box-shadow 0.6s ease; }
.reservation-card:hover { transform: translateY(-4px); }

/* Page hero kicker line decoration animation */
.page-hero .kicker {
  display: inline-block;
  position: relative;
  padding-left: 28px;
}
.page-hero .kicker::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  animation: itl-line-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@keyframes itl-line-grow {
  to { transform: scaleX(1); }
}

/* Page hero subtle drift on background dots */
.page-hero::after {
  animation: itl-drift 80s linear infinite;
}

/* Floating icons (.circle-icon) gentle bob */
@keyframes itl-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.circle-icon.float {
  animation: itl-bob 4s ease-in-out infinite;
}

/* Service-card image gentle zoom on hover */
.service-card img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover img {
  transform: scale(1.04);
}

/* Form card rows: stagger reveal already via .reveal-delay */

/* Partner card: hover scale */
.partner-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
}

/* Contact card: hover lift */
.contact-card {
  transition: transform 0.45s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
}

/* prefers-reduced-motion: kill section animations too */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .philosophy .image-frame img,
  .cmp-banner img:last-of-type,
  .circle-icon.float,
  .page-hero::after,
  .section-kicker::before,
  .page-hero .kicker::before {
    animation: none !important;
    transform: none !important;
    translate: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}

/* ==================== Web Production Landing Page ==================== */

/* Hero CTA row in page-hero */
.web-production-hero .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.web-production-hero {
  position: relative;
}
.web-production-hero .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.web-production-hero .page-hero-visual {
  position: relative;
  z-index: 1;
}
.web-production-hero .page-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(5, 42, 95, 0.16);
}
@media (max-width: 980px) {
  .web-production-hero .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Problem grid (6 cards) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 980px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  position: relative;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(5, 42, 95, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(5, 42, 95, 0.12);
}
.problem-card .problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 189, 199, 0.15), rgba(8, 189, 199, 0.06));
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
}
.problem-card .problem-text {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}
.process-steps::before {
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  z-index: 0;
  opacity: 0.35;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px 20px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(5, 42, 95, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.process-step:hover { transform: translateY(-4px); }
.process-step .step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}
.process-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.45;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* Support grid (6 items) */
.support-section {
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}
.support-section .support-lead {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: #284a7a;
  font-size: 15px;
  line-height: 2;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 980px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .support-grid { grid-template-columns: 1fr; } }
.support-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.support-grid li:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}
.support-grid li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

/* Final CTA section variant */
.final-cta-section {
  position: relative;
  padding: clamp(60px, 6vw, 90px) 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(8, 189, 199, 0.18), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(11, 101, 200, 0.10), transparent 42%),
    linear-gradient(120deg, #f7fbff 0%, #eaf5fb 60%, #d8ecf8 100%);
}
.final-cta-section .container {
  text-align: center;
  max-width: 820px;
}
.final-cta-section h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}
.final-cta-section p {
  margin: 0 0 32px;
  color: #284a7a;
  font-size: 15px;
  line-height: 1.95;
}
.final-cta-section .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== Web Production page tweaks ==================== */

/* Hero CTA row (now on plain .page-hero) */
.page-hero .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

/* Problem cards: more breathing room and softer numbering */
.problem-card {
  padding: 32px 30px;
  gap: 20px;
}
.problem-card .problem-icon {
  width: 52px;
  height: 52px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.problem-card .problem-text {
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 700;
}

/* Process steps: enlarged padding, clearer numbering */
.process-steps {
  gap: 18px;
  margin-top: 8px;
}
.process-step {
  padding: 28px 18px 24px;
}
.process-step .step-num {
  width: 44px;
  height: 44px;
  font-size: 16px;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.75;
}

/* Support grid: more padding, larger text */
.support-grid li {
  padding: 22px 26px;
  font-size: 15px;
  gap: 16px;
  line-height: 1.6;
}
.support-grid li::before {
  width: 32px;
  height: 32px;
  font-size: 16px;
}
.support-section .support-lead {
  margin-bottom: 44px;
  font-size: 15.5px;
  line-height: 2.05;
}

/* Final CTA: bigger CTA */
.final-cta-section h2 {
  margin-bottom: 20px;
}
.final-cta-section p {
  margin-bottom: 36px;
  font-size: 15.5px;
}

/* ==================== Web Production page – Polish v2 ==================== */

/* PROBLEM CARDS: brighter, more visual */
.problem-card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(5, 42, 95, 0.07);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.problem-card::before {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 130px;
  height: 130px;
  content: "?";
  display: grid;
  place-items: center;
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  color: rgba(8, 189, 199, 0.06);
  pointer-events: none;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(5, 42, 95, 0.14);
  border-color: rgba(8, 189, 199, 0.3);
}
.problem-card .problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(8, 142, 164, 0.30);
}
.problem-card .problem-text {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

/* PROCESS STEPS: bigger circles, connecting flow */
.process-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.process-steps::before {
  top: 38px;
  height: 3px;
  background: linear-gradient(90deg, rgba(8, 189, 199, 0.3) 0%, rgba(11, 101, 200, 0.3) 100%);
  opacity: 0.6;
}
.process-step {
  padding: 32px 18px 26px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(5, 42, 95, 0.06);
}
.process-step .step-num {
  width: 56px;
  height: 56px;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(8, 142, 164, 0.32);
  border: 4px solid var(--white);
}
.process-step h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 45px;
}
.process-step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 980px) {
  .process-step h3 { min-height: 0; }
}

/* SUPPORT GRID: each item gets a unique icon via :nth-child */
.support-grid {
  gap: 20px;
}
.support-grid li {
  position: relative;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(5, 42, 95, 0.06);
  font-size: 15px;
  font-weight: 700;
  gap: 18px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.support-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 189, 199, 0.4);
  box-shadow: 0 18px 40px rgba(5, 42, 95, 0.12);
}
.support-grid li::before {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 189, 199, 0.16), rgba(11, 101, 200, 0.10));
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 900;
}
.support-grid li:nth-child(1)::before { content: "🔄"; }
.support-grid li:nth-child(2)::before { content: "🛡"; }
.support-grid li:nth-child(3)::before { content: "💾"; }
.support-grid li:nth-child(4)::before { content: "✏"; }
.support-grid li:nth-child(5)::before { content: "📢"; }
.support-grid li:nth-child(6)::before { content: "📊"; }

/* FINAL CTA: stronger visuals */
.final-cta-section {
  padding: clamp(70px, 7vw, 100px) 0;
}
.final-cta-section h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  margin-bottom: 18px;
}
.final-cta-section p {
  font-size: 15.5px;
  margin-bottom: 36px;
}

/* PROBLEM-GRID: keep 3 cols but tighten gap */
.problem-grid {
  gap: 22px;
}

/* ==================== Web Production Page – Whitespace & Readability ==================== */

/* Section spacing wider */
.section {
  padding: clamp(72px, 8vw, 120px) 0;
}
.section + .section[style*="padding-top:0"] {
  padding-top: 0;
}

/* Tighter content max-width for body readability */
.section .section-title.center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 4.5vw, 64px);
}
.section .section-title.center h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.section .section-title.center .section-kicker {
  margin-bottom: 14px;
}

/* page-hero kicker spacing */
.page-hero { padding-bottom: clamp(60px, 7vw, 96px); }

/* ==================== Hybrid (AI × Creator) Section ==================== */
.hybrid-section {
  background: linear-gradient(170deg, #f8fdff 0%, #eef7fb 100%);
}
.hybrid-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px, 4.5vw, 64px);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(5, 42, 95, 0.10);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hybrid-card::before {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  content: "AI×人";
  display: grid; place-items: center;
  font-size: 48px; font-weight: 900;
  color: rgba(8, 189, 199, 0.05);
  letter-spacing: 0.05em;
}
.hybrid-text p {
  margin: 0 0 18px;
  color: #2a4768;
  font-size: 15.5px;
  line-height: 2.05;
}
.hybrid-text p:last-child { margin-bottom: 0; }
.hybrid-text strong {
  color: var(--navy);
  background: linear-gradient(transparent 70%, rgba(8, 189, 199, 0.22) 70%);
  padding: 0 2px;
}
.hybrid-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.hybrid-points li {
  padding: 18px 22px;
  background: linear-gradient(135deg, #f0fcfd 0%, #f4f9ff 100%);
  border: 1px solid #d3eef5;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hybrid-points strong {
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 800;
}
.hybrid-points span {
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 700;
}
.accent-text {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
@media (max-width: 980px) {
  .hybrid-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }
  .hybrid-card::before { display: none; }
}

/* Lead/note text improved line-height for readability */
.support-section .support-lead {
  font-size: 15.5px;
  line-height: 2.1;
  max-width: 820px;
}

/* Page hero lead wider line-height */
.page-hero .lead {
  line-height: 2.05;
  max-width: 760px;
}

/* Container widening on web-production specific contexts */
.problem-grid,
.process-steps,
.support-grid {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* Final CTA more breathing */
.final-cta-section {
  padding: clamp(80px, 8vw, 120px) 0;
}
.final-cta-section .container {
  max-width: 740px;
}

/* Process steps 4-step variant (operation-support) */
.process-steps.process-steps-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .process-steps.process-steps-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-steps.process-steps-4 { grid-template-columns: 1fr; }
}
