:root {
  --orange: #E8531D;
  --orange-dark: #C94310;
  --orange-light: #FFF0EA;
  --orange-mid: #FDDDD0;
  --charcoal: #1A1A1A;
  --dark: #111111;
  --text: #2C2C2C;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E8E8E8;
  --cream: #FAF9F7;
  --white: #FFFFFF;
  --subtle: #F5F3EF;
  --footer-bg: #F5F3F0;
  --footer-border:#E0DDD9;
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 36px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.12);
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 100px;
  --font-serif: DM Serif Display, Georgia, serif;
  --font-sans: DM Sans, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1690px;
  --pad-x: clamp(1.5rem, 4vw, 4rem);
}

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

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

body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2C2C2C;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 1.15;
  color: #1A1A1A;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

em {
  font-style: italic;
  color: #E8531D;
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scroll-reviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
[data-animate] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}

[data-animate=fade-left] {
  transform: translateX(-35px);
}

[data-animate=fade-right] {
  transform: translateX(35px);
}

.messages-container {
  padding-top: 2rem;
}

.alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.alert i {
  font-size: 1.2rem;
}
.alert-success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}
.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 1.1rem;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFF0EA;
  border: 1px solid #FDDDD0;
  border-radius: 20px;
  padding: 1.1rem 1.4rem;
  margin: 1.75rem 0;
  font-size: 0.9rem;
  color: #C94310;
}
.info-box i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.info-box p {
  margin: 0;
}

.container {
  max-width: 1690px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.section {
  padding: clamp(3.5rem, 7vw, 6.3rem) 0;
}

.bg-soft {
  background: #FAF9F7;
}

.bg-dark {
  background: #1A1A1A;
}

.bg-subtle {
  background: #F5F3EF;
}

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}
.section-header.centered {
  align-items: center;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8531D;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #6B7280;
  max-width: 600px;
  line-height: 1.7;
}

.body-text {
  font-size: 1.05rem;
  color: #6B7280;
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.two-col-grid.reverse {
  direction: rtl;
}
.two-col-grid.reverse > * {
  direction: ltr;
}

.img-main {
  width: 100%;
  object-fit: cover;
}

.rounded-xl {
  border-radius: 36px;
}

.image-stack {
  position: relative;
}

.image-accent-card {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.1rem 1.6rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1A1A;
  z-index: 2;
}
.image-accent-card i {
  color: #E8531D;
  font-size: 1.5rem;
}

.check-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: #2C2C2C;
}
.check-list i {
  color: #E8531D;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-primary {
  background: #E8531D;
  color: #FFFFFF;
  border-color: #E8531D;
}
.btn-primary:hover {
  background: #C94310;
  border-color: #C94310;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 83, 29, 0.35);
}
.btn-outline {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn-outline:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-white {
  background: #FFFFFF;
  color: #E8531D;
  border-color: #FFFFFF;
  font-weight: 700;
}
.btn-white:hover {
  background: #FFF0EA;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}
.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  border-bottom-color: #E8E8E8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: #2C2C2C;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: #E8531D;
  background: #FFF0EA;
}
.nav-link i {
  font-size: 0.7rem;
}

.has-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  min-width: 230px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.dropdown-menu-custom.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2C2C2C;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-menu-custom li a:hover {
  background: #FFF0EA;
  color: #E8531D;
}
.dropdown-menu-custom li a i {
  color: #E8531D;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.2s;
}
.phone-link:hover {
  color: #E8531D;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 9998;
}

body.nav-open .nav-backdrop {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: #FFFFFF;
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem) 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 9999;
}
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-list a {
  display: block;
  padding: 1rem 1.1rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: #2C2C2C;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-list a:hover {
  background: #FFF0EA;
  color: #E8531D;
}

.mobile-section-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  padding: 1.2rem 1.1rem 0.3rem;
}

.mobile-nav-footer {
  margin-top: 2rem;
}

