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

:root {
  --bg-primary: #FAFBFC;
  --bg-secondary: #F4F6F8;
  --surface: #FFFFFF;
  --accent-primary: #0EA5E9;
  --accent-secondary: #38BDF8;
  --accent-tertiary: #A7F3D0;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --border: #E2E8F0;
  --gradient-hero: linear-gradient(135deg, #FAFBFC 0%, #F0F9FF 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 24px; }

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

strong, b {
  color: inherit;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

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

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

.text-accent {
  color: var(--accent-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border: none;
}

.btn-primary:hover {
  background-color: #0284C7;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-primary);
  color: #FFFFFF;
}

.btn-full {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--text-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-link.active::after {
  display: none;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .nav-desktop, .header .btn-quote {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #FFFFFF;
}

.hero-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #E0F2FE;
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-wrapper {
    max-width: 400px;
  }
  
  .hero-decoration {
    width: 280px;
    height: 280px;
    right: 50%;
    transform: translateX(50%);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content.animate h1,
.hero-content.animate .hero-subtitle,
.hero-content.animate .hero-buttons {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.hero-content.animate h1 { animation-delay: 0.3s; }
.hero-content.animate .hero-subtitle { animation-delay: 0.6s; }
.hero-content.animate .hero-buttons { animation-delay: 0.9s; }

.hero-visual.animate .hero-image {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.hero-visual.animate .hero-decoration {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.page-hero {
  background: var(--surface);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    var(--border) 10px,
    var(--border) 11px
  );
  opacity: 0.3;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

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

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

.breadcrumbs span {
  color: var(--text-primary);
  font-weight: 500;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.page-hero-description {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 200px;
    padding: 40px 0;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
}

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

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

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  min-height: 320px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

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

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 16px;
  font-size: 15px;
}

.service-list {
  margin-bottom: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-tertiary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
}

.service-link:hover {
  text-decoration: underline;
}

.service-price {
  display: block;
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-tertiary);
}

.service-price strong {
  color: var(--accent-primary);
  font-size: 20px;
}

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

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #E0F2FE;
  border-radius: 50%;
  filter: blur(80px);
  top: 30%;
  left: -20%;
  z-index: 1;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

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

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .about-stats {
    justify-content: center;
  }
}

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

.process-line {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

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

.process-number {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  border-color: var(--accent-primary);
  background: #F0F9FF;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 32px;
  }
  
  .process-line {
    display: none;
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  
  .process-number {
    margin: 0;
    flex-shrink: 0;
  }
}

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

.advantage-card {
  padding: 32px;
  background: var(--surface);
  border-bottom: 1px dashed var(--border);
  transition: all 0.2s ease;
}

.advantage-card:hover {
  background: #F8FAFC;
}

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

.advantage-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  transition: transform 0.2s ease;
}

.advantage-card h3 {
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 14px;
}

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

@media (max-width: 640px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

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

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

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px;
  text-align: center;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transition-delay: 0.15s;
}

.project-overlay h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 20px;
}

.project-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 4px;
}

.project-overlay .btn {
  margin-top: 16px;
}

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

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

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

.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-photo {
  border-color: var(--accent-primary);
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.team-info {
  font-size: 13px;
  color: var(--text-tertiary);
}

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

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

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #F8FAFC;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
}

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

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

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

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

.faq-answer p {
  padding-top: 8px;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.review-slide {
  display: none;
}

.review-slide.active {
  display: block;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  color: #FCD34D;
}

.review-text {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-weight: 500;
  color: var(--text-secondary);
}

.review-source {
  font-size: 14px;
  color: var(--text-tertiary);
}

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

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

.stats-banner {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0284C7 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-banner-item {
  text-align: center;
}

.stat-banner-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-banner-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stat-banner-number {
    font-size: 40px;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 48px;
}

.contact-info h2 {
  margin-bottom: 8px;
}

.contact-info > p {
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

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

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 16px;
  color: var(--text-primary);
}

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

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

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

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

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #EF4444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--surface);
  transition: all 0.2s ease;
}

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

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

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

@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

.footer {
  background: var(--text-primary);
  color: #FFFFFF;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}

.footer h4 {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-tertiary);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  display: block;
}

.cookie-banner h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.cookie-btn-accept:hover {
  background: #0284C7;
}

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

.cookie-btn-decline:hover {
  background: var(--bg-secondary);
}

.cookie-link {
  color: var(--accent-primary);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

.thank-you-page {
  min-height: 100vh;
  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;
  background: var(--accent-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: #059669;
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content p {
  margin-bottom: 32px;
}

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

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

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

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.filter-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.filter-btn.active {
  background: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
}

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

.service-detail-main h2 {
  margin-bottom: 16px;
}

.service-detail-main h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.service-detail-main p {
  margin-bottom: 16px;
}

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

.service-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.service-detail-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-detail-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.service-detail-price span {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.service-detail-list {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-detail-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-tertiary);
  flex-shrink: 0;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal.scale {
  transform: scale(0.96);
}

.scroll-reveal.scale.visible {
  transform: scale(1);
}
