:root {
  --terracotta-primary: #D4724E;
  --terracotta-dark: #B85D3A;
  --sage-light: #A8C5A5;
  --sage-medium: #7BA382;
  --sage-dark: #5A7A60;
  --warm-cream: #FDF8F3;
  --soft-white: #FEFEFE;
  --charcoal-text: #2D2D2D;
  --charcoal-dark: #1A1A1A;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal-dark);
}

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

ul {
  list-style: none;
}

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

strong, p {
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta-primary), var(--sage-medium));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(212, 114, 78, 0.35);
  white-space: nowrap;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 114, 78, 0.45);
  color: white;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--terracotta-primary);
  border: 2px solid var(--terracotta-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-secondary-custom:hover {
  background: var(--terracotta-primary);
  color: white;
}

.btn-sage-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--sage-medium), var(--sage-dark));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(123, 163, 130, 0.35);
  white-space: nowrap;
}

.btn-sage-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(123, 163, 130, 0.45);
  color: white;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.geometric-bg {
  background-image: 
    linear-gradient(30deg, rgba(212, 114, 78, 0.03) 1%, transparent 1%),
    linear-gradient(150deg, rgba(123, 163, 130, 0.03) 1%, transparent 1%),
    linear-gradient(330deg, rgba(212, 114, 78, 0.03) 1%, transparent 1%);
  background-size: 80px 80px;
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(253, 248, 243, 0) 0%, rgba(253, 248, 243, 0.8) 100%);
  pointer-events: none;
}

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-white) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(212, 114, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(123, 163, 130, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--terracotta-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 100px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
}

.page-hero-section {
  padding: 120px 0 70px 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-white) 100%);
  position: relative;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 114, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #666;
}

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

.service-card {
  background: var(--soft-white);
  border-radius: 24px;
  padding: 40px 35px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 114, 78, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta-primary), var(--sage-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 114, 78, 0.12) 0%, rgba(123, 163, 130, 0.12) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

.service-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracotta-primary);
  margin-bottom: 1rem;
}

.service-desc {
  color: #555;
  margin-bottom: 1.5rem;
}

.advantage-card {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(123, 163, 130, 0.15);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-medium) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.advantage-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal-dark);
}

.advantage-text {
  color: #666;
  font-size: 0.95rem;
}

.testimonial-card {
  background: var(--soft-white);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 114, 78, 0.08);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 25px;
  left: 35px;
  font-size: 5rem;
  color: rgba(212, 114, 78, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sage-light), var(--terracotta-primary));
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--charcoal-dark);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.9rem;
  color: #777;
}

.team-card {
  background: var(--soft-white);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(123, 163, 130, 0.12);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sage-light), var(--terracotta-primary));
}

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

.team-name {
  font-size: 1.35rem;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
}

.team-role {
  color: var(--terracotta-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--charcoal-dark);
}

.step-desc {
  color: #666;
  max-width: 280px;
  margin: 0 auto;
}

.faq-item {
  background: var(--soft-white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 114, 78, 0.08);
  overflow: hidden;
}

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

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

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  color: var(--sage-dark);
}

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

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

.faq-answer-content {
  padding: 0 30px 24px;
  color: #555;
}

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

.contact-info-card {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(123, 163, 130, 0.12);
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 114, 78, 0.15) 0%, rgba(123, 163, 130, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.contact-label {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--charcoal-dark);
  font-weight: 500;
}

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

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

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--charcoal-dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 16px 22px;
  border: 2px solid rgba(212, 114, 78, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: var(--soft-white);
  color: var(--charcoal-text);
}

.form-control:focus {
  outline: none;
  border-color: var(--terracotta-primary);
  box-shadow: 0 0 0 4px rgba(212, 114, 78, 0.1);
}

.form-control::placeholder {
  color: #999;
}

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

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123, 163, 130, 0.12);
}

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

@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 114, 78, 0.08);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  line-height: 1.2;
}

.logo-subtext {
  font-size: 0.75rem;
  color: #777;
  letter-spacing: 1px;
}

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

.nav-link {
  padding: 12px 20px;
  font-weight: 500;
  color: var(--charcoal-text);
  border-radius: 10px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--terracotta-primary);
  background: rgba(212, 114, 78, 0.08);
}

.nav-link.active {
  color: var(--terracotta-primary);
  background: rgba(212, 114, 78, 0.12);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(212, 114, 78, 0.1);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.toggle-line {
  width: 24px;
  height: 2px;
  background: var(--charcoal-dark);
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 243, 0.98);
  z-index: 999;
  flex-direction: column;
  padding: 100px 30px 40px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  padding: 20px 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  border-bottom: 1px solid rgba(212, 114, 78, 0.1);
  display: block;
}

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

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.15rem;
  }
  
  .logo-subtext {
    display: none;
  }
}

.site-footer {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, #2A3A30 100%);
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

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

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-medium));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
}

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

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

.footer-links a:hover {
  color: var(--terracotta-primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 114, 78, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--terracotta-primary);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: var(--soft-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  border: 1px solid rgba(212, 114, 78, 0.15);
  display: none;
}

.cookie-consent-banner.visible {
  display: block;
}

.cookie-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal-dark);
}

.cookie-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 114, 78, 0.35);
}

.cookie-btn-decline {
  background: var(--soft-white);
  color: var(--charcoal-text);
  border: 2px solid rgba(212, 114, 78, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--terracotta-primary);
  color: var(--terracotta-primary);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 24px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    min-width: auto;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-medium) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 114, 78, 0.12), rgba(123, 163, 130, 0.12));
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta-primary);
  margin-bottom: 1rem;
}

.price-range {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin: 20px 0;
}

.price-note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 10px;
}

.feature-list {
  text-align: left;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: #555;
}

.feature-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--sage-medium), var(--sage-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
}

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

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

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--soft-white);
  border-radius: 20px;
  border: 1px solid rgba(123, 163, 130, 0.12);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .grid-2-cols {
    grid-template-columns: 1fr;
  }
  
  .content-image {
    order: -1;
  }
}

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

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

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

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

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

@media (max-width: 600px) {
  .grid-4-cols {
    grid-template-columns: 1fr;
  }
}

.text-highlight {
  color: var(--terracotta-primary);
  font-weight: 600;
}

.sage-text {
  color: var(--sage-dark);
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 114, 78, 0.2), transparent);
  margin: 60px 0;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sage-light), var(--terracotta-primary));
  transition: var(--transition-smooth);
}

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

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

.hidden-element {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

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