:root {
  --d-ink: #111322;
  --d-text: #5d6475;
  --d-soft: #f4f7fb;
  --d-line: rgba(17, 19, 34, 0.12);
  --d-lime: #ac57ff;
  --d-teal: #004df9;
  --d-blue: #4a68ff;
  --d-violet: #8a5cf6;
}

body {
  background: #f5f7fb;
  color: var(--d-ink);
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.blog-title,
.accordion-button {
  font-family: "Francois One", "Manrope", Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0;
}

p {
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

.d-header {
  position: fixed;
  z-index: 50;
  top: 22px;
  left: 50%;
  width: min(1220px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(10, 14, 33, 0.62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.d-header.is-scrolled {
  background: rgba(10, 14, 33, 0.88);
}

.d-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.d-brand .d-logo {
  display: block;
  width: auto;
  height: 82px;
  max-width: 380px;
  object-fit: contain;
}

.d-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.d-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.d-nav a:hover,
.d-nav a.active {
  color: var(--d-lime);
  transform: translateY(-2px);
}

.d-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.d-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.d-menu-toggle:hover {
  background: rgba(183, 255, 74, 0.16);
  border-color: rgba(183, 255, 74, 0.48);
}

.d-header.is-menu-open .d-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.d-header.is-menu-open .d-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.d-header.is-menu-open .d-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.d-header-button,
.d-search button,
.d-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--d-lime);
  font-weight: 900;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
  box-shadow: 0 18px 40px rgba(183, 255, 74, 0.22);
}

.d-header-button:hover,
.d-search button:hover,
.d-cta-button:hover {
  color: #fff;
  background: var(--d-teal);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(52, 245, 198, 0.24);
}

.d-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 145px 0 90px;
  overflow: hidden;
}

.d-hero::before {
  content: none;
  display: none !important;
}

.d-hero .container {
  position: relative;
  z-index: 2;
}

.d-hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.46;
}

.d-hero-shape-one {
  left: -160px;
  bottom: 40px;
  width: 440px;
  animation: dFloat 9s ease-in-out infinite;
}

.d-hero-shape-two {
  right: 6%;
  top: 130px;
  width: 220px;
  animation: dFloat 8s ease-in-out 1.3s infinite;
}

.d-kicker {
  margin: 0 0 18px;
  color: var(--d-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.d-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
}

.d-hero-copy>p:not(.d-kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.58;
}

.d-search {
  width: min(860px, 100%);
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
  color: var(--d-ink);
}

.d-search label {
  margin: 0;
  display: grid;
  gap: 4px;
}

.d-search span {
  color: #6f7688;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.d-search input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(17, 19, 34, 0.1);
  border-radius: 9px;
  padding: 0 16px;
  color: var(--d-ink);
  background: #fff;
  font: inherit;
}

.d-search select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(17, 19, 34, 0.1);
  border-radius: 9px;
  padding: 0 16px;
  color: var(--d-ink);
  background: #fff;
  font: inherit;
}

.d-search button {
  align-self: end;
  min-width: 140px;
  cursor: pointer;
}

.d-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.d-popular a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.d-popular a:hover {
  color: #fff;
  background: var(--d-lime);
  transform: translateY(-2px);
}

.d-hero-panel {
  position: relative;
  min-height: 540px;
}

.d-orbit {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: dSpin 20s linear infinite;
}

.d-orbit::before,
.d-orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--d-lime);
}

.d-orbit::before {
  left: 20%;
  top: 3%;
}

.d-orbit::after {
  right: 8%;
  bottom: 18%;
  background: var(--d-teal);
}

.d-browser {
  position: absolute;
  inset: 78px 20px 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.d-browser-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.d-browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.d-browser-search {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 13px;
  color: #101425;
  background: #fff;
}

.d-browser-search i {
  color: var(--d-blue);
}

.d-rank-list {
  display: grid;
  gap: 14px;
}

.d-rank-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.3s ease, background 0.3s ease;
}

.d-rank-list article:hover {
  transform: translateX(-8px);
  background: #fff;
}

