/* ============================================
   まごころ設備 - Style Sheet
   Trust blue: #4A90D9 / White / Dark navy #1A2B42
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1A2B42;
  background: #fff;
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.75; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* --- Utilities --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.center { text-align: center; }
.sp-hide { }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4A90D9;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  color: #5a6a7a;
  max-width: 600px;
  margin-bottom: 50px;
}
.section-desc.center { margin-left: auto; margin-right: auto; }

/* --- Sample Banner --- */
.sample-banner {
  background: #1A2B42;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1000;
}
.sample-banner a { color: #7BB8F0; text-decoration: underline; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255,255,255,0.0);
  transition: background 0.4s, box-shadow 0.4s, top 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(26,43,66,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A2B42;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: #4A90D9;
  letter-spacing: 0.12em;
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A2B42;
  position: relative;
  transition: color 0.3s;
}
.nav-desktop a:hover { opacity: 1; color: #4A90D9; }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4A90D9;
  border-radius: 1px;
  transition: width 0.3s;
}
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.active { color: #4A90D9; }
.nav-desktop a.active::after { width: 100%; }
.nav-cta {
  background: #4A90D9 !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #3A7BC8 !important; opacity: 1 !important; }

/* Hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 950;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #1A2B42;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.35s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 940;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav-inner { padding: 100px 32px 40px; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #eef2f7;
}
.mobile-nav-cta {
  display: block;
  text-align: center;
  background: #4A90D9;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  margin-top: 24px;
  font-weight: 600;
}
.mobile-nav-phone { margin-top: 28px; text-align: center; }
.mobile-nav-phone-label { font-size: 0.8rem; color: #5a6a7a; }
.mobile-nav-phone-num { font-size: 1.4rem; font-weight: 700; color: #4A90D9; }

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,43,66,0.4);
  z-index: 930;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,43,66,0.82) 0%,
    rgba(74,144,217,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}
.hero-sub {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: #4A90D9;
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,144,217,0.35);
}
.btn-primary:hover {
  background: #3A7BC8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,144,217,0.4);
  opacity: 1;
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  opacity: 1;
}
.btn-full { width: 100%; }

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --- Message Band --- */
.message-band {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid #eef2f7;
}
.message-band-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.message-band-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A2B42;
}

/* --- Qualifications --- */
.qualifications {
  background: #fff;
  padding: 60px 0;
}
.qual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.qual-card {
  text-align: center;
  padding: 32px 20px;
  background: #F8FAFD;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.qual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74,144,217,0.1);
}
.qual-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.qual-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.qual-desc {
  font-size: 0.8rem;
  color: #5a6a7a;
  line-height: 1.7;
}

/* --- About --- */
.about { background: #F8FAFD; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-icon-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(74,144,217,0.08);
}
.about-badge {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: #4A90D9;
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(74,144,217,0.3);
}
.about-badge-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-unit { font-size: 0.65rem; font-weight: 500; line-height: 1.3; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4A90D9;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-body {
  font-size: 0.95rem;
  color: #4a5a6a;
  margin-bottom: 16px;
  line-height: 1.9;
}

/* --- Services --- */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: #F8FAFD;
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,144,217,0.1);
  border-color: rgba(74,144,217,0.15);
}
.service-icon { margin-bottom: 20px; }
.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  font-size: 0.78rem;
  background: #fff;
  color: #4A90D9;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(74,144,217,0.2);
  font-weight: 500;
}

/* --- Strength --- */
.strength { background: #F8FAFD; }
.strength-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.strength-num-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 36px 20px;
  box-shadow: 0 4px 24px rgba(74,144,217,0.06);
}
.strength-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #4A90D9;
  line-height: 1.1;
  margin-bottom: 8px;
}
.strength-num small {
  font-size: 1rem;
  font-weight: 600;
  color: #4A90D9;
}
.strength-num-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.strength-num-desc {
  font-size: 0.8rem;
  color: #5a6a7a;
  line-height: 1.7;
}
.strength-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strength-feature {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(74,144,217,0.06);
  border-top: 4px solid #4A90D9;
}
.strength-feature-num {
  font-size: 2rem;
  font-weight: 900;
  color: #4A90D9;
  opacity: 0.25;
  margin-bottom: 12px;
}
.strength-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.strength-feature p {
  font-size: 0.88rem;
  color: #5a6a7a;
  line-height: 1.8;
}

/* --- Works --- */
.works { background: #fff; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  background: #F8FAFD;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,144,217,0.12);
}
.work-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.work-card:hover .work-img img { transform: scale(1.05); }
.work-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4A90D9;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}
.work-body { padding: 24px; }
.work-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.work-body p {
  font-size: 0.85rem;
  color: #5a6a7a;
  line-height: 1.7;
  margin-bottom: 14px;
}
.work-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: #4A90D9;
  font-weight: 600;
}

