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

:root {
  --bg-primary: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-light: #F2F4F6;
  --bg-darkest: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --text-tertiary: #4B5563;
  --text-muted: #9CA3AF;
  --accent-primary: #2E8B7A;
  --accent-primary-dark: #236B5F;
  --accent-secondary: #C9A962;
  --border-light: #E5E7EB;
  --border-medium: #374151;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-medium: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-smooth: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

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

@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-normal);
}

header.scrolled {
  border-bottom-color: var(--border-light);
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-primary);
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent-primary);
  color: var(--bg-white);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-cta:hover {
  background: var(--accent-primary-dark);
  transform: scale(1.02);
}

.btn-cta:active {
  transform: scale(0.98);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--bg-white);
  padding: 40px 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-smooth), opacity var(--transition-normal);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .btn-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  header .btn-cta {
    display: none;
  }
}

.hero-section {
  min-height: 100vh;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, #FFFEFA 0%, #FFFFFF 60%, #F8FAFB 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: #E8F4F0;
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: #FDF6E3;
  bottom: -50px;
  left: -50px;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: #F0F4F8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease-out;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeIn 0.5s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeIn 0.5s ease-out 0.5s both;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--bg-light);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline:active {
  transform: scale(0.98);
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  animation: fadeIn 0.5s ease-out 0.7s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-outline, .btn-cta {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-darkest);
  color: var(--bg-white);
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--bg-white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
}

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

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-primary);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent-primary);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-divider {
  width: 32px;
  height: 2px;
  background: var(--accent-secondary);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

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

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

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

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
}

.about-content {
  background: var(--bg-primary);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.about-text strong {
  color: var(--accent-primary);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.about-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 1023px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 400px;
  }
  
  .about-content {
    padding: 48px 24px;
  }
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.process-line {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-light);
}

.process-step {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.process-dot {
  position: relative;
  z-index: 10;
  width: 16px;
  height: 16px;
  background: var(--accent-primary);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.process-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-line {
    display: none;
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  
  .process-dot {
    margin: 0;
    flex-shrink: 0;
  }
  
  .process-number {
    position: static;
    transform: none;
    margin-bottom: 8px;
  }
}

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

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-primary);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--accent-primary);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

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

.result-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 15px;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .result-number {
    font-size: 36px;
  }
}

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

.team-card {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-position {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.team-experience {
  font-size: 13px;
  color: var(--accent-primary);
}

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

@media (max-width: 767px) {
  .team-slider {
    grid-template-columns: 1fr;
  }
  
  .team-photo {
    height: 320px;
  }
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-tertiary);
  padding-left: 24px;
}

.reviews-slider {
  max-width: 700px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.review-star {
  width: 20px;
  height: 20px;
  color: var(--accent-secondary);
}

.review-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.review-date {
  font-size: 13px;
  color: var(--text-muted);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.review-dot.active {
  background: var(--accent-primary);
}

@media (max-width: 767px) {
  .review-card {
    padding: 32px 24px;
  }
  
  .review-text {
    font-size: 16px;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-info {
  background: var(--bg-white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.contact-info-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-value a {
  color: var(--accent-primary);
}

.contact-map {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--bg-primary);
  padding: 60px;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

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

.form-label .required {
  color: #DC2626;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 122, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form {
    padding: 40px 24px;
  }
}

footer {
  background: var(--bg-darkest);
  color: var(--bg-white);
  padding: 64px 0 32px;
}

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

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.footer-contact-label {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-contact-value {
  font-size: 14px;
  color: var(--bg-white);
}

.footer-contact-value a {
  color: var(--bg-white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-medium);
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  padding: 24px;
  z-index: 10000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--accent-primary);
  color: var(--bg-white);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--accent-primary-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--text-secondary);
}

@media (max-width: 767px) {
  .cookie-consent {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--accent-primary);
}

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

.page-hero {
  padding: 80px 0;
  background: var(--bg-primary);
  text-align: center;
}

.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 60px 0;
  }
  
  .page-hero-title {
    font-size: 32px;
  }
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  color: var(--accent-primary);
}

.thank-you-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-primary);
  color: var(--bg-white);
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.thank-you-btn:hover {
  background: var(--accent-primary-dark);
  transform: scale(1.02);
}

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

.privacy-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 40px;
}

.privacy-title:first-child {
  margin-top: 0;
}

.privacy-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.privacy-list {
  margin-bottom: 16px;
  padding-left: 20px;
}

.privacy-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

@media (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.price-table th {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-light);
}

.price-table td {
  font-size: 15px;
  color: var(--text-primary);
}

.price-table tr:hover td {
  background: var(--bg-light);
}

.price-value {
  font-weight: 600;
  color: var(--accent-primary);
}

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

.service-detail-main h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-detail-main h2:first-child {
  margin-top: 0;
}

.service-detail-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
}

.service-detail-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-detail-btn {
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 1023px) {
  .service-detail-content {
    grid-template-columns: 1fr;
  }
  
  .service-detail-sidebar {
    position: static;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--bg-white);
  color: var(--accent-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: transform var(--transition-fast);
}

.cta-btn:hover {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 28px;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