.d-rank-list img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.d-rank-list strong,
.d-rank-list a {
  color: var(--d-ink);
  font-weight: 900;
}

.d-rank-list a:hover {
  color: var(--d-blue);
}

.d-rank-list span {
  display: block;
  color: #6d7485;
  font-size: 13px;
}

.d-map-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: -6px;
  color: #2243d5 !important;
  font-size: 13px;
}

.d-floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0;
  min-width: 132px;
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  background: #143126;
  border: 1px solid rgba(183, 255, 74, 0.45);
  box-shadow: 0 24px 55px rgba(20, 49, 38, 0.32);
}

.d-floating-card span {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.d-floating-card small {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.d-floating-card-one {
  top: 40px;
  right: 0;
}

.d-floating-card-two {
  left: 0;
  bottom: 22px;
  background: var(--d-teal);
}

.d-marquee {
  overflow: hidden;
  padding: 28px 0;
  color: #fff;
  background: #0d1127;
}

.d-marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  min-width: max-content;
  transform: translateX(-28%);
}

.d-marquee span {
  font-size: clamp(28px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
}

.d-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.d-section .d-kicker,
.d-city-section .d-kicker,
.d-process .d-kicker,
.d-faq .sub-title,
.d-blog .sub-title,
.d-testimonials .sub-title {
  color: #2243d5;
}

.d-dark-band .d-kicker,
.d-partners .site-heading h2,
.d-cta .d-kicker {
  color: #fff;
}

.d-section h2,
.d-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.d-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--d-ink);
  font-weight: 900;
}

.d-inline-link:hover {
  color: var(--d-blue);
}

.d-inline-link-light {
  color: #fff;
}

.d-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.d-category-card {
  position: relative;
  min-height: 300px;
  padding: 0;
  border: 1px solid var(--d-line);
  border-radius: 12px;
  background: #fff;
  color: var(--d-ink);
  box-shadow: 0 24px 70px rgba(18, 24, 44, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.d-category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(135deg, #162052, var(--d-blue));
  transition: height 0.36s ease;
}

.d-category-card:hover,
.d-category-card.active {
  color: #fff;
  border-color: transparent;
  transform: translateY(-8px);
}

.d-category-card:hover::after,
.d-category-card.active::after {
  height: 100%;
}

.d-category-card img,
.d-category-card strong,
.d-category-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.d-category-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.d-category-card:hover img,
.d-category-card.active img {
  opacity: 0.28;
  transform: scale(1.04);
}

.d-category-card strong {
  padding: 26px 24px 28px;
  margin-bottom: 0;
  font-size: 24px;
}

.d-category-card span {
  display: none;
}

.d-category-card:hover span,
.d-category-card.active span {
  color: rgba(255, 255, 255, 0.9);
}

.d-dark-band {
  overflow: hidden;
}

.d-band-shape {
  position: absolute;
  right: -140px;
  top: -180px;
  width: 760px;
  opacity: 0.13;
}

.d-listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
  color: var(--d-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.d-listing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
}

.d-listing-image {
  height: 220px;
}

.d-listing-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}

.d-listing-card:hover .d-listing-image img {
  transform: scale(1.07);
}

.d-listing-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.d-listing-body span {
  display: block;
  margin-bottom: 10px;
  color: var(--d-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.d-listing-body h3 {
  margin-bottom: 13px;
  font-size: 22px;
}

.d-listing-body h3 a {
  color: var(--d-ink);
}

.d-listing-body h3 a:hover {
  color: var(--d-blue);
}

.d-listing-body p {
  color: var(--d-text);
}

.d-listing-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.d-profile-link,
.d-map-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(17, 19, 34, 0.12);
  border-radius: 9px;
  color: var(--d-ink);
  background: #f6f8fc;
  font-weight: 900;
}

.d-profile-link {
  color: #fff !important;
  background: var(--d-lime);
  border-color: transparent;
}

.d-profile-link:hover,
.d-map-link-card:hover {
  color: #fff;
  background: #101425;
  border-color: #101425;
}

.d-map-link-card {
  color: #2243d5 !important;
}

.d-profile-link:hover,
.d-map-link-card:hover {
  color: #fff !important;
}

.d-partners {
  position: relative;
  overflow: hidden;
}

.d-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 30, 0.34);
}

