:root {
  --why-bg: #faf8f5;
  --why-card-bg: #ffffff;
  --why-card-subtle: #fbf9f6;
  --why-card-border: rgba(203, 168, 113, 0.28);
  --why-card-border-hover: #b89255;
  --why-text-title: #1a0407;
  --why-text-body: #232127;
  --why-text-muted: #544e59;
  --why-text-subtle: #6b6672;
  --why-burgundy: #7d121e;
  --why-burgundy-deep: #550a12;
  --why-burgundy-rich: #871321;
  --why-gold: #cba871;
  --why-gold-dark: #b89255;
  --why-gold-text: #7b5924;
  --why-gold-bg: rgba(203, 168, 113, 0.12);
  --why-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --why-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(85, 10, 18, 0.02);
  --why-shadow-hover: 0 20px 48px rgba(85, 10, 18, 0.09), 0 0 22px rgba(203, 168, 113, 0.22);
}

body:has(.why-us-page-wrapper),
body.page-why-us-light {
  background-color: var(--why-bg);
  color: var(--why-text-body);
}

.why-us-page-wrapper {
  padding-top: var(--header-height-resting, 88px);
  min-height: 100vh;
  background: radial-gradient(circle at 18% 18%, rgba(107, 14, 24, 0.035) 0%, transparent 55%),
              radial-gradient(circle at 82% 65%, rgba(203, 168, 113, 0.06) 0%, transparent 60%),
              var(--why-bg);
  color: var(--why-text-body);
  position: relative;
  overflow: hidden;
}

.why-us-page-wrapper::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 540px;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.why-us-hero {
  padding: 60px 0 35px;
  border-bottom: 1px solid var(--why-card-border);
  background: linear-gradient(180deg, rgba(85, 10, 18, 0.035) 0%, rgba(250, 248, 245, 0) 100%);
  position: relative;
  z-index: 1;
}

.why-us-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--why-text-subtle);
  margin-bottom: 18px;
}

.breadcrumb-nav a {
  color: var(--why-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.breadcrumb-nav a:hover {
  color: var(--why-burgundy-rich);
}

.breadcrumb-separator {
  color: rgba(203, 168, 113, 0.6);
  user-select: none;
}

.breadcrumb-current {
  color: var(--why-burgundy-rich);
  font-weight: 700;
}

.why-us-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(135, 19, 33, 0.06);
  border: 1px solid rgba(203, 168, 113, 0.35);
  color: var(--why-burgundy-rich);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.why-us-hero-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--why-gold-dark);
  box-shadow: 0 0 10px rgba(184, 146, 85, 0.6);
  animation: pulse-glow-light 2s infinite ease-in-out;
}

@keyframes pulse-glow-light {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.why-us-main-title {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  font-weight: 800;
  color: var(--why-text-title);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.why-us-main-title span.highlight {
  background: linear-gradient(135deg, var(--why-burgundy-rich) 0%, var(--why-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--why-gold-text);
  font-weight: 700;
}

.why-us-statement-section {
  max-width: 1400px;
  margin: 40px auto 30px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.why-us-statement-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fcf9f5 100%);
  border: 1.5px solid rgba(203, 168, 113, 0.38);
  border-radius: 24px;
  padding: 48px 50px;
  box-shadow: 0 20px 60px rgba(85, 10, 18, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.why-us-statement-card:hover {
  border-color: var(--why-card-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(85, 10, 18, 0.1), 0 0 30px rgba(203, 168, 113, 0.2);
}

.why-us-statement-card::after {
  content: '”';
  position: absolute;
  bottom: -35px;
  left: 30px;
  font-size: 190px;
  font-family: serif;
  color: rgba(203, 168, 113, 0.12);
  line-height: 1;
  pointer-events: none;
}

html[dir="ltr"] .why-us-statement-card::after {
  left: auto;
  right: 30px;
}

.why-us-quote-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--why-burgundy-rich) 0%, var(--why-burgundy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fae9c7;
  margin-bottom: 24px;
  border: 1px solid rgba(203, 168, 113, 0.35);
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.2);
}

.why-us-statement-text {
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.9;
  color: var(--why-text-title);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

.why-us-pillars-section {
  max-width: 1400px;
  margin: 50px auto 40px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-tag {
  color: var(--why-gold-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--why-text-title);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1rem;
  color: var(--why-text-muted);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.why-pillar-card {
  position: relative;
  background: var(--why-card-bg);
  border: 1px solid var(--why-card-border);
  border-radius: 22px;
  padding: 40px 34px;
  box-shadow: var(--why-shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--why-card-border-hover);
  box-shadow: var(--why-shadow-hover);
  background: #ffffff;
}

.why-pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--why-gold), var(--why-burgundy-rich), var(--why-gold));
  transition: width 0.4s ease, left 0.4s ease;
  box-shadow: 0 0 10px rgba(184, 146, 85, 0.5);
}

.why-pillar-card:hover::before {
  width: 100%;
  left: 0;
}

.why-pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.why-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(135, 19, 33, 0.08) 0%, rgba(203, 168, 113, 0.15) 100%);
  border: 1px solid rgba(203, 168, 113, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--why-burgundy-rich);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(85, 10, 18, 0.05);
}

.why-pillar-card:hover .why-pillar-icon {
  background: linear-gradient(135deg, var(--why-burgundy-rich) 0%, var(--why-burgundy-deep) 100%);
  color: #fae9c7;
  border-color: var(--why-burgundy-rich);
  box-shadow: 0 8px 22px rgba(85, 10, 18, 0.25);
  transform: rotate(4deg) scale(1.08);
}

.why-pillar-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: rgba(203, 168, 113, 0.3);
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-pillar-card:hover .why-pillar-num {
  color: var(--why-gold-dark);
  transform: scale(1.1);
}

.why-pillar-title {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--why-text-title);
  margin-bottom: 14px;
  line-height: 1.4;
}

