@charset "UTF-8";

:root {
  --terracotta-primary: #c45c3e;
  --terracotta-dark: #a34a2f;
  --lime-fresh: #8db63e;
  --emerald-deep: #2d6a4f;
  --earth-warm: #8b6f47;
  --cream-light: #faf6f0;
  --charcoal-rich: #2c2825;
  --gold-accent: #d4a574;
  --forest-deep: #1a4a3a;
  --sand-light: #e8dfd0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--cream-light);
  color: var(--charcoal-rich);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

strong, p {
  color: inherit;
}


footer strong, footer p {
  color: inherit;
}
header strong, header p {
  color: inherit;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 40, 37, 0.08);
  padding: 0.75rem 0;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-rich);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--terracotta-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--charcoal-rich);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--terracotta-primary);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
}

.nav-cta::after {
  display: none;
}

.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--charcoal-rich);
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sand-light) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: linear-gradient(135deg, rgba(141, 182, 62, 0.15) 0%, rgba(44, 106, 79, 0.1) 50%, rgba(196, 92, 62, 0.08) 100%);
  border-radius: 50% 0 50% 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--charcoal-rich);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--terracotta-primary), var(--emerald-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--charcoal-rich);
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--terracotta-primary);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(196, 92, 62, 0.3);
}

.primary-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 92, 62, 0.4);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--charcoal-rich);
  text-decoration: none;
  border: 2px solid var(--charcoal-rich);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.secondary-btn:hover {
  background: var(--charcoal-rich);
  color: white;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 40, 37, 0.15);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold-accent);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.hero-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(44, 40, 37, 0.12);
  display: flex;
  gap: 2rem;
  z-index: 3;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--charcoal-rich);
  opacity: 0.7;
}

.section-padding {
  padding: 5rem 0;
}

.section-dark {
  background: var(--charcoal-rich);
  color: white;
}

.section-dark h2, .section-dark h3, .section-dark p {
  color: white;
}

.section-accent {
  background: linear-gradient(135deg, var(--emerald-deep), var(--forest-deep));
  color: white;
}

.section-accent h2, .section-accent h3, .section-accent p {
  color: white;
}

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

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal-rich);
}

.section-header .section-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-rich);
  opacity: 0.75;
}

.section-dark .section-header h2 {
  color: white;
}

.section-dark .section-header .section-subtitle {
  color: white;
  opacity: 0.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(44, 40, 37, 0.06);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 40, 37, 0.1);
}

.info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-deep));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal-rich);
}

.info-card p {
  color: var(--charcoal-rich);
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 40, 37, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--gold-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--charcoal-rich);
  opacity: 0.7;
}

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

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(44, 40, 37, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(44, 40, 37, 0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 1.75rem;
}

.service-content h3 {
  font-size: 1.35rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.75rem;
}

.service-content p {
  color: var(--charcoal-rich);
  opacity: 0.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-deep));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--terracotta-primary);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--lime-fresh);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--charcoal-rich);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-info h4 {
  font-size: 1rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--charcoal-rich);
  opacity: 0.6;
}

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

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 40, 37, 0.12);
}

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.5rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--terracotta-primary);
  font-weight: 500;
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 40, 37, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

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

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 40, 37, 0.12);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.75rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--terracotta-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content p {
  color: var(--charcoal-rich);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.read-more {
  color: var(--emerald-deep);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-rich);
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(44, 40, 37, 0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--lime-fresh);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  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: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-rich);
  opacity: 0.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--charcoal-rich);
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 0.9rem;
  color: var(--charcoal-rich);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--charcoal-rich);
  font-weight: 500;
}

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(44, 40, 37, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--charcoal-rich);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(44, 40, 37, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--lime-fresh);
  box-shadow: 0 0 0 4px rgba(141, 182, 62, 0.15);
}

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

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

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--terracotta-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 92, 62, 0.3);
}

.map-container {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  background: var(--sand-light);
}

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

.footer-section {
  background: var(--charcoal-rich);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: white;
  opacity: 0.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--lime-fresh);
}

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

.footer-bottom p {
  color: white;
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: white;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(44, 40, 37, 0.2);
  max-width: 400px;
  z-index: 9999;
  display: block;
}

.cookie-banner h4 {
  font-size: 1rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.75rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--charcoal-rich);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: var(--emerald-deep);
  color: white;
}

.cookie-accept:hover {
  background: var(--forest-deep);
}

.cookie-decline {
  background: transparent;
  border: 2px solid var(--charcoal-rich);
  color: var(--charcoal-rich);
}

.cookie-decline:hover {
  background: var(--charcoal-rich);
  color: white;
}

.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--cream-light) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--charcoal-rich);
  margin-bottom: 1rem;
}

.page-hero .subtitle {
  font-size: 1.2rem;
  color: var(--charcoal-rich);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta-primary), var(--lime-fresh));
  opacity: 0.3;
}

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

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--gold-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--charcoal-rich);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--charcoal-rich);
  opacity: 0.75;
  font-size: 0.95rem;
}

.detail-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

.detail-image {
  height: 400px;
  object-fit: cover;
}

.detail-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-content h2 {
  font-size: 2rem;
  color: var(--charcoal-rich);
  margin-bottom: 1.25rem;
}

.detail-content p {
  color: var(--charcoal-rich);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.detail-list {
  list-style: none;
  margin-bottom: 2rem;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal-rich);
}

.detail-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--lime-fresh);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--sand-light);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

.price-tag span {
  font-size: 0.9rem;
  color: var(--charcoal-rich);
  opacity: 0.7;
}

.price-tag strong {
  font-size: 1.75rem;
  color: var(--emerald-deep);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--charcoal-rich);
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--charcoal-rich);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
}

.thank-you-message h1 {
  font-size: 2.5rem;
  color: var(--charcoal-rich);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.15rem;
  color: var(--charcoal-rich);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2rem;
}

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

  .hero-content .subtitle {
    margin: 0 auto 2rem;
  }

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

  .hero-stats {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .detail-image {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(44, 40, 37, 0.1);
  }

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

  .burger-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .info-grid,
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .team-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 2rem);
  }

  .primary-btn, .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .section-padding {
    padding: 3rem 0;
  }
}