.d-partners>.container {
  position: relative;
  z-index: 1;
}

.d-partners .brand-style-two-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.d-partners .brand-style-two-item h5,
.d-partners .brand-style-two-item a {
  color: #fff;
}

.d-partners .brand-style-two-item .info {
  border-color: rgba(255, 255, 255, 0.16);
}

.d-partners .sub-title {
  color: var(--d-lime);
}

.d-category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 9px;
  color: #101425 !important;
  background: var(--d-lime);
  font-weight: 900;
}

.d-category-button:hover {
  color: #fff !important;
  background: var(--d-teal);
}

.d-process {
  background:
    radial-gradient(circle at 10% 18%, rgba(52, 245, 198, 0.16), transparent 28%),
    #f5f7fb;
}

.d-process p {
  color: var(--d-text);
  line-height: 1.75;
}

.d-step-stack {
  display: grid;
  gap: 22px;
}

.d-step-card {
  position: relative;
  min-height: 180px;
  padding: 34px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #10162f, #202a66);
  box-shadow: 0 24px 70px rgba(18, 24, 44, 0.14);
}

.d-step-card span {
  display: block;
  margin-bottom: 28px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.52);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.d-step-card h3 {
  color: #fff;
}

.d-step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.d-city-section {
  background: #fff;
}

.d-testimonials .site-heading .title,
.d-faq .title,
.d-blog .title {
  color: var(--d-ink);
}

.d-testimonials .testimonial-style-two p,
.d-testimonials .testimonial-style-two .provider h4,
.d-testimonials .testimonial-style-two .provider span {
  color: var(--d-ink);
}

.d-testimonials .testimonial-style-two {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(18, 24, 44, 0.08);
}

.d-faq {
  background: #fff;
}

.d-faq .accordion-style-one-item,
.d-faq .accordion-body,
.d-faq .accordion-button {
  color: var(--d-ink);
}

.d-faq .accordion-style-one-item {
  background: #fff;
}

.d-faq .accordion-button {
  background: #fff !important;
}

.d-faq .accordion-button:not(.collapsed) {
  color: #fff !important;
  background: #101425 !important;
}

.d-faq .accordion-body {
  background: #fff !important;
}

.d-faq .accordion-body p {
  color: #2d3446 !important;
}

.d-blog .blog-style-two {
  color: var(--d-ink);
}

.d-blog .blog-style-two .info {
  background: #fff;
}

.d-blog .blog-style-two h4 a,
.d-blog .blog-one-meta a,
.d-blog .blog-one-meta li,
.d-blog .btn-regular {
  color: var(--d-ink);
}

.d-blog .btn-regular:hover,
.d-blog .blog-style-two h4 a:hover {
  color: #2243d5;
}

.d-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.d-city-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  padding: 24px;
  border: 1px solid var(--d-line);
  border-radius: 12px;
  color: var(--d-ink);
  background: #f7f9fc;
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.d-city-grid a:hover {
  background: #10162f;
  color: #fff;
  border-color: #10162f;
  transform: translateY(-6px);
}

.d-city-grid span {
  color: var(--d-text);
  font-size: 13px;
}

.d-city-grid a:hover span {
  color: rgba(255, 255, 255, 0.72);
}

.d-cta {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
}

.d-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 12, 30, 0.88), rgba(19, 31, 80, 0.78));
}

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

.d-footer,
.d-footer h2,
.d-footer h4,
.d-footer p,
.d-footer a {
  color: #fff;
}

.d-footer .f-item.link li a,
.d-footer .f-item.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.d-brand-footer .d-logo {
  height: 176px;
  max-width: 760px;
}

.d-footer .f-item.about .logo img.d-logo,
.d-simple-footer-logo .d-logo {
  height: 126px;
  max-width: 250px;
}

.d-simple-footer-logo {
  padding: 56px 0 0;
}