.why-pillar-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--why-text-muted);
}

.why-us-showcase-section {
  max-width: 1400px;
  margin: 35px auto 65px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.why-us-showcase-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  box-shadow: 0 20px 60px rgba(85, 10, 18, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: border-color 0.4s ease;
}

.why-us-showcase-card:hover {
  border-color: var(--why-card-border-hover);
}

.why-us-showcase-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-showcase-card:hover .why-us-showcase-img {
  transform: scale(1.025);
}

.why-us-showcase-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(203, 168, 113, 0.38);
  border-radius: 20px;
  padding: 24px 34px;
  max-width: 560px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
}

html[dir="ltr"] .why-us-showcase-overlay {
  right: auto;
  left: 30px;
}

.why-us-showcase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--why-gold-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.why-us-showcase-overlay h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--why-text-title);
  margin: 6px 0 8px;
}

.why-us-showcase-overlay p {
  font-size: 0.93rem;
  color: var(--why-text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-us-stats-section {
  max-width: 1400px;
  margin: 20px auto 65px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

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

.stat-item {
  background: var(--why-card-bg);
  border: 1px solid var(--why-card-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--why-shadow-sm);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--why-card-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--why-shadow-hover);
  background: #ffffff;
}

.stat-number {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--why-burgundy-rich) 0%, var(--why-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--why-text-muted);
  margin: 0;
}

.why-us-nav-section {
  max-width: 1400px;
  margin: 0 auto 70px;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-us-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.why-us-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.28s ease;
}

.why-us-nav-btn-secondary {
  background: #ffffff;
  color: var(--why-burgundy-rich);
  border: 1px solid rgba(203, 168, 113, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-us-nav-btn-secondary:hover {
  background: rgba(135, 19, 33, 0.06);
  border-color: var(--why-burgundy-rich);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 10, 18, 0.12);
}

.why-us-nav-btn-primary {
  background: linear-gradient(135deg, var(--why-burgundy) 0%, var(--why-burgundy-deep) 100%);
  color: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.45);
  box-shadow: 0 8px 22px rgba(85, 10, 18, 0.25);
}

.why-us-nav-btn-primary:hover {
  transform: translateY(-2px);
  border-color: var(--why-gold);
  box-shadow: 0 12px 28px rgba(85, 10, 18, 0.35);
  background: linear-gradient(135deg, var(--why-burgundy-rich) 0%, #680d17 100%);
}

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

@media (max-width: 768px) {
  .why-us-hero {
    padding: 40px 0 25px;
  }
  .why-us-statement-card {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .why-pillar-card {
    padding: 30px 22px;
    border-radius: 18px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-us-showcase-overlay {
    position: static;
    margin: 16px;
    max-width: 100%;
    border-radius: 14px;
  }
  .why-us-showcase-card {
    display: flex;
    flex-direction: column;
  }
  .why-us-hero-container,
  .why-us-statement-section,
  .why-us-pillars-section,
  .why-us-showcase-section,
  .why-us-stats-section,
  .why-us-nav-section {
    padding: 0 20px;
  }
}