.hero {
  position: relative;
  padding: clamp(7rem, 12.6vw, 9.8rem) 0 clamp(4.2rem, 7vw, 7rem);
  overflow: hidden;
  background: #FFFFFF;
}
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse at 70% 25%, rgba(232, 83, 29, 0.13) 0%, transparent 48%), radial-gradient(ellipse at 88% 78%, rgba(232, 83, 29, 0.07) 0%, transparent 42%), radial-gradient(ellipse at 45% 60%, #FFF0EA 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#E8E8E8 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #FFF0EA;
  border: 1.5px solid #FDDDD0;
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #C94310;
  margin-bottom: 1.75rem;
}
.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.18rem;
  color: #6B7280;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E8E8E8;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-item strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.6rem;
  color: #1A1A1A;
  line-height: 1;
}
.trust-item span {
  font-size: 0.8rem;
  color: #6B7280;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: #E8E8E8;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: -1.1rem;
  border: 2px solid rgba(232, 83, 29, 0.14);
  border-radius: calc(36px + 1.1rem);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: clamp(420px, 55vw, 640px);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.floating-card {
  position: absolute;
  bottom: 2.5rem;
  left: -2.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  animation: float-card 4s ease-in-out infinite;
}
.floating-card strong {
  display: block;
  font-size: 1rem;
  color: #1A1A1A;
}
.floating-card span {
  color: #6B7280;
}

.floating-card-icon {
  color: #22C55E;
  font-size: 1.6rem;
}

.intro-strip {
  padding: 3.5rem 0;
  background: #FAF9F7;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

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

.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.intro-strip-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
}
.intro-strip-item span {
  font-size: 0.85rem;
  color: #6B7280;
}

.strip-icon {
  width: 52px;
  height: 52px;
  background: #FFF0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: stretch;
}
.services-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid > .service-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.service-card {
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8531D, #C94310);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  border-color: rgba(232, 83, 29, 0.35);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover .service-card-icon {
  background: #E8531D;
  color: #FFFFFF;
}

.service-card-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3.8rem;
  color: #E8531D;
  opacity: 0.14;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: #FFF0EA;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.service-card-title {
  font-size: 1.15rem;
  color: #1A1A1A;
  margin-top: 0.25rem;
}

