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

:root {
  --teal: #14B8A6;
  --teal-light: #2DD4BF;
  --teal-dim: rgba(20, 184, 166, 0.1);
  --navy: #0b172f;
  --navy-light: #0f2045;
  --navy-lighter: #162a52;
  --white: #f0f4f8;
  --white-pure: #ffffff;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --font: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 23, 47, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.08);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--teal);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(11,23,47,0.2) 0%, var(--navy) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-label {
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-tagline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white-pure) 0%, var(--gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 48px;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 244, 248, 0.2);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Dividers ===== */
.divider {
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.divider-line {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 184, 166, 0.06) 10%,
    rgba(20, 184, 166, 0.3) 30%,
    var(--teal) 50%,
    rgba(20, 184, 166, 0.3) 70%,
    rgba(20, 184, 166, 0.06) 90%,
    transparent 100%
  );
  position: relative;
}

.divider-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.3), transparent);
  filter: blur(2px);
}

/* Accent line inside sections */
.accent-line {
  height: 1px;
  margin: 56px 0;
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    rgba(20, 184, 166, 0.2) 40%,
    transparent 100%
  );
}

/* ===== Section Common ===== */
.section-label {
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--white);
}

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

/* ===== Services ===== */
.services {
  padding: 72px 0;
}

.services-lead {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 780px;
  margin: -24px auto 48px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: var(--navy);
  transition: background 0.3s, padding-left 0.3s;
  cursor: pointer;
}

.service-card:hover {
  background: var(--navy-light);
  padding-left: 44px;
}

.service-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  min-width: 32px;
  font-variant-numeric: tabular-nums;
}

.service-body { flex: 1; }

.service-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

.service-arrow {
  font-size: 1.2rem;
  color: var(--gray);
  transition: color 0.3s, transform 0.3s;
  min-width: 24px;
  text-align: center;
}

.service-card:hover .service-arrow {
  color: var(--teal);
  transform: translateX(4px);
}

/* ===== About ===== */
.about {
  padding: 64px 0;
  background: var(--navy-light);
}

/* Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.about-intro-left .section-label {
  text-align: left;
}

.about-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 20px;
}

.about-text:last-of-type { margin-bottom: 0; }

/* Profile */
.profile {
  /* no extra margin, accent-line handles spacing */
}

.profile-inner {
  background: var(--navy);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 40px 44px;
}

.profile-label {
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.profile-name-en {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.profile-bio {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 2;
}

/* MVV */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mvv-card {
  background: var(--navy);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 12px 12px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.mvv-card:hover {
  border-top-color: var(--teal-light);
  transform: translateY(-4px);
}

.mvv-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.mvv-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.mvv-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.9;
}

/* ===== Flow Num (shared) ===== */
.flow-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(20, 184, 166, 0.15);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1;
}

/* ===== Contact ===== */
.contact {
  padding: 64px 0;
  background: var(--navy-light);
  text-align: center;
}

.contact-lead {
  color: var(--gray);
  margin-top: -24px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  background: var(--navy);
  border: 1px solid rgba(20, 184, 166, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-4px);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.contact-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(20, 184, 166, 0.06);
  padding: 44px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(240, 244, 248, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.footer-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

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

.footer-nav a {
  color: var(--gray);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--gray);
  border-radius: 50%;
  transition: color 0.2s;
}

.footer-sns a:hover { color: var(--teal-light); }
.footer-sns svg { width: 16px; height: 16px; }

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.03em;
}

/* ===== Scroll Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== About Summary (Top page) ===== */
.about-summary {
  padding: 64px 0;
  background: var(--navy-light);
}

.about-summary-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-summary-left .section-label { text-align: left; }

.about-summary-left .btn {
  margin-top: 8px;
}

.section-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== Page Hero (Sub pages) ===== */
.page-hero {
  position: relative;
  padding: 140px 40px 64px;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 23, 47, 0.75) 0%,
    rgba(11, 23, 47, 0.9) 100%
  );
  z-index: 0;
}

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

.page-hero .section-label {
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--white-pure) 0%, var(--gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

.page-hero-sub {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ===== Service Detail (Sub pages) ===== */
.service-detail {
  padding: 56px 0;
}

.service-detail--alt {
  background: var(--navy-light);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-detail-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.service-detail-subtitle {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.service-detail-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 20px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-list li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

.service-detail-cta {
  margin-top: 24px;
}

/* Service Detail Content Layout */
.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.service-detail-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  opacity: 0.85;
}

.service-detail-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.service-detail-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 12px;
}

.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.service-detail-body ul li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.service-detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

/* ===== Flow Detail (Sub pages) ===== */
.flow-detail-section {
  padding: 72px 0;
}

.flow-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-detail-card {
  background: var(--navy-light);
  border: 1px solid rgba(20, 184, 166, 0.06);
  border-radius: 12px;
  padding: 36px 40px;
  transition: border-color 0.3s, transform 0.3s;
  display: grid;
  grid-template-columns: 1fr 240px;
  grid-template-rows: auto auto auto;
  gap: 0 40px;
}

.flow-detail-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
}

.flow-detail-card .flow-num {
  font-size: 2.2rem;
  margin-bottom: 8px;
  grid-column: 1;
}

.flow-detail-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--white);
  grid-column: 1;
}

.flow-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 1;
}

.flow-detail-list li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.flow-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
}

/* Flow Card Image */
.flow-card-image {
  grid-column: 2;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-image img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  opacity: 0.85;
}

/* ===== History (沿革) ===== */
.history-timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}

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

.history-date {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  min-width: 80px;
  font-variant-numeric: tabular-nums;
}

.history-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 96px 0;
  background: var(--navy-light);
  text-align: center;
}

.cta-section .contact-lead {
  margin-top: -24px;
  margin-bottom: 40px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 23, 47, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s;
    border-bottom: 1px solid rgba(20, 184, 166, 0.08);
  }

  .nav.open { transform: translateY(0); }
  .nav a::after { display: none; }

  .menu-toggle { display: flex; }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }

  .hero-tagline { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .scroll-indicator { bottom: 24px; }
  .divider { padding: 0 20px; }

  .services { padding: 56px 0; }
  .about, .contact { padding: 48px 0; }

  .service-card { padding: 24px 20px; flex-wrap: wrap; }
  .service-card:hover { padding-left: 20px; }

  .about-intro,
  .about-summary-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro-left .section-label,
  .about-summary-left .section-label,
  .section-title--left {
    text-align: center;
  }

  .about-summary-left .btn { display: block; text-align: center; }

  .page-hero { padding: 110px 20px 48px; }

  .flow-detail-section { padding: 48px 0; }
  .cta-section { padding: 48px 0; }

  .flow-detail-card {
    padding: 32px 24px;
    grid-template-columns: 1fr;
  }

  .flow-card-image {
    grid-column: 1;
    grid-row: auto;
    margin: 16px 0;
  }

  .flow-card-image img {
    max-width: 180px;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-image {
    order: -1;
  }

  .service-detail-image img {
    max-width: 240px;
  }

  .accent-line { margin: 40px 0; }

  .profile-inner { padding: 28px 24px; }

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

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

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

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