.d-footer .newsletter-style-one input {
  color: var(--d-ink);
  background: #fff;
  padding-left: 10px;
}

.d-footer .footer-bottom p,
.d-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.d-page-hero {
  position: relative;
  padding: 180px 0 110px;
  overflow: hidden;
}

.d-page-hero::before {
  content: none;
  display: none !important;
}

.d-page-hero .container {
  position: relative;
  z-index: 2;
}

.d-page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.d-page-hero p:not(.d-kicker) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.d-page-section {
  padding: 110px 0;
}

.d-page-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr) auto;
  gap: 12px;
  margin-bottom: 36px;
  padding: 12px;
  border: 1px solid var(--d-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(18, 24, 44, 0.08);
}

.d-page-toolbar input,
.d-page-toolbar select {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(17, 19, 34, 0.12);
  border-radius: 9px;
  padding: 0 16px;
  color: var(--d-ink);
  background: #fff;
}

.d-page-toolbar button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  color: #0b2f8f;
  background: var(--d-lime);
  font-weight: 900;
}

.d-results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.d-results-summary p {
  margin: 0;
  color: var(--d-text);
}

.d-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.d-filter-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--d-line);
  border-radius: 999px;
  color: var(--d-ink);
  background: #fff;
  font-weight: 800;
}

.d-filter-chips a:hover,
.d-filter-chips a.active {
  color: #101425;
  background: var(--d-lime);
  border-color: transparent;
}

.d-category-landing .d-category-grid {
  margin-top: 84px;
}

.d-category-landing .d-search {
  margin: 0 0 84px;
}

.d-category-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.d-category-stat strong {
  color: var(--d-lime);
}

@media (max-width: 991px) {
  .d-page-toolbar {
    grid-template-columns: 1fr;
  }
}

@keyframes dFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes dSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .d-nav {
    gap: 16px;
  }

  .d-hero-panel {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .d-header {
    top: 12px;
    gap: 12px;
  }

  .d-nav {
    display: none;
  }

  .d-menu-toggle {
    display: inline-flex;
  }

  .d-header.is-menu-open .d-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(10, 14, 33, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .d-header.is-menu-open .d-nav a {
    padding: 13px 12px;
    border-radius: 8px;
    color: #fff;
  }

  .d-header.is-menu-open .d-nav a:hover,
  .d-header.is-menu-open .d-nav a.active {
    color: #101425;
    background: var(--d-lime);
    transform: none;
  }

  .d-hero {
    padding-top: 140px;
  }

  .d-search {
    grid-template-columns: 1fr;
  }

  .d-search button {
    width: 100%;
  }

  .d-category-grid,
  .d-city-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .d-header {
    width: calc(100% - 20px);
  }

  .d-brand .d-logo {
    height: 54px;
    max-width: 240px;
  }

  .d-simple-footer-logo {
    text-align: center;
  }

  .d-header-button {
    display: none;
  }

  .d-hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .d-hero h1 {
    font-size: 44px;
  }

  .d-hero-panel {
    min-height: 460px;
  }

  .d-browser {
    inset: 70px 0 34px;
  }

  .d-floating-card {
    min-width: 108px;
    padding: 14px;
  }

  .d-category-grid,
  .d-city-grid {
    grid-template-columns: 1fr;
  }

  .d-section {
    padding: 82px 0;
  }
}

/* D SINGLE LISTING PAGE */
.d-single-hero {
  position: relative;
  padding: 170px 0 95px;
  overflow: hidden;
}

.d-single-hero::before {
  content: none;
  display: none !important;
}

.d-single-hero .container {
  position: relative;
  z-index: 2;
}

.d-single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: end;
}

.d-single-title-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.d-single-logo {
  width: 160px;
  height: 160px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .24);
}

.d-single-logo img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 5px;
}

.d-single-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: black !important;
}

.d-single-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #101425;
  background: var(--d-lime);
  font-weight: 900;
}

.d-single-pill-row span+span {
  color: #fff;
  background: #101425;
  backdrop-filter: blur(14px);
}

.d-single-pill-row .fa-trophy {
  color: #f4b400;
}