/* --- Flow --- */
.flow { background: #F8FAFD; }
.flow-steps {
  max-width: 700px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}
.flow-step:not(:last-child) { border-bottom: 1px solid #e0e8f0; }
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: -1px;
  width: 2px;
  height: 20px;
  background: #4A90D9;
  opacity: 0.3;
  display: none;
}
.flow-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #4A90D9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.flow-step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-top: 4px;
}
.flow-step-content p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.7;
}

/* --- Voices --- */
.voices { background: #fff; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice-card {
  background: #F8FAFD;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s;
}
.voice-card:hover { transform: translateY(-3px); }
.voice-stars {
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.voice-text {
  font-size: 0.9rem;
  color: #4a5a6a;
  line-height: 1.85;
  margin-bottom: 20px;
}
.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-initial {
  width: 44px;
  height: 44px;
  background: #4A90D9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.voice-name { font-size: 0.88rem; font-weight: 600; }
.voice-type { font-size: 0.78rem; color: #5a6a7a; }

/* --- Company --- */
.company { background: #F8FAFD; }
.company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(74,144,217,0.06);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid #eef2f7; }
.company-table tr:last-child { border-bottom: none; }
.company-table th, .company-table td { padding: 18px 24px; text-align: left; font-size: 0.9rem; }
.company-table th {
  font-weight: 600;
  color: #1A2B42;
  width: 160px;
  background: #F8FAFD;
  border-radius: 8px;
  white-space: nowrap;
}
.company-table td { color: #4a5a6a; }
.company-table td a { color: #4A90D9; font-weight: 500; }

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, #4A90D9 0%, #1A2B42 100%);
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 8px;
}
.cta-band-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.cta-band-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.btn-white {
  background: #fff;
  color: #4A90D9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #f0f4f8;
  opacity: 1;
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  opacity: 1;
}
.sp-only { display: none; }

/* --- Area --- */
.area { background: #F8FAFD; }
.area-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
}
.area-main {
  background: #4A90D9;
  color: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.area-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.area-main p {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.7;
}
.area-sub {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(74,144,217,0.06);
}
.area-sub h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1A2B42;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.area-tags span {
  background: #EBF3FB;
  color: #4A90D9;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
}
.area-note {
  font-size: 0.78rem;
  color: #5a6a7a;
  line-height: 1.7;
}

/* --- Contact --- */
.contact { background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 0.95rem;
  color: #5a6a7a;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-phone {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F8FAFD;
  border-radius: 16px;
  padding: 24px;
}
.contact-phone svg { flex-shrink: 0; margin-top: 2px; }
.contact-phone-label { font-size: 0.8rem; color: #5a6a7a; margin-bottom: 2px; }
.contact-phone-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #4A90D9;
  letter-spacing: 0.02em;
}
.contact-phone-hours { font-size: 0.78rem; color: #5a6a7a; margin-top: 2px; }

/* Form */
.contact-form {
  background: #F8FAFD;
  border-radius: 24px;
  padding: 40px 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.required {
  background: #E85B5B;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.3s;
  color: #1A2B42;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4A90D9;
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* --- Footer --- */
.footer {
  background: #1A2B42;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline {
  font-size: 0.85rem;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-links a:hover { color: #7BB8F0; opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: #7BB8F0; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .strength-numbers { grid-template-columns: repeat(2, 1fr); }
  .strength-features { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .area-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sp-hide { display: none; }
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .header-inner { height: 64px; }
  .section { padding: 70px 0; }

  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .qual-grid { grid-template-columns: 1fr 1fr; }
  .sp-only { display: inline; }
  .message-band-inner { gap: 16px; justify-content: flex-start; }
  .message-band-item { font-size: 0.8rem; }
  .cta-band { padding: 48px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .area-grid { grid-template-columns: 1fr; }

  .strength-numbers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .strength-num-card { padding: 28px 16px; }
  .strength-num { font-size: 2.2rem; }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form { padding: 28px 24px; }

  .company-table th { width: 110px; padding: 14px 12px; font-size: 0.82rem; }
  .company-table td { padding: 14px 12px; font-size: 0.82rem; }

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

  .flow-step { gap: 20px; }
  .flow-step-num { width: 48px; height: 48px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .strength-numbers { grid-template-columns: 1fr 1fr; }
  .strength-num { font-size: 1.8rem; }
  .company-table-wrap { padding: 4px; }
  .company-table th, .company-table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }
  .company-table th { padding-bottom: 2px; background: none; }
  .company-table td { padding-top: 2px; }
}