.service-card-text {
  font-size: 0.93rem;
  color: #6B7280;
  flex-grow: 1;
  line-height: 1.65;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #E8531D;
  margin-top: auto;
  transition: gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-link {
  gap: 0.65rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.why-item h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.35rem;
}
.why-item p {
  font-size: 0.93rem;
  color: #6B7280;
  line-height: 1.65;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #FFF0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 28px;
  padding: 2rem 2.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.service-row:not(.no-link):hover {
  border-color: #E8531D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transform: translateX(6px);
}
.service-row:not(.no-link):hover .service-row-icon {
  background: #E8531D;
  color: #FFFFFF;
}
.service-row:not(.no-link):hover .service-row-arrow {
  opacity: 1;
  transform: translateX(5px);
}
.service-row.no-link {
  cursor: default;
}

.service-row-icon {
  width: 58px;
  height: 58px;
  background: #FFF0EA;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row-content {
  flex-grow: 1;
}
.service-row-content h3 {
  font-size: 1.15rem;
  color: #1A1A1A;
  margin-bottom: 0.35rem;
}
.service-row-content p {
  font-size: 0.93rem;
  color: #6B7280;
}

.service-row-arrow {
  color: #E8531D;
  font-size: 1.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.not-offered-box {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 20px;
  padding: 1.4rem 1.75rem;
  margin-top: 2.5rem;
  font-size: 0.93rem;
  color: #9A3412;
}
.not-offered-box i {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.gallery-section {
  background: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: none;
  display: block;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-large img {
  height: 100%;
  min-height: 500px;
}

.gallery-overlay {
  display: none !important;
}

.gallery-caption {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #6B7280;
  padding: 0 0.25rem;
}

.testimonials-carousel-outer {
  overflow: hidden;
  position: relative;
  margin-top: 3.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-reviews 55s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonials-track .testimonial-card {
  width: 380px;
  flex-shrink: 0;
}
.testimonials-track .testimonial-card.featured {
  transform: none;
  box-shadow: 0 8px 32px rgba(232, 83, 29, 0.22);
}
.testimonials-track .testimonial-card.featured:hover {
  transform: translateY(-3px);
}

.testimonial-card {
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.testimonial-card.featured {
  background: #E8531D;
  border-color: #E8531D;
  color: #FFFFFF;
  box-shadow: 0 20px 60px rgba(232, 83, 29, 0.3);
}
.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.88);
}
.testimonial-card.featured .stars {
  color: rgba(255, 255, 255, 0.8);
}
.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.testimonial-card.featured .testimonial-author strong {
  color: #FFFFFF;
}
.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.65);
}
.testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #E8531D;
  font-size: 1rem;
}
.stars.large {
  font-size: 1.4rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E8E8E8;
}
.testimonial-author strong {
  display: block;
  font-size: 0.98rem;
  color: #1A1A1A;
}
.testimonial-author span {
  font-size: 0.83rem;
  color: #6B7280;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: #FFF0EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #E8531D;
  flex-shrink: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: center;
}
.testimonials-grid.large {
  grid-template-columns: repeat(3, 1fr);
}
.testimonials-grid .testimonial-card.featured {
  transform: scale(1.04);
}
.testimonials-grid .testimonial-card.featured:hover {
  transform: scale(1.04) translateY(-3px);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 4rem;
}
.process-grid.simple {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #E8E8E8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 83, 29, 0.3);
  transform: translateY(-4px);
}
.process-step.light {
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #1A1A1A;
}
.process-step p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

.process-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  color: #E8531D;
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-number.dark {
  color: #E8531D;
  opacity: 0.3;
}

.process-icon {
  font-size: 1.8rem;
  color: #E8531D;
  margin-bottom: 1.1rem;
}

.process-connector {
  width: 48px;
  height: 2px;
  border-radius: 2px;
}
.bg-subtle .process-connector, .bg-soft .process-connector, section:not(.bg-dark) .process-connector {
  background: #FDDDD0;
}
.bg-dark .process-connector {
  background: rgba(255, 255, 255, 0.2);
}

.bg-subtle .section-label {
  color: #E8531D;
}
.bg-subtle .section-title {
  color: #1A1A1A;
}
.bg-subtle .section-subtitle {
  color: #6B7280;
}

.cta-banner {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: #F5F3EF;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(232, 83, 29, 0.1) 0%, transparent 52%), radial-gradient(ellipse at 10% 75%, rgba(232, 83, 29, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: flex-start;
  text-align: left;
}

.cta-text-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}
.cta-text-side h2 {
  color: #1A1A1A;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.1rem;
  line-height: 1.12;
}
.cta-text-side > p {
  color: #6B7280;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.cta-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.2s;
}
.cta-contact-info a:hover {
  color: #E8531D;
}
.cta-contact-info a i {
  color: #E8531D;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.cta-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: #6B7280;
  font-weight: 500;
}
.cta-trust-list i {
  color: #E8531D;
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-form-card {
  background: #FFFFFF;
  border-radius: 36px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid #E8E8E8;
}
.cta-form-card h3 {
  font-size: 1.6rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.cta-form-card > p {
  font-size: 0.93rem;
  color: #6B7280;
  margin-bottom: 1.75rem;
}

.cta-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.cta-input {
  width: 100%;
  padding: 0.82rem 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  color: #2C2C2C;
  background: #FAF9F7;
  border: 1.5px solid #E8E8E8;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
}
.cta-input::placeholder {
  color: #9CA3AF;
}
.cta-input:focus {
  border-color: #E8531D;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(232, 83, 29, 0.1);
}

textarea.cta-input {
  resize: vertical;
  min-height: 110px;
}

.cta-form-error {
  display: none;
  font-size: 0.85rem;
  color: #DC2626;
  margin-top: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 12px;
}

.cta-form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.cta-form-success i {
  font-size: 3rem;
  color: #22C55E;
  display: block;
  margin-bottom: 1rem;
}
.cta-form-success h4 {
  font-size: 1.4rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.cta-form-success p {
  color: #6B7280;
  font-size: 0.95rem;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1.1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: flex-start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.contact-info-item a, .contact-info-item span {
  font-size: 1.05rem;
  color: #1A1A1A;
  font-weight: 500;
}
.contact-info-item a:hover {
  color: #E8531D;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #FFF0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-area-box {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #FAF9F7;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  padding: 1.5rem;
}
.service-area-box i {
  font-size: 1.4rem;
  color: #E8531D;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.service-area-box strong {
  display: block;
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 0.3rem;
}
.service-area-box p {
  font-size: 0.93rem;
  color: #6B7280;
  margin: 0;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 36px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}
.contact-form-card h3 {
  font-size: 1.7rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  color: #6B7280;
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1A1A1A;
}
.form-group.focused label {
  color: #E8531D;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.98rem;
  color: #2C2C2C;
  background: #FAF9F7;
  border: 1.5px solid #E8E8E8;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: #E8531D;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(232, 83, 29, 0.12);
}

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

.field-error {
  font-size: 0.83rem;
  color: #DC2626;
  margin-top: 0.2rem;
}

@keyframes field-shake {
  0%, 100% {
    transform: translateX(0);
  }
  18% {
    transform: translateX(-7px);
  }
  36% {
    transform: translateX(7px);
  }
  54% {
    transform: translateX(-4px);
  }
  72% {
    transform: translateX(4px);
  }
}
.field-has-error label {
  color: #DC2626;
}
.field-has-error .form-control, .field-has-error .form-select {
  border-color: #DC2626;
  background: #FFF5F5;
  animation: field-shake 0.42s ease;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.contact-success-icon {
  font-size: 3.5rem;
  color: #22C55E;
  line-height: 1;
}

.contact-success h3 {
  font-size: 1.7rem;
  color: #1A1A1A;
  margin: 0;
}

.contact-success p {
  font-size: 1rem;
  color: #6B7280;
  margin: 0;
  max-width: 320px;
  line-height: 1.65;
}

.contact-success-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6B7280;
  margin-top: 0.5rem;
}
.contact-success-meta i {
  color: #E8531D;
}
.contact-success-meta a {
  color: #E8531D;
  font-weight: 600;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: #6B7280;
  text-align: center;
  justify-content: center;
}
.form-note i {
  color: #E8531D;
}

.brands-strip {
  padding: 3rem 0;
  background: #FAF9F7;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.brands-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 1.75rem;
  text-align: center;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6B7280;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-pill:hover {
  border-color: #E8531D;
  color: #E8531D;
}
.brand-pill i {
  font-size: 1rem;
  color: #E8531D;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 3.5rem auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E8E8E8;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 58px;
  height: 58px;
  background: #FFF0EA;
  border: 2px solid #E8531D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-weight: 700;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-top: 0.75rem;
}
.timeline-content h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.35rem;
}
.timeline-content p {
  font-size: 0.93rem;
  color: #6B7280;
  line-height: 1.65;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem;
  background: #E8531D;
  border-radius: 36px;
  text-align: center;
}

.stat-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E8E8E8;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6B7280;
}
.trust-badge i {
  font-size: 1.4rem;
  color: #E8531D;
}

.highlight-box {
  background: #E8531D;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: #FFFFFF;
}
.highlight-box h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.highlight-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}
.highlight-box .btn-white {
  margin-top: 1.5rem;
}

.highlight-box-image img {
  border-radius: 28px;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.platform-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 28px;
  padding: 1.25rem 1.75rem;
  min-width: 200px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform-badge:hover {
  border-color: #E8531D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.platform-badge-icon {
  font-size: 2rem;
}

.platform-badge-info strong {
  display: block;
  font-size: 1rem;
  color: #1A1A1A;
}
.platform-badge-info span {
  font-size: 0.85rem;
  color: #6B7280;
}

.site-footer {
  background: #F5F3F0;
  border-top: 1px solid #E0DDD9;
  padding-top: 6rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #E0DDD9;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #6B7280;
  max-width: 280px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: #FFF0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #FDDDD0;
}
.footer-social a:hover {
  background: #E8531D;
  color: #FFFFFF;
  border-color: #E8531D;
}

.footer-col h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.93rem;
  color: #6B7280;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col ul li a:hover {
  color: #E8531D;
}

.footer-contact {
  gap: 1rem !important;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.93rem;
  color: #6B7280;
}
.footer-contact li i {
  color: #E8531D;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer-contact li a {
  color: #6B7280;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-contact li a:hover {
  color: #E8531D;
}

.footer-bottom {
  padding: 1.75rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.87rem;
  color: #9CA3AF;
}

.page-hero {
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 7vw, 7rem);
  background: #FAF9F7;
}

.page-title {
  margin-bottom: 1.25rem;
  color: #1A1A1A;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #6B7280;
  max-width: 600px;
  line-height: 1.7;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: #6B7280;
  margin-bottom: 2rem;
}
.breadcrumb-nav a {
  color: #E8531D;
  font-weight: 600;
}
.breadcrumb-nav a:hover {
  color: #C94310;
}
.breadcrumb-nav i {
  font-size: 0.7rem;
}

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

.value-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid #E8E8E8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #E8531D;
}
.value-card h3 {
  font-size: 1.15rem;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.93rem;
  color: #6B7280;
  line-height: 1.65;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #FFF0EA;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

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

.feature-card {
  background: #FAF9F7;
  border-radius: 28px;
  padding: 2rem;
  border: 1.5px solid #E8E8E8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-color: #E8531D;
}
.feature-card h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.65;
}

.feature-card-icon {
  width: 50px;
  height: 50px;
  background: #FFF0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 5rem;
  background: #FFF0EA;
  border: 1px solid #FDDDD0;
  border-radius: 36px;
  padding: 4rem;
  margin-bottom: 4rem;
}

.rating-big {
  text-align: center;
  flex-shrink: 0;
}

.rating-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: #E8531D;
}

