.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 84vh, 840px);
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-1 {
  background-position: 66% center;
}

.hero-slide-2 {
  background-position: 60% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 24%,
      rgba(244, 251, 254, 0.72) 42%,
      rgba(244, 251, 254, 0.26) 58%,
      rgba(255, 255, 255, 0) 76%
    );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(221, 245, 251, 0.45) 0%,
    rgba(255, 255, 255, 0) 26%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.hero-logo {
  width: 184px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(24%) sepia(30%) saturate(700%) hue-rotate(165deg) brightness(70%);
  margin-bottom: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sky-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow-accent);
}

.hero-catch {
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.6);
}

.hero-catch span {
  display: block;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.hero-sub {
  font-size: 15px;
  color: #3f5666;
  line-height: 1.95;
  max-width: 460px;
  margin-bottom: 30px;
}

.hero-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sky-mid);
  border-radius: 20px;
  padding: 6px 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(35, 72, 90, 0.07);
  backdrop-filter: blur(2px);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  right: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 4px rgba(35, 72, 90, 0.25);
  transition: background 0.25s, width 0.25s;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 5px;
  background: var(--sky-accent);
}

.allsvc-more {
  margin-top: 40px;
  text-align: center;
}

.insta-section {
  background: var(--white);
}

.insta-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sky-light);
  cursor: pointer;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.insta-item:hover img {
  transform: scale(1.06);
}

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 72, 90, 0);
  transition: background 0.3s;
}

.insta-item:hover .insta-item-overlay {
  background: rgba(35, 72, 90, 0.18);
}

.pricing-text h2 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 16px;
}

.pricing-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}

.pricing-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
}

.pricing-point-dot {
  width: 32px;
  height: 32px;
  background: var(--yellow-cta);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.pricing-cta {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.pricing-cta h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-tel {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.pricing-tel-time {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.area-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 24px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.area-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--sky-light);
  border-radius: 8px;
  padding: 6px 14px;
}

.area-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--sky-light);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-map-placeholder {
  text-align: center;
  color: var(--sky-accent);
}

.area-map-icon {
  font-size: 56px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.area-map-placeholder p {
  font-size: 13px;
  color: var(--text-sub);
}

.final-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a5e7a 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.4;
}

.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.final-cta-tel {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.final-cta-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, var(--sky-pale) 100%);
  }

  .hero-slides {
    position: relative;
    height: 300px;
  }

  .hero-slide {
    position: absolute;
  }

  .hero-slide-1 {
    background-position: 60% center;
  }

  .hero-slide-2 {
    background-position: 55% center;
  }

  .hero-overlay {
    inset: 0 0 auto 0;
    height: 300px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 62%,
        rgba(255, 255, 255, 0.55) 84%,
        var(--sky-pale) 100%
      );
  }

  .hero-overlay::after {
    display: none;
  }

  .hero-inner {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-logo {
    width: 150px;
    margin-bottom: 18px;
  }

  .hero-catch {
    font-size: 22px;
    text-shadow: none;
  }

  .hero-catch span {
    font-size: 30px;
  }

  .hero-dots {
    top: 16px;
    right: 16px;
    bottom: auto;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 0 20px;
  }

  .hero-sub {
    font-size: 14px;
  }
}