@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --base-white: #FAFAFA;
  --pearl: #F5F5F5;
  --vapor: #EFEFEF;
  --aqua-deep: #1A8F9E;
  --aqua-deep-dark: #157A87;
  --steel-blue: #4A7C8C;
  --alert-coral: #E8634D;
  --graphite: #2D2D2D;
  --hairline: #E8E8E8;
  --white: #FFFFFF;
  --shadow-1: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background-color: var(--base-white);
  color: var(--graphite);
  line-height: 1.6;
  font-size: 16px;
}

strong, b, p {
  color: inherit;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--aqua-deep);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--aqua-deep-dark);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--graphite);
  border: 1px solid var(--graphite);
}

.btn-secondary:hover {
  background-color: var(--graphite);
  color: var(--white);
  transform: scale(1.02);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-1);
  background: rgba(250, 250, 250, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--graphite);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--aqua-deep) 0%, var(--steel-blue) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  transform: rotate(45deg);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--aqua-deep);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  padding: 10px 24px;
  font-size: 13px;
}

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

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--graphite);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--base-white);
  padding: 24px;
  box-shadow: var(--shadow-2);
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--hairline);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(180deg, var(--base-white) 0%, #F0F4F5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(26, 143, 158, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--graphite);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease-out 0.2s forwards;
}

.hero-text .subtitle {
  font-size: 18px;
  color: var(--steel-blue);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 0.3s ease-out 0.6s forwards;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: scaleIn 0.6s ease-out 0.3s forwards;
}

.hero-pump {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--vapor) 100%);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pump-inner {
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--aqua-deep) 100%);
  border-radius: 40% 40% 45% 45%;
  position: relative;
  box-shadow: var(--shadow-2);
}

.hero-pump-inner::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 70%;
  height: 30%;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.hero-pump-flow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--aqua-deep), transparent);
  opacity: 0.6;
  animation: flowPulse 2s ease-in-out infinite;
}

.hero-pump-flow:nth-child(2) {
  width: 70%;
  animation-delay: 0.3s;
}

.hero-pump-flow:nth-child(3) {
  width: 55%;
  animation-delay: 0.6s;
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scaleX(0.9);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scaleX(1);
  }
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--steel-blue);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--pearl);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-1);
  transform: translateY(-4px);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 143, 158, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--aqua-deep);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--steel-blue);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-size: 12px;
  color: var(--graphite);
  opacity: 0.6;
}

.about-section {
  background: linear-gradient(180deg, var(--base-white) 0%, var(--pearl) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 24px;
}

.about-text .lead {
  font-size: 18px;
  color: var(--steel-blue);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--graphite);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--aqua-deep);
  flex-shrink: 0;
}

.about-images {
  position: relative;
  height: 450px;
}

.about-img {
  position: absolute;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.about-img-1 {
  width: 280px;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 3;
}

.about-img-2 {
  width: 240px;
  height: 180px;
  top: 120px;
  right: 0;
  z-index: 2;
}

.about-img-3 {
  width: 260px;
  height: 160px;
  bottom: 0;
  left: 60px;
  z-index: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--pearl);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: var(--white);
}

.advantage-card:hover .advantage-icon {
  background: var(--aqua-deep);
}

.advantage-card:hover .advantage-icon svg {
  stroke: var(--white);
  transform: scale(1.15);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 143, 158, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--graphite);
  transition: all 0.3s ease;
}

.advantage-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--steel-blue);
}

.stats-section {
  background: linear-gradient(135deg, var(--aqua-deep) 0%, var(--steel-blue) 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

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

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(26, 143, 158, 0.2);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
  text-align: right;
  padding-right: 60px;
  padding-left: 0;
}

.process-step:nth-child(odd) .process-content {
  padding-left: 60px;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--aqua-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-content {
  flex: 1;
  padding: 20px;
}

.process-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 14px;
  color: var(--steel-blue);
}

.team-section {
  background: linear-gradient(180deg, var(--base-white) 0%, var(--pearl) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(10%);
  transition: all 0.4s ease;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(45, 45, 45, 0.9));
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-overlay h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-overlay p {
  font-size: 14px;
  opacity: 0.8;
}

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

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 380px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
  scroll-snap-align: start;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite);
}

.review-info p {
  font-size: 12px;
  color: var(--steel-blue);
}

.review-text {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-date {
  font-size: 12px;
  color: var(--steel-blue);
}

.faq-section {
  background: linear-gradient(180deg, var(--base-white) 0%, var(--pearl) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite);
}

.faq-question span {
  font-size: 12px;
  color: var(--steel-blue);
  margin-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--aqua-deep);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--steel-blue);
  line-height: 1.7;
  background: var(--pearl);
  padding: 24px;
  border-radius: 8px;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  color: var(--steel-blue);
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--graphite);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--aqua-deep);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--aqua-deep);
  transition: opacity 0.2s ease;
}

.contact-item a:hover {
  opacity: 0.8;
}

.contact-hours h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 14px;
  color: var(--steel-blue);
}

.contact-form {
  background: var(--pearl);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--hairline);
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: var(--graphite);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--aqua-deep);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel-blue);
  opacity: 0.6;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.contact-map {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

.footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-2);
  max-width: 400px;
  z-index: 2000;
  display: block;
}

.cookie-banner h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--steel-blue);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--steel-blue);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--graphite);
}

.page-hero {
  padding: 140px 0 60px;
  background: var(--base-white);
}

.page-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--graphite);
}

.page-hero-visual {
  width: 200px;
  height: 150px;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--vapor) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-visual svg {
  width: 80px;
  height: 80px;
  stroke: var(--aqua-deep);
}

.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  background: linear-gradient(180deg, var(--base-white) 0%, var(--pearl) 100%);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--aqua-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.thanks-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--steel-blue);
  margin-bottom: 32px;
}

.legal-section {
  padding: 140px 0 80px;
  background: var(--base-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--graphite);
  margin: 32px 0 16px;
}

.legal-content p {
  font-size: 16px;
  color: var(--steel-blue);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 16px;
  color: var(--steel-blue);
  margin-bottom: 8px;
  list-style: disc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(45, 45, 45, 0.8));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 16px;
  font-weight: 500;
}

.gallery-overlay p {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
}

.service-detail-section {
  padding: 140px 0 80px;
  background: var(--base-white);
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail-header {
  margin-bottom: 40px;
}

.service-detail-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 16px;
}

.service-detail-header .price-tag {
  font-size: 24px;
  font-weight: 600;
  color: var(--aqua-deep);
}

.service-detail-body h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--graphite);
  margin: 40px 0 20px;
}

.service-detail-body p {
  font-size: 16px;
  color: var(--steel-blue);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-body ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.service-detail-body ul li {
  font-size: 16px;
  color: var(--graphite);
  margin-bottom: 12px;
  list-style: disc;
}

.service-detail-cta {
  background: var(--pearl);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.service-detail-cta h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 16px;
}

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

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .about-images {
    height: 300px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .header {
    height: 64px;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding-top: 64px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid,
  .advantages-grid,
  .stats-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    padding-left: 60px;
  }

  .process-step:nth-child(even) .process-content {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .process-number {
    left: 24px;
    transform: translateX(-50%);
  }

  .review-card {
    flex: 0 0 300px;
  }

  .page-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom a {
    margin: 0 12px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .about-feature {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
