:root {
  --bg: #f5f8ff;
  --bg-soft: #edf3ff;
  --primary: #062a63;
  --primary-2: #0a3f90;
  --accent: #2a74ff;
  --text: #0f1f3d;
  --muted: #4d628d;
  --card: #ffffff;
  --line: rgba(9, 49, 117, 0.12);
  --shadow: 0 24px 50px rgba(12, 41, 98, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #ffffff 0%, #f4f8ff 40%, #e9f1ff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(44px);
  z-index: -1;
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb.a {
  width: 360px;
  height: 360px;
  background: #61a0ff;
  top: -120px;
  left: -120px;
}

.orb.b {
  width: 320px;
  height: 320px;
  background: #1f56c7;
  right: -120px;
  top: 20%;
  animation-delay: -4s;
}

.orb.c {
  width: 280px;
  height: 280px;
  background: #88bbff;
  bottom: -120px;
  left: 30%;
  animation-delay: -8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(16px);
  }
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 248, 255, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--primary);
  flex-shrink: 1;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(0.78rem, 1.35vw, 1.05rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--primary);
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(12, 41, 98, 0.12);
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
}

.brand-mark img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-mark--droplet {
  padding: 4px;
  background: linear-gradient(135deg, #eaf2ff 0%, #ffffff 100%);
}

.brand-mark--droplet img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  padding: 0;
}

.nav-icon-btn:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(18, 73, 187, 0.28);
}

.nav-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-icon-btn--wa:hover {
  background: linear-gradient(120deg, #128c7e, #25d366);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.2s;
}

.menu a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-social {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  transition: 0.22s ease;
}

.nav-social:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(18, 73, 187, 0.3);
}

.nav-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(28, 85, 202, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(28, 85, 202, 0.42);
}

.btn.light {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn.light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 5.6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #e7efff;
  color: #09327b;
  border: 1px solid rgba(33, 93, 212, 0.2);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  color: #233f72;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60% -30% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(58, 124, 255, 0.2), rgba(58, 124, 255, 0));
  z-index: -1;
}

.hero-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.hero-card-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 55%, #eaf2ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-card-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center 52%;
}

.pill-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  background: var(--bg-soft);
  color: var(--primary);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
}

section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.1vw, 2.3rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 75ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card:hover {
  transform: translateY(-4px);
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.card p,
.card li {
  color: #315080;
  font-size: 0.94rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.service-actions {
  margin-top: auto;
  padding-top: 0.4rem;
}

.price-table {
  display: grid;
  gap: 1rem;
}

.price-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.price-block h3 {
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(11, 54, 125, 0.16);
  color: #284474;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  color: var(--primary-2);
  white-space: nowrap;
}

.notice {
  border: 1px solid rgba(19, 88, 208, 0.25);
  background: #f2f7ff;
  color: #163f82;
  border-radius: var(--radius-md);
  padding: 0.9rem;
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.before-after:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(15, 22, 41, 0.35);
}

.gallery-tag {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(135deg, rgba(15, 22, 41, 0.78), rgba(15, 22, 41, 0.55));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.before-after:hover .gallery-tag,
.before-after:focus-within .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tag-cat {
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-tag-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.before-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 41, 0) 55%, rgba(15, 22, 41, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.before-after:hover::after {
  opacity: 1;
}

.before-after .label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 700;
  color: #f8fbff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.before-after .label span {
  padding: 0.55rem 0.7rem;
  background: var(--primary);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.before-after .label span:last-child {
  background: var(--accent);
  border-right: none;
}

.before-after .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after.single-shot .images {
  grid-template-columns: 1fr;
}

.before-after img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.before-after.single-shot img {
  aspect-ratio: 16 / 10;
}

.before-after:hover img {
  transform: scale(1.05);
}

.testimonials-section {
  padding-bottom: 3.2rem;
}

.testimonials-section .section-head {
  margin-bottom: 1.5rem;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonials-marquee {
  overflow: hidden;
  margin-top: 0.25rem;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonials-marquee 42s linear infinite;
}

@keyframes testimonials-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
}

.testimonials-group {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding-inline: 0.5rem;
}

.testimonial-card {
  flex: 0 0 min(320px, 78vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #e6a800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.testimonial-stars .star-dim {
  color: rgba(14, 31, 61, 0.18);
}

.testimonial-text {
  color: #315080;
  font-size: 0.94rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
}

.contact-pick-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: calc(100% - 2rem);
  width: min(380px, 100%);
  box-shadow: 0 28px 70px rgba(12, 41, 98, 0.28);
}

.contact-pick-dialog::backdrop {
  background: rgba(15, 31, 61, 0.45);
  backdrop-filter: blur(4px);
}

.contact-pick-inner {
  padding: 1.35rem 1.25rem 1.15rem;
  background: #fff;
  border-radius: inherit;
}

.contact-pick-inner h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-pick-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-pick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.contact-pick-actions .btn {
  width: 100%;
  text-align: center;
}

.contact-pick-close {
  width: 100%;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
  color: #2f4f82;
}

.contact-list a {
  color: var(--primary-2);
}

.map-wrap {
  margin-top: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.inquiry-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  color: #244373;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.inquiry-form .btn {
  margin-top: 0.2rem;
  width: fit-content;
}

.page-hero {
  padding: 5rem 0 2.4rem;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.breadcrumbs a {
  color: var(--primary-2);
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.list-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.list-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.list-card ul {
  margin-left: 1rem;
  color: #355486;
  display: grid;
  gap: 0.35rem;
}

.category-showcase {
  padding: 0.5rem 0 0.25rem;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-showcase-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-strip {
  margin-top: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #f6f9ff, #e9f1ff);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
  color: #4a6492;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-wrap,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-right {
    gap: 0.6rem;
  }
}

@media (max-width: 980px) {
  .gallery-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu {
    display: none;
  }
}

@media (max-width: 740px) {
  .category-showcase-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .gallery-grid,
  .gallery-grid--full {
    grid-template-columns: 1fr;
  }

  .gallery-tag {
    opacity: 1;
    transform: translateY(0);
  }

  .before-after::after {
    opacity: 0.6;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .nav-socials {
    display: none;
  }

  .nav-icon-btn {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.68rem;
    max-width: min(46vw, 9.5rem);
  }

  .nav-cta-group .btn.primary {
    padding-inline: 0.75rem;
    font-size: 0.85rem;
  }
}