.d-single-hero h1 {
  color: #fff;
  font-size: clamp(35px, 1vw, 72px);
  line-height: .98;
  margin: 0;
}

.d-single-hero-copy>p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.d-single-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: #fff;
}

.d-single-rating strong {
  font-size: 32px;
  color: #fff;
}

.d-single-rating em {
  font-style: normal;
  color: rgba(255, 255, 255, .78);
}

.d-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.d-single-actions a,
.d-inline-action-row a,
.d-map-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--d-lime);
  font-weight: 900;
}

.d-single-actions a:nth-child(2) {
  color: #fff;
  background: #101425;
  border: 1px solid rgba(255, 255, 255, .22);
}

.d-inline-action-row a:nth-child(2) {
  color: #fff;
  background: #101425;
  border: 1px solid #101425;
}

.d-single-actions a:nth-child(3),
.d-inline-action-row a:nth-child(3) {
  color: #101425;
  background: #fff;
  border: 1px solid rgba(17, 19, 34, .12);
}

.d-single-snapshot {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(16, 20, 37, .86);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  width: fit-content;
}

.d-single-snapshot div {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  width: 353px;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.d-single-snapshot span,
.d-data-grid span,
.d-icon-grid span,
.d-contact-grid span {
  display: block;
  margin-bottom: 7px;
  color: #2243d5;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.d-single-snapshot span {
  color: var(--d-lime);
}

.d-single-snapshot strong {
  color: #fff;
}

.d-single-shell {
  padding: 110px 0;
  background: #f5f7fb;
}

.d-single-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.d-single-tabs {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: #101425;
  box-shadow: 0 28px 90px rgba(17, 19, 34, .16);
}

.d-single-tabs button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  color: rgba(255, 255, 255, .76);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.d-single-tabs button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, .18));
}

.d-single-tabs button i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--d-lime);
}

.d-single-tabs button.active,
.d-single-tabs button:hover {
  color: #fff;
  background: var(--d-lime);
}

.d-single-tabs button.active i,
.d-single-tabs button:hover i {
  color: #fff;
}

.d-single-body {
  min-height: 720px;
}

.d-single-pane {
  display: none;
  padding: 42px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(18, 24, 44, .1);
}

.d-single-pane.active {
  display: block;
}

.d-single-pane h2 {
  margin-bottom: 18px;
  color: var(--d-ink);
  font-size: clamp(30px, 1vw, 58px);
  line-height: 1.02;
}

.d-single-pane p {
  color: var(--d-text);
  line-height: 1.78;
}

.d-inline-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.d-data-grid,
.d-icon-grid,
.d-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.d-data-grid div,
.d-icon-grid div,
.d-contact-grid div,
.d-qa-grid article,
.d-review-cards article {
  padding: 20px;
  border-radius: 14px;
  background: #f6f8fc;
  border: 1px solid rgba(17, 19, 34, .08);
}

.d-icon-grid img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(46%) saturate(7474%) hue-rotate(245deg) brightness(102%) contrast(100%);
}

.d-data-grid strong,
.d-icon-grid strong,
.d-contact-grid strong,
.d-contact-grid a {
  color: var(--d-ink);
  font-weight: 900;
}

.d-icon-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}

.d-hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}

.d-hours-list {
  display: grid;
  gap: 10px;
}

.d-hours-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f6f8fc;
}

.d-hours-list span {
  color: var(--d-text);
  font-weight: 800;
}

.d-hours-list strong {
  color: var(--d-ink);
}

.d-service-tags,
.d-social-chip-grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.d-service-tags span,
.d-social-chip-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #101425;
  background: var(--d-lime);
  font-weight: 900;
}

.d-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.d-gallery-group+.d-gallery-group {
  margin-top: 34px;
}

.d-gallery-group h3 {
  margin: 26px 0 0;
  color: var(--d-ink);
  font-size: 28px;
}

.d-gallery-grid a {
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #101425;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  position: relative;
  display: block;
}

.d-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.d-gallery-grid a:hover img {
  transform: scale(1.06);
  opacity: .78;
}

