/* =====================================================================
   PAGE MODULE — index
   Extracted verbatim from inline <style> of: index.html
   Design unchanged; loaded via `pageCss` front-matter.
   ===================================================================== */

/* Services Overview Section */
.services-overview {
  background: white;
  padding: 6rem 0;
}

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

.service-pillar {
  background: #FAF9F6;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-pillar:hover {
  border-color: #17A7AF;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(23, 167, 175, 0.15);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF9F6;
  border-radius: 16px;
}

/* Custom Icon CSS Mask Implementation */
.custom-icon {
  width: 48px;
  height: 48px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Icon Masks */
.custom-icon[data-icon="branding"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/services/icon-branding-identity.svg');
  mask-image: url('https://cdn.emkt.mx/icons/services/icon-branding-identity.svg');
}

.custom-icon[data-icon="search"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/services/icon-search-magnify.svg');
  mask-image: url('https://cdn.emkt.mx/icons/services/icon-search-magnify.svg');
}

.custom-icon[data-icon="ai"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/services/icon-ai-neural.svg');
  mask-image: url('https://cdn.emkt.mx/icons/services/icon-ai-neural.svg');
}

/* Primary Gradient for Icons */
.icon-gradient-primary {
  background: linear-gradient(135deg, #A61963 0%, #17A7AF 100%);
}

.service-pillar h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1rem;
  text-align: center;
}

.service-pillar > p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.service-list li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #17A7AF;
  font-weight: 700;
}

.pillar-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #17A7AF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pillar-link:hover {
  color: #A61963;
}

.services-footer {
  margin-top: 4rem;
  text-align: center !important;
  padding-top: 3rem;
  border-top: 2px solid #E5E5E5;
}

.services-footer p {
  font-size: 1.125rem;
  color: #555;
  text-align: center !important;
}

.services-footer a {
  color: #17A7AF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.services-footer a:hover {
  color: #A61963;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-pillar {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .services-overview {
    padding: 4rem 0;
  }
  
  .services-grid {
    margin-top: 3rem;
  }
  
  .service-pillar h3 {
    font-size: 1.5rem;
  }
  
  .services-footer {
    margin-top: 3rem;
  }
}



/* Problem/Solution Section */
.problem-solution {
  background: #FAF9F6;
  padding: 6rem 0;
}

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #A61963 0%, #17A7AF 100%);
  border-radius: 50%;
  color: white;
}

.pain-point h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pain-point p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.solution-statement {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-statement h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1.5rem;
}

.solution-statement p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.solution-statement p:last-child {
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 6rem 0;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1rem;
  text-align: center;
}

/* Industries We Serve Section */
/* Industries We Serve Section */
.industries-section {
  background: #17A7AF;
  padding: 6rem 0;
}

.industries-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.industries-intro .section-subtitle {
  color: white;
  text-align: center;
  font-size: 1.25rem;
  opacity: 0.95;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

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

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: white;
  transition: transform 0.3s ease;
}

.industry-item:hover .industry-icon {
  transform: scale(1.1);
}

/* Industry Icon Masks */
.industry-icon[data-icon="hotel"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-hotel-building.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-hotel-building.svg');
}

.industry-icon[data-icon="real-estate"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-real-estate-house.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-real-estate-house.svg');
}

.industry-icon[data-icon="restaurant"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-restaurant-dining.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-restaurant-dining.svg');
}

.industry-icon[data-icon="spa"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-spa-wellness.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-spa-wellness.svg');
}

.industry-icon[data-icon="art"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-art-gallery.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-art-gallery.svg');
}

.industry-icon[data-icon="travel"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-travel-suitcase.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-travel-suitcase.svg');
}

.industry-icon[data-icon="wine"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/industries/icon-wine-glass.svg');
  mask-image: url('https://cdn.emkt.mx/icons/industries/icon-wine-glass.svg');
}

.industry-icon[data-icon="architecture"] {
  -webkit-mask-image: url('https://cdn.emkt.mx/icons/services/icon-palette-colors.svg');
  mask-image: url('https://cdn.emkt.mx/icons/services/icon-palette-colors.svg');
}

.industry-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

/* Final CTA Section */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #A61963 0%, #263159 100%);
  padding: 8rem 0;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.final-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-cta-primary {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #263159;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #A61963;
}

.btn-cta-secondary {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: white;
  color: #263159;
  transform: translateY(-3px);
}

