/* Ustakur — Next.js tasarımının birebir CSS karşılığı */
:root {
  --ink: #1A1A1D;
  --wood: #C8732E;
  --wood-dark: #A85D22;
  --wood-light: #E8A765;
  --cream: #F7F3EE;
  --whatsapp: #25D366;
  --white: #fff;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-soft: 0 10px 40px -10px rgba(26, 26, 29, 0.15);
  --shadow-card: 0 4px 24px -8px rgba(26, 26, 29, 0.12);
  --max: 80rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
section[id] { scroll-margin-top: 5rem; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--wood); border-radius: 999px; }

.container-x {
  margin-inline: auto;
  width: 100%;
  max-width: var(--max);
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-x { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container-x { padding-inline: 3rem; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn:active { transform: scale(0.95); }
.btn-primary {
  background: var(--wood);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--wood-dark); }
.btn-outline {
  border: 2px solid rgba(26,26,29,0.15);
  background: rgba(255,255,255,0.8);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--wood); color: var(--wood); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-whatsapp:hover { filter: brightness(1.05); }
.section { padding-block: 5rem; }
@media (min-width: 640px) { .section { padding-block: 7rem; } }
.eyebrow {
  display: inline-block;
  border-radius: 9999px;
  background: rgba(200,115,46,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wood);
}
.section-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-lg { width: 2rem; height: 2rem; }
@media (min-width: 640px) { .icon-lg { width: 2.25rem; height: 2.25rem; } }

/* Reveal on scroll — Framer Motion benzeri blur + ease */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Stagger grupları (kartlar) */
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-item.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Hero panel çocukları — stagger */
.hero-panel .hs {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-panel.is-animated .hs {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.hero-panel.is-animated .hs:nth-child(1) { transition-delay: 0.15s; }
.hero-panel.is-animated .hs:nth-child(2) { transition-delay: 0.27s; }
.hero-panel.is-animated .hs:nth-child(3) { transition-delay: 0.39s; }
.hero-panel.is-animated .hs:nth-child(4) { transition-delay: 0.51s; }
.hero-panel.is-animated .hs:nth-child(5) { transition-delay: 0.63s; }
.hero-panel.is-animated .hs:nth-child(6) { transition-delay: 0.75s; }

.hero-scroll {
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
}
.hero.is-ready .hero-scroll { opacity: 1; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes header-in {
  from { opacity: 0; transform: translateY(-80px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade-scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fade-scale-out {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}
@keyframes check-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.animate-marquee { animation: marquee 45s linear infinite; }
.animate-marquee-fast { animation: marquee 30s linear infinite; }
.marquee-paused:hover .animate-marquee,
.marquee-paused:hover .animate-marquee-fast { animation-play-state: paused; }
.animate-pulse-ring { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-item, .hero-panel .hs, .gallery-item, .faq-body-wrap, .mobile-menu {
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg { animation: none !important; }
}

/* ========== NAVBAR ========== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 0.65rem;
  transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
  animation: header-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 1024px) {
  .site-header { padding-block: 1rem; }
}
.site-header.is-scrolled {
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(26,26,29,0.05);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px -12px rgba(26,26,29,0.25);
}
@media (min-width: 1024px) {
  .site-header.is-scrolled {
    padding-block: 0.75rem;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}
.site-header.is-open:not(.is-scrolled) {
  background: rgba(26,26,29,0.7);
  backdrop-filter: blur(20px);
}
.nav-inner {
  margin-inline: auto;
  width: 100%;
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
  transition: all 0.3s;
}
@media (min-width: 640px) { .nav-inner { padding-inline: 2rem; } }
@media (min-width: 1024px) {
  .site-header.is-scrolled .nav-inner {
    max-width: 72rem;
    border-radius: 9999px;
    border: 1px solid rgba(26,26,29,0.05);
    background: rgba(255,255,255,0.8);
    padding: 0.75rem 2rem;
    box-shadow: 0 12px 32px -12px rgba(26,26,29,0.35);
    backdrop-filter: blur(20px);
  }
  .site-header:not(.is-scrolled) .nav-inner { padding-inline: 3rem; }
}
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo img { height: 2.5rem; width: auto; transition: transform 0.3s; }
.logo:hover img { transform: scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s;
}
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wood-light);
  transition: color 0.3s;
}
.site-header.is-scrolled .logo-name { color: var(--ink); }
.site-header.is-scrolled .logo-sub { color: var(--wood); }
.logo-img-dark { display: none; }
.site-header.is-scrolled .logo-img-light { display: none; }
.site-header.is-scrolled .logo-img-dark { display: block; }

.nav-links { display: none; align-items: center; gap: 0.125rem; }
.nav-cta { display: none; align-items: center; gap: 0.625rem; }
@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
}
.nav-links a {
  position: relative;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.is-active { color: #fff; }
.site-header.is-scrolled .nav-links a { color: rgba(26,26,29,0.7); }
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active { color: var(--wood); }
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0.875rem;
  bottom: -2px;
  height: 2px;
  border-radius: 9999px;
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-phone {
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
}
.nav-phone:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.site-header.is-scrolled .nav-phone {
  border-color: rgba(26,26,29,0.1);
  color: var(--ink);
}
.site-header.is-scrolled .nav-phone:hover { border-color: var(--wood); color: var(--wood); }
.nav-toggle {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}
.site-header.is-scrolled .nav-toggle {
  background: rgba(26,26,29,0.05);
  color: var(--ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-top: 0 solid transparent;
  transition: max-height 0.35s ease, opacity 0.25s ease, border-color 0.25s;
}
.mobile-menu > .mobile-menu-inner {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-header.is-open .mobile-menu {
  max-height: min(70vh, 480px);
  opacity: 1;
  pointer-events: auto;
  border-top-width: 1px;
  border-top-color: rgba(255,255,255,0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header.is-scrolled.is-open .mobile-menu {
  border-top-color: rgba(26,26,29,0.08);
}
.site-header.is-open .mobile-menu > .mobile-menu-inner {
  opacity: 1;
  transform: none;
}
@media (min-width: 1024px) {
  .mobile-menu,
  .site-header.is-open .mobile-menu {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
  }
}
.mobile-menu-inner { padding: 0.35rem 1.25rem 1.1rem; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-block: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.site-header.is-scrolled .mobile-menu a {
  border-color: rgba(26,26,29,0.05);
  color: rgba(26,26,29,0.8);
}
.mobile-menu a.is-active { color: var(--wood); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  padding: 4.25rem 0 2.5rem;
}
@media (min-width: 640px) {
  .hero { padding: 5rem 0 3rem; }
}
@media (max-width: 639px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 1.75rem;
    align-items: flex-start;
  }
  .hero .container-x { padding-top: 0.75rem; padding-bottom: 1.5rem; }
  .logo img { height: 2.1rem; }
  .logo-name { font-size: 1.1rem; }
  .nav-toggle { height: 2.5rem; width: 2.5rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,29,0.5), rgba(26,26,29,0.2), rgba(26,26,29,0.4));
}
.hero-panel {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(26,26,29,0.08);
  background: rgba(255,255,255,0.6);
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) { .hero-panel { padding: 2.5rem; } }
.hero-stars { display: flex; align-items: center; gap: 0.5rem; }
.hero-stars .icon { width: 1rem; height: 1rem; fill: var(--wood-light); color: var(--wood-light); }
.hero-stars span { font-size: 0.875rem; font-weight: 500; color: rgba(26,26,29,0.7); }
.hero-badge {
  display: inline-block;
  margin-top: 0.75rem;
  border-radius: 9999px;
  background: rgba(200,115,46,0.15);
  padding: 0.25rem 0.875rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wood);
}
.hero h1 {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
@media (min-width: 640px) { .hero h1 { margin-top: 1rem; font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 .accent { color: var(--wood); }
.hero-lead {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26,26,29,0.7);
}
@media (min-width: 640px) { .hero-lead { margin-top: 1rem; font-size: 1.125rem; } }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1rem;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  font-weight: 500;
  color: rgba(26,26,29,0.8);
}
.hero-badges .icon { color: var(--wood); width: 1rem; height: 1rem; }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; gap: 0.75rem; margin-top: 1.5rem; }
  .hero-cta .btn { font-size: 1rem; }
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.hero-wave svg { display: block; width: 100%; }
.hero-scroll {
  display: none;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
}
@media (min-width: 1024px) { .hero-scroll { display: block; } }
.hero.is-ready .hero-scroll { opacity: 1; }
.hero-scroll-frame {
  display: flex;
  height: 2.5rem;
  width: 1.5rem;
  align-items: flex-start;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.375rem;
}
.hero-scroll-dot {
  height: 0.5rem;
  width: 0.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gallery-filter {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--cream);
  color: rgba(26,26,29,0.7);
  transition: all 0.2s;
}
.gallery-filter:hover { background: rgba(200,115,46,0.1); color: var(--wood); }
.gallery-filter.is-active {
  background: var(--wood);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: var(--shadow-card);
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s;
}
.gallery-item.is-hiding {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item.is-showing {
  animation: fade-scale-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.is-hidden { display: none; }

.lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,29,0.9);
  padding: 1rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox.is-open .lightbox-img {
  animation: fade-scale-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lightbox-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lightbox-img {
  max-height: 80vh;
  max-width: 56rem;
  width: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .services-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.05);
  background: var(--cream);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 640px) { .service-card { padding: 1.75rem; } }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  display: flex;
  height: 3.25rem;
  width: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(200,115,46,0.1);
  color: var(--wood);
  transition: all 0.3s;
}
.service-icon .icon { width: 1.65rem; height: 1.65rem; }
@media (min-width: 640px) {
  .service-icon { height: 3.75rem; width: 3.75rem; }
  .service-icon .icon { width: 1.9rem; height: 1.9rem; }
}
.service-card:hover .service-icon { background: var(--wood); color: #fff; }
.service-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 640px) { .service-card h3 { margin-top: 1.25rem; font-size: 1.25rem; } }
.service-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26,26,29,0.6);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wood);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-link { opacity: 1; }

/* ========== WHY US ========== */
.bg-cream { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .features-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .feature-card { padding: 1.75rem; } }
.feature-icon {
  margin-inline: auto;
  display: flex;
  height: 3.75rem;
  width: 3.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(200,115,46,0.1);
  color: var(--wood);
}
.feature-icon .icon { width: 1.85rem; height: 1.85rem; }
@media (min-width: 640px) {
  .feature-icon { height: 4.25rem; width: 4.25rem; }
  .feature-icon .icon { width: 2.1rem; height: 2.1rem; }
}
.feature-card h3 { margin-top: 1rem; font-size: 1rem; font-weight: 700; }
@media (min-width: 640px) { .feature-card h3 { margin-top: 1.25rem; font-size: 1.125rem; } }
.feature-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,29,0.6); line-height: 1.6; }
.stats-box {
  margin-top: 4rem;
  border-radius: 1.5rem;
  background: var(--ink);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .stats-box { padding: 3rem; } }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--wood-light);
  text-align: center;
}
@media (min-width: 640px) { .stat-value { font-size: 3rem; } }
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* ========== BRANDS ========== */
.brands-section {
  border-block: 1px solid rgba(26,26,29,0.05);
  background: var(--cream);
  padding-block: 3.5rem;
}
.brands-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26,26,29,0.4);
}
.brands-track-wrap {
  position: relative;
  margin-top: 2.25rem;
  width: 100%;
  overflow: hidden;
}
.brands-fade-l, .brands-fade-r {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 10;
  width: 4rem;
}
@media (min-width: 640px) {
  .brands-fade-l, .brands-fade-r { width: 7rem; }
}
.brands-fade-l { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.brands-fade-r { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.brands-track {
  display: flex;
  width: max-content;
  align-items: center;
}
.brand-logo {
  display: flex;
  height: 4rem;
  width: 160px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .brand-logo { height: 5rem; width: 190px; } }
.brand-logo img {
  max-height: 2.25rem;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .brand-logo img { max-height: 2.75rem; max-width: 160px; }
}

/* ========== PROCESS ========== */
.process-grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }
}
.process-line { display: none; }
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-line {
    display: block;
    position: absolute;
    left: 0;
    top: 60px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(200,115,46,0.3), transparent);
  }
}
.process-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.05);
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.process-step {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  border-radius: 9999px;
  background: var(--wood);
  padding: 0.125rem 0.625rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.process-icon {
  position: relative;
  z-index: 10;
  display: flex;
  height: 4.25rem;
  width: 4.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(200,115,46,0.1);
  color: var(--wood);
  box-shadow: 0 0 0 8px var(--cream);
  transition: all 0.3s;
}
.process-icon .icon {
  width: 2.15rem;
  height: 2.15rem;
}
@media (min-width: 640px) {
  .process-icon { height: 4.5rem; width: 4.5rem; }
  .process-icon .icon { width: 2.35rem; height: 2.35rem; }
}
.process-card:hover .process-icon { background: var(--wood); color: #fff; }
.process-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; }
.process-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,29,0.6); line-height: 1.6; }