.d-gallery-grid a .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 20, 37, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.d-gallery-grid a .photo-overlay svg {
  width: 48px;
  height: 48px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.d-gallery-grid a:hover .photo-overlay {
  opacity: 1;
}

.d-gallery-grid a:hover .photo-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.d-map-frame {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  background: #101425;
}

.d-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.d-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: var(--d-text);
}

.d-review-dashboard {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.d-review-score,
.d-review-bars {
  padding: 22px;
  border-radius: 16px;
  background: #101425;
  color: #fff;
}

.d-review-score strong {
  display: block;
  color: var(--d-lime);
  font-size: 56px;
  line-height: 1;
}

.d-review-score em {
  display: block;
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, .74);
  font-style: normal;
}

.d-review-score a {
  color: #101425;
  background: var(--d-lime);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.d-review-bars {
  display: grid;
  gap: 12px;
}

.d-review-bars div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.d-review-bars i {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
}

.d-review-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--d-lime);
}

.d-review-cards,
.d-qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.d-review-cards article div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--d-ink);
}

.d-review-cards .d-star-rating {
  flex: 0 0 auto;
}

.d-review-cards small,
.d-review-cards em {
  display: block;
  color: var(--d-text);
}

.d-review-cards em {
  margin-top: 10px;
  font-style: normal;
  font-weight: 800;
}

.d-qa-grid strong {
  color: var(--d-ink);
  font-size: 18px;
}

.d-star-rating {
  --rating-percent: 100%;
  position: relative;
  display: inline-block;
  width: var(--rating-percent);
  height: 1em;
  color: #c9ceda;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
}

.d-star-rating span {
  position: absolute;
  inset: 0;
  display: block;
  width: 6.9em;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
}

.d-star-rating span+span {
  width: var(--rating-percent);
  color: #f0b200;
}

.d-review-score .d-star-rating {
  color: rgba(255, 255, 255, .28);
}

.d-review-score .d-star-rating span+span,
.d-single-rating .d-star-rating span+span {
  color: #ffd45a;
}

.d-single-rating .d-star-rating {
  color: rgba(255, 255, 255, .3);
}

.d-single-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(8, 10, 20, .86);
}

.d-single-lightbox.is-open {
  display: flex;
}

.d-single-lightbox>div {
  position: relative;
  width: min(920px, 100%);
}

.d-single-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 16px;
  background: #101425;
}

.d-single-lightbox button {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #101425;
  background: var(--d-lime);
  font-size: 28px;
  line-height: 1;
}

.d-single-lightbox span {
  display: block;
  margin-top: 12px;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 991px) {

  .d-single-hero-grid,
  .d-single-layout,
  .d-data-grid,
  .d-icon-grid,
  .d-hours-grid,
  .d-review-dashboard,
  .d-review-cards,
  .d-qa-grid {
    grid-template-columns: 1fr;
  }

  .d-single-tabs {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {

  .d-single-title-row,
  .d-gallery-grid {
    grid-template-columns: 1fr;
  }

  .d-single-pane {
    padding: 26px;
  }

  .d-map-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* D INNER SUPPORT PAGES */
.d-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.d-info-card,
.d-blog-card,
.d-sitemap-card,
.d-error-card {
  border-radius: 16px;
  background: #fff;
  color: var(--d-ink);
  box-shadow: 0 24px 80px rgba(18, 24, 44, 0.1);
  border: 1px solid rgba(17, 19, 34, 0.08);
  overflow: hidden;
}

.d-info-card {
  padding: 28px;
}

.d-info-card .icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  background: var(--d-lime);
  font-size: 22px;
}

.d-info-card h3,
.d-blog-card h3,
.d-sitemap-card h3 {
  color: var(--d-ink);
  font-size: 26px;
}

.d-info-card p,
.d-blog-card p,
.d-sitemap-card a,
.d-error-card p {
  color: var(--d-text);
}

.d-info-card a,
.d-blog-card .read-more,
.d-error-actions a,
.d-sitemap-card a:hover {
  color: #0b2f8f;
  font-weight: 900;
}

.d-blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.d-blog-card .info {
  padding: 26px;
}

.d-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.d-blog-meta a,
.d-blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #101425;
  background: #eef3ff;
  font-size: 13px;
  font-weight: 900;
}

.d-blog-meta a {
  background: var(--d-lime);
}

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

.d-sitemap-card {
  padding: 26px;
}

.d-sitemap-card.is-wide {
  grid-column: span 3;
}

.d-sitemap-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.d-sitemap-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.d-sitemap-category-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.d-error-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px;
  text-align: center;
}