.cta-note {
  text-align: center;
  font-size: 1rem;
  color: white;
  opacity: 0.8;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .problem-solution {
    padding: 4rem 0;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .solution-statement {
    padding: 2rem;
  }
  
  .solution-statement h3 {
    font-size: 1.75rem;
  }
  
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
}



/* Hero Section */
.hero-home {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image with Ken Burns Effect */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}

/* Subtle Dark Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem 0 5rem;
  padding-top: 16rem;
}

.hero-text {
  max-width: 680px;
}

/* Staggered Fade-In Animations */
.hero-text h1 {
  font-size: 4.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0 0 2.5rem;
  line-height: 1.5;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-text .buho-button-container {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.9s both;
  margin-bottom: 12rem;
}

/* Secondary Button */
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.5;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: white;
  color: #263159;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3.25rem;
  }
  
  .hero-text h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-home {
    height: 85vh;
    min-height: 550px;
  }
  
  .hero-content {
    padding: 16rem 2rem 0 2rem;
  }
  
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons a,
  .hero-buttons .buho-button {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.125rem !important;
  }
  
  .hero-buttons .buho-button span {
    text-align: center;
    display: inline-block;
    font-size: 1.125rem;
  }
  
  .btn-secondary {
    width: 100%;
    text-align: center;
    font-size: 1.125rem !important;
  }
  
  /* Disable Ken Burns on mobile for performance */
  .hero-image {
    animation: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 16rem 1.5rem 0 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1rem;
  }
  
  .hero-buttons {
    gap: 0.875rem;
  }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }
  
  .hero-text h1,
  .hero-text h2,
  .hero-text .buho-button-container {
    animation: fadeIn 0.5s ease-out both;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}



/* Rooted in San Miguel Section */
.rooted-section {
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F4F0 100%);
  padding: 6rem 0;
}

.rooted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rooted-image {
  position: relative;
}

.office-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.rooted-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-area-note {
  font-size: 1rem !important;
  font-weight: 600;
  color: #17A7AF !important;
  margin-bottom: 1rem !important;
  font-style: italic;
}

.visit-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-visit {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #A61963 0%, #17A7AF 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(166, 25, 99, 0.3);
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 25, 99, 0.4);
}

.rooted-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.commitment-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
}

.commitment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #17A7AF;
  font-weight: 700;
  font-size: 1.25rem;
}

.commitment-list strong {
  color: #263159;
}

.rooted-closing {
  font-style: italic;
  color: #555;
  border-left: 4px solid #17A7AF;
  padding-left: 1.5rem;
  margin-top: 2rem;
}

/* Portfolio Preview Section */
.portfolio-preview {
  background: white;
  padding: 6rem 0;
}

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

.portfolio-item {
  background: #FAF9F6;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(166, 25, 99, 0.9) 0%, rgba(23, 167, 175, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.view-project {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #17A7AF;
  margin-bottom: 0.75rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.portfolio-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.portfolio-cta {
  text-align: center;
  margin-top: 4rem;
}

.btn-portfolio {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #A61963 0%, #17A7AF 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(166, 25, 99, 0.3);
}

.btn-portfolio:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 25, 99, 0.4);
}

/* Stats Section */
.stats-section {
  background: #FAF9F6;
  padding: 6rem 0;
}

.stats-section .section-intro {
  margin-bottom: 4rem;
}

.stats-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263159;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #A61963 0%, #17A7AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .rooted-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .rooted-section {
    padding: 4rem 0;
  }
  
  .rooted-content h2 {
    font-size: 2rem;
  }
  
  .rooted-content p {
    font-size: 1rem;
  }
  
  .portfolio-preview {
    padding: 4rem 0;
  }
  
  .portfolio-grid {
    margin: 3rem 0;
  }
  
  .portfolio-content {
    padding: 1.5rem;
  }
  
  .portfolio-content h3 {
    font-size: 1.25rem;
  }
  
  .portfolio-cta {
    margin-top: 3rem;
  }
  
  .btn-portfolio {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .stats-section {
    padding: 4rem 0;
  }
  
  .stats-section h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

/* Testimonials Section Updates */
.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid rgba(23, 167, 175, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(23, 167, 175, 0.2);
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: #17A7AF;
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid #E5E5E5;
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #263159;
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 1rem;
  color: #666;
}

.testimonials-footer {
  text-align: center !important;
  margin-top: 2rem;
}

.testimonials-footer p {
  font-size: 1rem;
  color: #555;
  text-align: center !important;
}

.testimonials-footer a {
  color: #17A7AF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.testimonials-footer a:hover {
  color: #A61963;
}

/* Responsive */
@media (max-width: 1024px) {
  .rooted-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rooted-section {
    padding: 4rem 0;
  }
  
  .rooted-content h2 {
    font-size: 2rem;
  }
  
  .rooted-content p {
    font-size: 1rem;
  }
  
  .image-placeholder {
    min-height: 300px;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .industries-section {
    padding: 4rem 0;
  }
  
  .industries-intro h2 {
    font-size: 2rem;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .industry-icon {
    width: 60px;
    height: 60px;
  }
  
  .industry-item h3 {
    font-size: 1rem;
  }
  
  .final-cta {
    padding: 5rem 0;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