.rating-label {
  font-size: 0.88rem;
  color: #6B7280;
  margin-top: 0.5rem;
}

.rating-bars {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}
.rating-bar-row > span:first-child {
  width: 72px;
  color: #6B7280;
}
.rating-bar-row > span:last-child {
  width: 34px;
  color: #6B7280;
  text-align: right;
}

.rating-bar {
  flex-grow: 1;
  height: 10px;
  background: #FDDDD0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #E8531D;
  border-radius: 5px;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #2C2C2C;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.area-pill:hover {
  border-color: #E8531D;
  color: #E8531D;
}
.area-pill i {
  color: #E8531D;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 3.5rem auto 0;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open {
  border-color: #E8531D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.faq-item.open .faq-toggle {
  background: #E8531D;
  color: #FFFFFF;
  transform: rotate(45deg);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  gap: 1.5rem;
  user-select: none;
}
.faq-question h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF0EA;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8531D;
  font-size: 0.9rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.4rem;
  font-size: 0.97rem;
  color: #6B7280;
  line-height: 1.75;
  border-top: 1px solid #E8E8E8;
  padding-top: 1.1rem;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 960px) {
  .main-nav, .header-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 2.5rem;
  }
  .hero-image {
    height: clamp(240px, 55vw, 360px);
  }
  .floating-card, .image-accent-card {
    display: none;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .two-col-grid.reverse {
    direction: ltr;
  }
  .intro-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .process-connector {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-large {
    grid-column: span 2;
  }
  .gallery-large img {
    min-height: 320px;
  }
  .testimonials-carousel-outer {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
  .testimonials-track .testimonial-card {
    width: 100%;
    max-width: 480px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .testimonial-card.featured {
    transform: none !important;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .rating-overview {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .highlight-box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .highlight-box-image {
    max-height: 280px;
    overflow: hidden;
    border-radius: 28px;
  }
  .highlight-box-image img {
    height: 280px;
  }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .intro-strip-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .services-grid.three-col {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .feature-grid.three-col {
    grid-template-columns: 1fr;
  }
  .process-grid,
  .process-grid.simple {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-large {
    grid-column: span 1;
  }
  .gallery-large img {
    min-height: 260px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-form-row {
    grid-template-columns: 1fr;
  }
  .floating-card, .image-accent-card {
    display: none;
  }
  .hero-trust {
    gap: 1.25rem;
  }
  .hero-trust .trust-divider {
    height: 32px;
  }
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-box {
    grid-template-columns: 1fr;
  }
  .highlight-box-image {
    display: none;
  }
  .platform-badges {
    flex-direction: column;
    align-items: stretch;
  }
  .timeline::before {
    left: 22px;
  }
  .timeline-dot {
    width: 46px;
    height: 46px;
    font-size: 0.85rem;
  }
}
