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

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

strong, p {
  color: inherit;
}

:root {
  --color-teal-dark: #0d4f4f;
  --color-teal-medium: #1a7a7a;
  --color-teal-light: #2ba3a3;
  --color-orange-burnt: #cc5500;
  --color-orange-light: #e67300;
  --color-gold: #d4af37;
  --color-gold-light: #f4d160;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-600: #6c757d;
  --color-gray-800: #343a40;
  --color-gray-900: #1a1a2e;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-800);
  background-color: var(--color-gray-100);
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 122, 122, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-white);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 12px 20px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
  background: var(--color-orange-burnt);
}

.header-cta {
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(204, 85, 0, 0.3);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(204, 85, 0, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-smooth);
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-medium) 50%, var(--color-teal-light) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(204, 85, 0, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 40%);
}

.diagonal-shapes {
  position: absolute;
  inset: 0;
}

.diagonal-shapes::before,
.diagonal-shapes::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.05;
}

.diagonal-shapes::before {
  background: linear-gradient(45deg, transparent 40%, var(--color-orange-burnt) 50%, transparent 60%);
  top: -200px;
  right: -100px;
  transform: rotate(15deg);
}

.diagonal-shapes::after {
  background: linear-gradient(-45deg, transparent 40%, var(--color-gold) 50%, transparent 60%);
  bottom: -300px;
  left: -100px;
  transform: rotate(-10deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(204, 85, 0, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(204, 85, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-glass);
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--color-white);
}


.section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal-medium));
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  color: var(--color-gray-900);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 1.15rem;
  line-height: 1.8;
}


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

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--color-teal-medium), var(--color-orange-burnt));
  border-radius: 28px;
  z-index: -1;
  opacity: 0.2;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(204, 85, 0, 0.3);
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

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

.about-content p {
  color: var(--color-gray-600);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-teal-medium), var(--color-teal-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}


.services-section {
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal-medium), var(--color-orange-burnt));
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-content {
  padding: 30px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal-medium));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-content h3 {
  color: var(--color-gray-900);
  margin-bottom: 12px;
}

.service-content p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.service-price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-orange-burnt);
}

.service-price-label {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-teal-medium);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 12px;
  color: var(--color-orange-burnt);
}


.advantages-section {
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-gray-900) 100%);
  color: var(--color-white);
}

.advantages-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.advantage-card h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.advantage-card p {
  opacity: 0.8;
  font-size: 0.95rem;
}


.team-section {
  background: var(--color-gray-100);
}

.team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  color: var(--color-gray-900);
  margin-bottom: 8px;
}

.team-role {
  color: var(--color-orange-burnt);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: var(--color-gray-600);
  font-size: 0.9rem;
}


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

.reviews-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--color-gray-100);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.review-quote {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 60px;
  color: var(--color-orange-burnt);
  opacity: 0.2;
  font-family: var(--font-serif);
  line-height: 1;
}

.review-text {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
}

.review-meta h4 {
  color: var(--color-gray-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-meta p {
  color: var(--color-gray-600);
  font-size: 0.85rem;
}


.gallery-section {
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-gray-900));
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-info {
  color: var(--color-white);
}

.gallery-info h4 {
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 0.85rem;
  opacity: 0.8;
}


.faq-section {
  background: var(--color-gray-100);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--color-teal-medium);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--color-orange-burnt);
  color: var(--color-white);
  transform: rotate(45deg);
}

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

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

.faq-answer-content {
  padding: 0 30px 24px;
  color: var(--color-gray-600);
  line-height: 1.8;
}


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

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal-medium));
  border-radius: 24px;
  color: var(--color-white);
}

.contact-info h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.contact-info > p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-text a {
  color: var(--color-white);
  text-decoration: none;
}

.contact-form-wrapper {
  background: var(--color-gray-100);
  border-radius: 24px;
  padding: 40px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-teal-medium);
  box-shadow: 0 0 0 4px rgba(26, 122, 122, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 85, 0, 0.35);
}


.map-section {
  padding: 0 24px 100px;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}


.process-section {
  background: var(--color-gray-100);
}

.process-timeline {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal-medium), var(--color-orange-burnt));
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 auto 24px;
  position: relative;
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 3px solid var(--color-gold);
  border-radius: 50%;
}

.process-step h3 {
  color: var(--color-gray-900);
  margin-bottom: 16px;
}

.process-step p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
}


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

.areas-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.area-item {
  padding: 24px;
  background: var(--color-gray-100);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.area-item:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
  border-color: var(--color-orange-burnt);
}

.area-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.area-item p {
  font-size: 0.85rem;
  opacity: 0.7;
}


.site-footer {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: 80px 24px 40px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: 24px;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-orange-burnt);
}

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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


.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: rgba(26, 42, 46, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: block;
}

.cookie-content h4 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
}

.cookie-decline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}


.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal-medium));
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  color: var(--color-white);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-orange-burnt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 40px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.thank-you-content p {
  opacity: 0.9;
  font-size: 1.2rem;
  margin-bottom: 40px;
}


.legal-section {
  padding: 140px 24px 80px;
  background: var(--color-gray-100);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--shadow-card);
}

.legal-content h1 {
  color: var(--color-gray-900);
  margin-bottom: 40px;
  text-align: center;
}

.legal-content h2 {
  color: var(--color-teal-dark);
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.legal-content p {
  color: var(--color-gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.legal-content li {
  color: var(--color-gray-600);
  margin-bottom: 12px;
  line-height: 1.7;
}


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

.mb-0 {
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}


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

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

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-teal-dark);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 16px 24px;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .cookie-banner {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

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

  .legal-content {
    padding: 30px;
  }
}


.pure-g {
  letter-spacing: normal;
}

.pure-u-1,
.pure-u-1-2,
.pure-u-1-3,
.pure-u-2-3,
.pure-u-1-4,
.pure-u-3-4 {
  padding-left: 15px;
  padding-right: 15px;
}

.pure-menu {
  background: transparent;
  border: none;
}

.pure-menu-link {
  color: var(--color-white);
  padding: 12px 20px;
}

.pure-button {
  background: linear-gradient(135deg, var(--color-orange-burnt), var(--color-orange-light));
  color: var(--color-white);
  border-radius: 12px;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
}

.pure-form input[type="text"],
.pure-form input[type="email"],
.pure-form input[type="tel"],
.pure-form textarea {
  border-radius: 12px;
  border: 2px solid var(--color-gray-200);
  padding: 16px 20px;
  font-size: 1rem;
}

.pure-form input[type="text"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form textarea:focus {
  border-color: var(--color-teal-medium);
  box-shadow: 0 0 0 4px rgba(26, 122, 122, 0.1);
  outline: none;
}