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

:root {
  --bg-primary: #FAF8F4;
  --bg-secondary: #F0EDE8;
  --bg-tertiary: #E8E4DC;
  --bg-quaternary: #E4E0D8;
  --text-primary: #2A2622;
  --text-secondary: #7A7568;
  --accent-primary: #D4652A;
  --accent-secondary: #2A8FD4;
  --accent-tertiary: #D4A84A;
  --accent-fourth: #8AB86A;
  --border-color: rgba(212, 101, 42, 0.3);
  --wireframe-line: 1px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.35px;
}

strong, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: -0.1px;
  color: var(--text-primary);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-primary);
  border-bottom: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  height: 64px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.domain-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  text-transform: lowercase;
}

.site-name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  transform: scale(0.94);
  transition: all 0.36s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-header {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-menu nav {
  flex-direction: column;
  gap: 32px;
}

.mobile-menu nav a {
  font-size: 17px;
  font-family: 'Inter', sans-serif;
}

.mobile-cta {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
}

.mobile-cta .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 14px;
}

.sparkle-reveal-trigger {
  position: relative;
  overflow: hidden;
}

.sparkle-reveal-trigger::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(212,101,42,0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 70%, rgba(212,101,42,0.6) 0%, transparent 100%),
    radial-gradient(3px 3px at 50% 20%, rgba(212,101,42,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 60%, rgba(212,101,42,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 40%, rgba(212,101,42,0.5) 0%, transparent 100%),
    radial-gradient(3px 3px at 90% 80%, rgba(212,101,42,0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 30% 90%, rgba(212,101,42,0.6) 0%, transparent 100%);
  background-size: 100% 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-out;
}

.sparkle-reveal-trigger:hover::before {
  opacity: 1;
  animation: sparkleAppear 0.5s ease-out forwards;
}

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

.sparkle-reveal-trigger::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(212, 101, 42, 0.4);
  border-radius: inherit;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.sparkle-reveal-trigger:hover::after {
  opacity: 1;
}

.sparkle-reveal-trigger:hover {
  z-index: 100;
  position: relative;
  transform: translateZ(0) translateY(-12px) scale(1.04);
  box-shadow: 0 16px 40px rgba(212, 101, 42, 0.28);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(248, 232, 224, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(240, 232, 216, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(248, 240, 232, 0.3) 0%, transparent 60%);
  animation: liquidFlow 60s ease-in-out infinite;
}

.hero .container {
  display: flex;
  justify-content: center;
}

@keyframes liquidFlow {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.22; transform: scale(1.05); }
}

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

.hero-text h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.15px;
  margin-bottom: 24px;
}

.hero-text h1 span {
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent-primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
  cursor: pointer;
  transition: all 0.24s ease-out;
  min-width: 160px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
  cursor: pointer;
  transition: all 0.24s ease-out;
  min-width: 160px;
  white-space: nowrap;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(212, 101, 42, 0.1) 49%, rgba(212, 101, 42, 0.1) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(212, 101, 42, 0.1) 49%, rgba(212, 101, 42, 0.1) 51%, transparent 51%);
  background-size: 40px 40px;
  z-index: 1;
}

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

.wireframe-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-primary);
}

.wireframe-corner.top-left { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.wireframe-corner.top-right { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.wireframe-corner.bottom-left { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.wireframe-corner.bottom-right { bottom: 8px; right: 8px; border-left: none; border-top: none; }

section {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

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

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

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px;
  transition: all 0.24s ease-out;
}

.service-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.service-card.featured img {
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 101, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

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

.about-section {
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 60px;
  align-items: start;
}

.about-gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-text h2::first-letter {
  font-size: 52px;
  color: var(--accent-primary);
  float: left;
  line-height: 1;
  margin-right: 8px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.process-section {
  background: var(--bg-tertiary);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}

.process-marker {
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.process-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
}

.process-connector {
  width: 60px;
  height: 1px;
  border-top: 1px dashed var(--accent-primary);
  margin: 0 8px;
  margin-bottom: 30px;
}

.features-section {
  background: var(--bg-primary);
}

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

.feature-card {
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.24s ease-out;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(42, 143, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

.achievement-section {
  background: var(--text-primary);
  padding: 60px 0;
  overflow: hidden;
}

.achievement-marquee {
  display: flex;
  animation: marqueeScroll 18s linear infinite;
  gap: 32px;
}

.achievement-marquee span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.achievement-marquee .delimiter {
  color: var(--accent-fourth);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.achievement-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

.achievement-stat .number {
  font-size: 60px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.achievement-stat .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.team-section {
  background: var(--bg-quaternary);
}

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

.team-card {
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  overflow: hidden;
  transition: all 0.24s ease-out;
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

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

.team-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-info .role {
  font-size: 12px;
  color: var(--text-secondary);
}

.faq-section {
  background: var(--bg-primary);
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-icon {
  font-size: 20px;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq-item.active .faq-answer {
  display: block;
  opacity: 1;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 13px;
  border-left: 3px solid var(--accent-primary);
  margin-left: 24px;
}

.reviews-section {
  background: var(--bg-quaternary);
  padding: 100px 0;
}

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

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 32px;
  scroll-snap-align: center;
  transition: all 0.24s ease-out;
}

.review-card:first-child {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

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

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.review-author h4 {
  font-size: 14px;
  font-weight: 600;
}

.review-author span {
  font-size: 12px;
  color: var(--text-secondary);
}

.review-stars {
  color: var(--accent-tertiary);
  font-size: 16px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-section {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 60px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--accent-primary);
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

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

.contact-info {
  padding: 40px;
  border: 1px solid var(--border-color);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 101, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-text strong {
  font-size: 13px;
  font-weight: 600;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 400px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cookie-consent-banner h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

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

.cookie-buttons button {
  flex: 1;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

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

footer {
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 80px 0 40px;
}

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

.footer-brand h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.42s ease-out;
}

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

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

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

  .hero-visual {
    max-height: 400px;
  }

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

  .service-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .about-gallery {
    position: static;
    flex-direction: row;
  }

  .about-gallery img {
    flex: 1;
    height: 150px;
  }

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

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

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

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

@media (max-width: 768px) {
  header {
    padding: 0 24px;
  }

  header nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

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

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

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

  .service-card.featured {
    grid-column: span 1;
  }

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

  .stat-number {
    font-size: 40px;
  }

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

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

  .achievement-stat .number {
    font-size: 40px;
  }

  .review-card {
    flex: 0 0 85%;
  }

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

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

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

.page-header {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: rgba(138, 184, 106, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 32px;
}

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

.thank-you-content p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
}

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

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

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

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

.legal-content li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-detail-header {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  text-align: center;
}

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

.service-detail-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
  border: 1px solid var(--border-color);
}

.service-detail-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}

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

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.service-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 101, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-feature-text p {
  font-size: 12px;
  margin-bottom: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

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

.pricing-table th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td {
  font-size: 14px;
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--accent-primary);
  text-align: right;
}

.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .service-features {
    grid-template-columns: 1fr;
  }

  .service-detail-content img {
    height: 250px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .thank-you-content h1 {
    font-size: 28px;
  }
}