:root {
  --primary: #2B38CA;
  --secondary: #AF2C37;
  --accent: #5ED454;
  --bg: #F7F8FA;
  --bg-alt: #EDEEF2;
  --text: #1E2128;
  --text-muted: #555A65;
  --section-dark: #1E2128;
  --section-accent: #E8EAF0;
  --primary-rgb: 43, 56, 202;
  --secondary-rgb: 175, 44, 55;
  --accent-rgb: 94, 212, 84;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5, h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--secondary);
}

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

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

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

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

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

.navbar {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--bg-alt);
  padding: 16px 24px;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  transition: color 0.15s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(30, 33, 40, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.25rem;
    color: #fff;
  }

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

.hero {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.02) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  z-index: 0;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-content > div {
  flex: 1;
}

.hero-content img {
  flex: 0 0 45%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-content img {
    flex: 1;
    width: 100%;
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.header-hero {
  padding: 32px 0;
  background: var(--section-dark);
  color: #fff;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.header-hero h1 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.header-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.content-section {
  padding: 48px 16px;
  border-bottom: 1px solid var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-dark {
  background-color: var(--section-dark);
  color: #fff;
  padding: 48px 16px;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.section-accent {
  background-color: var(--section-accent);
  padding: 48px 16px;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.two-col-layout.reverse {
  direction: rtl;
}

.two-col-layout.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--bg-alt);
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.feature {
  background: #fff;
  border-left: 3px solid var(--primary);
  padding: 24px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
}

.feature h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--bg-alt);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--bg-alt);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.875rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

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

.text-muted {
  color: var(--text-muted);
}

footer.section-dark {
  padding: 48px 16px 24px;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
  font-family: 'Merriweather', Georgia, serif;
}

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

.footer-menu .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
}

.footer-menu .nav-link:hover {
  color: var(--accent);
}

.footer-info {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-info p {
  margin: 0;
}

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

footer.footer-contact {
  background: var(--section-dark);
  color: #fff;
  padding: 48px 16px 24px;
}

footer.footer-contact .footer-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

footer.footer-contact .contact-info h4,
footer.footer-contact .footer-links h4,
footer.footer-contact .hours-info h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
  font-family: 'Merriweather', Georgia, serif;
}

footer.footer-contact .contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

footer.footer-contact .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

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

footer.footer-contact .hours-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

footer.footer-contact .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

.section-divider-accent {
  color: var(--section-accent);
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

form {
  max-width: 640px;
  margin: 0 auto;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-alt);
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  transition: border-color 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}

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

button[type="submit"] {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-family: 'Merriweather', Georgia, serif;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-post-preview {
  background: #fff;
  border: 1px solid var(--bg-alt);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-post-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

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

.blog-post-preview .blog-content {
  padding: 24px;
}

.blog-post-preview h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.blog-post-preview .meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-post-preview p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.editorial-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: 'Merriweather', Georgia, serif;
  color: var(--text);
  max-width: 720px;
  margin: 32px auto;
  padding: 0 16px;
  border-left: 3px solid var(--primary);
  padding-left: 24px;
}

.editorial-intro::first-letter {
  font-size: 3rem;
  line-height: 1;
  float: left;
  margin-right: 8px;
  color: var(--primary);
  font-weight: 700;
}

.column-layout {
  column-count: 2;
  column-gap: 32px;
  margin: 32px 0;
}

.column-layout p {
  break-inside: avoid;
}

@media (max-width: 768px) {
  .column-layout {
    column-count: 1;
  }
}

blockquote {
  margin: 32px 0;
  padding: 24px;
  background: var(--section-accent);
  border-left: 4px solid var(--secondary);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text);
}

blockquote footer {
  margin-top: 16px;
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--section-dark);
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--bg-alt);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}

.faq-question:hover {
  background-color: var(--section-accent);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.15s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 16px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .service-content {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 48px 16px;
  text-align: center;
  border-radius: 8px;
  margin: 48px 0;
}

.cta-banner h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  padding: 16px 0;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

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

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 8px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--section-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  padding: 4px 12px;
  background: var(--bg-alt);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: background-color 0.15s ease;
}

.tag:hover {
  background: var(--primary);
  color: #fff;
}

.sidebar {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 8px;
}

.sidebar h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
}

.sidebar a {
  color: var(--text);
  font-size: 0.875rem;
}

.sidebar a:hover {
  color: var(--primary);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 24px 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location-card {
  background: #fff;
  border: 1px solid var(--bg-alt);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.event-card {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.event-card .event-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.event-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.validation-metrics {
  margin-bottom: 18px;
}

.validation-metrics-label {
  margin: 0 0 12px 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.validation-stars-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.validation-stars {
  color: #20B2AA;
  font-size: 20px;
  display: flex;
  gap: 2px;
}

.validation-rating {
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem;
}

.validation-review-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.business-info-section {
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 33, 40, 0.1);
}

.business-info-item {
  margin: 0 0 8px 0;
  color: var(--text);
  font-weight: 500;
}

.business-info-item:last-child {
  margin: 0;
}

.business-phone-link {
  color: #20B2AA;
  text-decoration: none;
}

.analysis-note-box {
  margin-bottom: 18px;
  padding: 16px;
  background: rgba(32, 178, 170, 0.05);
  border-left: 3px solid #20B2AA;
  border-radius: 6px;
}

.analysis-note-text {
  margin: 0;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.7;
}

.gmb-btn-inline {
  display: inline-block;
}

.text-center-section {
  text-align: center;
  margin-top: 40px;
}

.footer-copyright {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-link-muted {
  color: rgba(255, 255, 255, 0.5);
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.border-top-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.img-rounded {
  border-radius: 8px;
}

.text-white {
  color: #fff;
}

.mb-16-white {
  margin-bottom: 16px;
  color: #fff;
}

.list-light {
  color: rgba(255, 255, 255, 0.85);
}

.divider-accent {
  color: var(--section-accent);
}

.divider-bg {
  color: var(--bg);
}

.accent-box {
  padding: 24px;
  background: var(--section-accent);
  border-radius: 8px;
}

.intro-text-large {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-small-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.flex-center-gap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