/* ========== FREE QUOTE ========== */
.quote-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--ink);
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .quote-banner { padding: 3.5rem 3rem; } }
.quote-glow-1, .quote-glow-2 {
  pointer-events: none;
  position: absolute;
  height: 16rem;
  width: 16rem;
  border-radius: 9999px;
  filter: blur(48px);
}
.quote-glow-1 { right: -4rem; top: -4rem; background: rgba(200,115,46,0.2); }
.quote-glow-2 { bottom: -5rem; left: -2.5rem; background: rgba(200,115,46,0.1); }
.quote-grid {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 1024px) { .quote-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.quote-chip {
  display: inline-block;
  border-radius: 9999px;
  background: rgba(37,211,102,0.15);
  padding: 0.25rem 0.875rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--whatsapp);
}
.quote-banner h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px) { .quote-banner h2 { font-size: 2.25rem; } }
.quote-banner h2 .accent { color: var(--wood-light); }
.quote-banner > .quote-grid > div > p {
  margin-top: 0.75rem;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) {
  .quote-banner > .quote-grid > div > p { margin-top: 1rem; font-size: 1rem; }
}
.quote-points { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.quote-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.quote-points span {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: var(--wood-light);
}
.quote-box {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .quote-box { padding: 2rem; } }
.quote-box-head { display: flex; align-items: center; gap: 0.75rem; }
.quote-wa-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: #fff;
}
.quote-box-head strong { display: block; font-family: var(--font-display); color: #fff; font-size: 1rem; }
.quote-box-head small { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.quote-box .btn { width: 100%; margin-top: 1.25rem; }
.quote-box .btn-outline {
  margin-top: 0.625rem;
  border-color: rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
}
.quote-box .btn-outline:hover { border-color: #fff; color: #fff; }
.quote-note {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ========== TESTIMONIALS ========== */
.testimonials-wrap {
  position: relative;
  margin-top: 3rem;
  width: 100%;
  overflow: hidden;
}
.testimonials-fade-l, .testimonials-fade-r {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 10;
  width: 4rem;
}
@media (min-width: 640px) {
  .testimonials-fade-l, .testimonials-fade-r { width: 7rem; }
}
.testimonials-fade-l { left: 0; background: linear-gradient(to right, #fff, transparent); }
.testimonials-fade-r { right: 0; background: linear-gradient(to left, #fff, transparent); }
.testimonials-row {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.testimonials-row.reverse { animation-direction: reverse; }
.t-card {
  display: flex;
  width: 280px;
  flex-shrink: 0;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.05);
  background: var(--cream);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .t-card { width: 370px; padding: 1.75rem; } }
.t-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.t-card-top .icon { width: 1.75rem; height: 1.75rem; color: rgba(200,115,46,0.25); }
.t-service {
  border-radius: 9999px;
  background: rgba(200,115,46,0.1);
  padding: 0.25rem 0.625rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wood);
}
.t-stars { display: flex; gap: 2px; margin-top: 0.625rem; }
.t-stars .icon { width: 0.875rem; height: 0.875rem; fill: var(--wood); color: var(--wood); }
.t-text {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26,26,29,0.7);
}
@media (min-width: 640px) { .t-text { font-size: 15px; } }
.t-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(26,26,29,0.05);
  padding-top: 0.875rem;
}
.t-avatar {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(200,115,46,0.15);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wood);
}
.t-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.t-date { font-size: 0.75rem; color: rgba(26,26,29,0.5); }

/* ========== FAQ ========== */
.faq-list {
  margin: 3rem auto 0;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.1);
  background: var(--cream);
}
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
}
@media (min-width: 640px) { .faq-btn { padding: 1.5rem; } }
.faq-btn span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
@media (min-width: 640px) { .faq-btn span:first-child { font-size: 1.125rem; } }
.faq-plus {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(200,115,46,0.1);
  color: var(--wood);
  transition: background 0.25s, color 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-plus {
  background: var(--wood);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-in-out;
}
.faq-item.is-open .faq-body-wrap {
  grid-template-rows: 1fr;
}
.faq-body {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25rem;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26,26,29,0.65);
  opacity: 0;
  transition: opacity 0.25s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-body {
  opacity: 1;
  padding-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .faq-body { padding-inline: 1.5rem; }
  .faq-item.is-open .faq-body { padding-bottom: 1.5rem; }
}
.faq-cta {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  border-radius: 1rem;
  background: var(--ink);
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .faq-cta { padding: 2rem; } }
.faq-cta p:first-child { font-size: 1.125rem; font-weight: 600; color: #fff; }
.faq-cta p:nth-child(2) { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.faq-cta .btn { margin-top: 1.25rem; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.contact-form {
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.contact-fields {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .contact-fields { grid-template-columns: 1fr 1fr; } }
.contact-form label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(26,26,29,0.1);
  background: var(--cream);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.contact-form textarea { resize: none; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wood);
  background: #fff;
}
.contact-full { grid-column: 1 / -1; }
.contact-form .btn { width: 100%; margin-top: 1.5rem; font-size: 1rem; }
.contact-form .btn.is-sent { background: var(--whatsapp); }
.contact-form .btn .btn-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form .btn .check-pop {
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fff;
  animation: check-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.contact-form .btn .check-pop svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--whatsapp);
  stroke-width: 3;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.contact-info-card:hover { box-shadow: var(--shadow-soft); }
.contact-info-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(200,115,46,0.1);
  color: var(--wood);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(26,26,29,0.4);
}
.contact-info-value { margin-top: 2px; font-weight: 600; color: var(--ink); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--wood); }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer-col ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-col a:hover { color: var(--wood-light); }
.footer-col li { display: flex; align-items: center; gap: 0.625rem; }
.footer-col .icon { color: var(--wood-light); width: 1rem; height: 1rem; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.75rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .muted { color: rgba(255,255,255,0.4); }
.footer-bottom a { font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--wood-light); }

/* ========== FLOATING ========== */
.floating {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-top {
  display: none;
  height: 2.75rem;
  width: 2.75rem;
  background: var(--ink);
}
@media (min-width: 640px) { .float-top.is-visible { display: flex; } }
.float-phone {
  display: flex;
  height: 3rem;
  width: 3rem;
  background: var(--wood);
}
@media (min-width: 640px) { .float-phone { display: none; } }
.float-wa {
  position: relative;
  height: 3.5rem;
  width: 3.5rem;
  background: var(--whatsapp);
}
.float-wa .ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--whatsapp);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.float-wa .icon { position: relative; width: 1.75rem; height: 1.75rem; }

/* ========== INNER PAGES ========== */
.page-hero {
  background: var(--ink);
  padding: 6rem 0 4rem;
  color: #fff;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover { color: var(--wood-light); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }
.page-hero h1 {
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
}
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
.page-hero .lead {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) { .page-hero .lead { font-size: 1.125rem; } }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(200,115,46,0.2);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wood-light);
}
.content-section { padding-block: 4rem; }
.prose { max-width: 48rem; margin-inline: auto; }
.prose h2 { margin: 2rem 0 1rem; font-size: 1.5rem; font-weight: 700; }
.prose p { margin-bottom: 1rem; color: rgba(26,26,29,0.7); line-height: 1.7; }
.district-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .district-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .district-grid { grid-template-columns: repeat(4, 1fr); } }
.district-card {
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.08);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.district-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.district-card strong { display: block; font-weight: 700; color: var(--ink); }
.district-card small { color: rgba(26,26,29,0.5); font-size: 0.75rem; }
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  border-radius: 1rem;
  border: 1px solid rgba(26,26,29,0.08);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.blog-card p { flex: 1; font-size: 0.875rem; color: rgba(26,26,29,0.6); line-height: 1.6; }
.blog-card .meta { margin-top: 1rem; font-size: 0.75rem; color: rgba(26,26,29,0.45); }
.simple-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,26,29,0.06);
  padding: 0.875rem 0;
}
.simple-header .nav-inner { max-width: var(--max); }
.simple-header .logo-name { color: var(--ink); }
.simple-header .logo-sub { color: var(--wood); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-2xl { max-width: 42rem; }
.mt-4 { margin-top: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-muted { color: rgba(26,26,29,0.6); }
.section-intro { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,29,0.6); }