.d-error-code {
  display: block;
  margin-bottom: 18px;
  color: transparent;
  -webkit-text-stroke: 2px #0b2f8f;
  font-family: "Francois One", "Manrope", Arial, sans-serif;
  font-size: clamp(92px, 16vw, 180px);
  line-height: 0.85;
}

.d-error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.d-error-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--d-lime);
}

.d-error-actions a+a {
  color: #fff;
  background: #101425;
}

.d-post-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 44, 0.1);
}

.d-post-body img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  margin: 24px 0;
}

.d-post-body p,
.d-post-body li {
  color: var(--d-text);
  line-height: 1.85;
}

.d-post-body h2,
.d-post-body h3 {
  color: var(--d-ink);
  margin-top: 30px;
}

.d-contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.d-contact-panel,
.d-contact-form {
  border-radius: 18px;
  background: #fff;
  color: var(--d-ink);
  box-shadow: 0 24px 80px rgba(18, 24, 44, 0.1);
}

.d-contact-panel {
  overflow: hidden;
}

.d-contact-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.d-contact-panel .content {
  padding: 30px;
}

.d-contact-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--d-line);
}

.d-contact-item i {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(183, 255, 74, 0.45);
  color: #0b2f8f;
}

.d-contact-item strong {
  display: block;
  color: var(--d-ink);
  font-size: 18px;
}

.d-contact-item span,
.d-contact-panel p {
  color: var(--d-text);
}

.d-contact-form {
  padding: 34px;
}

.d-contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.d-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--d-ink);
  font-weight: 800;
}

.d-contact-form input,
.d-contact-form select,
.d-contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--d-line);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--d-ink);
  padding: 14px 16px;
  font-weight: 700;
}

.d-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.d-contact-form .full {
  grid-column: 1 / -1;
}

.d-contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--d-lime);
  color: #fff;
  padding: 0 28px;
  font-weight: 900;
}

.d-contact-form button:hover {
  background: #0b2f8f;
  color: #fff;
}

@media (max-width: 991px) {

  .d-card-grid,
  .d-sitemap-grid,
  .d-contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .d-sitemap-card.is-wide,
  .d-sitemap-category-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {

  .d-card-grid,
  .d-sitemap-grid {
    grid-template-columns: 1fr;
  }

  .d-post-body,
  .d-error-card {
    padding: 28px;
  }

  .d-contact-layout,
  .d-sitemap-category-list,
  .d-contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .d-contact-form {
    padding: 26px;
  }
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #ddd;
  /* Empty stars */
}

.rating-stars::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating-percent);
  overflow: hidden;
  white-space: nowrap;
  color: #f5b301;
  /* Filled stars */
}

/* Similar Listings Nearby */
.related-item {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--d-line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #fafbfe;
}

.related-item:hover {
  background: #fff;
  border-color: var(--d-blue);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.related-item:hover .ri-name {
  color: var(--d-blue);
}

.ri-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--d-line);
}

.ri-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-item:hover .ri-thumb img {
  transform: scale(1.1);
}

.ri-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--d-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ri-name {
  font-family: "Francois One", "Manrope", Arial, sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px;
  color: var(--d-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  margin-top: 4px;
  line-height: 1.25;
}

.ri-meta {
  font-size: 12px;
  color: var(--d-text);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ri-meta svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.d-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--d-ink);
  background: #fff;
  border: 1px solid var(--d-line);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.d-view-all-btn:hover {
  color: var(--d-blue);
  border-color: var(--d-blue);
  background: #f8fafe;
}

.d-similar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .d-similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}