/* =========================================
   GLOBAL LESS VARIABLES & ROOT STYLES
   ========================================= */
/* --- Fonts & Base --- */
/* Regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
/* Medium (500) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
/* Bold (700) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}
/* Extra Bold (800) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
}
/* Black (900) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-900.woff2') format('woff2');
}
:root {
  --sectionPadding: clamp(3.75rem, 8vw, 6.25rem) 16px;
  --containerGap: clamp(3rem, 6vw, 4rem);
  --headerFont: "Inter", sans-serif;
  --bodyFont: "Inter", sans-serif;
  /* Global Glow - Light Blue */
  --glow: 0 0 20px rgba(56, 189, 248, 0.25);
  --glow-hover: 0 0 30px rgba(56, 189, 248, 0.45);
}
/* --- Theme Definitions --- */
/* For DivBricks, we default to Dark Futuristic */
:root,
.theme-dark {
  --primary: #38BDF8;
  /* Energetic Light Blue / Cyan */
  --primary-fg: #020617;
  /* Very dark text on primary button */
  --secondary: #6366F1;
  /* Indigo accent */
  --bg: #020617;
  /* Deepest Slate/Black */
  --surface: #0F172A;
  /* Slate 900 */
  --surface-alt: #1E293B;
  /* Slate 800 */
  --text: #F8FAFC;
  /* White/Slate 50 */
  --text-muted: #94A3B8;
  /* Slate 400 */
  --border: #1E293B;
  /* Subtle border */
  --nav-height: 4.5rem;
}
/* --- RESET --- */
body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
/* Layout Elements */
section,
header,
footer {
  padding: var(--sectionPadding);
  position: relative;
  background: var(--bg);
  /* Default to bg, specific sections override */
  width: 100%;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
section,
footer {
  overflow: hidden;
}
header {
  padding: 0 !important;
  border-bottom: 1px solid var(--border);
  overflow: visible;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .db-toggle {
    display: none;
  }
}
/* --- LESS Variables Mapping for Compilation --- */
/* --- Global Utilities --- */
/* --- NAVIGATION --- */
#db-nav-10 {
  background: radial-gradient(circle at 50% 0%, var(--surface) 0%, var(--bg) 100%);
  padding: 1rem !important;
  /* Mobile Nav Dropdown */
  /* Desktop View */
}
#db-nav-10 .db-wrapper {
  background: var(--surface);
  /* Dark semi-transparent */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}
#db-nav-10 .db-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0 1.5rem;
}
#db-nav-10 .db-nav-box {
  position: absolute;
  top: 80px;
  left: 1rem;
  right: 1rem;
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#db-nav-10 .db-nav-box.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-nav-box {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }
}
#db-nav-10 .db-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    margin-right: 2rem;
  }
}
@media (min-width: 0rem) {
  #db-nav-10 .db-nav-actions {
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
}
#db-nav-10 .db-li {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-li {
    margin: 0;
  }
}
#db-nav-10 .db-nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
#db-nav-10 .db-nav-link:hover,
#db-nav-10 .db-nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}
@media (min-width: 1024px) {
  #db-nav-10 .db-toggle {
    display: none;
  }
  #db-nav-10 .db-nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #db-nav-10 .db-nav-actions .db-btn-primary {
    margin-left: 1rem;
  }
}
.db-container {
  width: 100%;
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}
/* Logo */
.db-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.02em;
}
.db-logo i {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.8));
}
/* Buttons */
.db-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
  line-height: 1;
}
.db-btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--glow);
}
.db-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--glow-hover);
}
.db-btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.db-btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--glow);
}
.db-btn-ghost {
  background: transparent;
  color: var(--text);
}
.db-btn-ghost:hover {
  color: var(--primary);
}
/* Typography */
.db-topper {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.75rem;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}
.db-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--text);
}
.db-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  color: var(--text-muted);
  max-width: 40rem;
}
/* Toggle Menu */
.db-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1002;
}
.db-toggle .db-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.db-toggle.active .db-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.db-toggle.active .db-line:nth-child(2) {
  opacity: 0;
}
.db-toggle.active .db-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* --- FOOTER --- */
#footer-14 {
  background-color: radial-gradient(circle at 50% 0%, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
#footer-14 .db-footer-split-v {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
#footer-14 .db-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
#footer-14 .db-top h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}
#footer-14 .db-top .db-inline-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}
#footer-14 .db-top .db-inline-form .db-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  outline: none;
}
#footer-14 .db-top .db-inline-form .db-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}
@media (min-width: 768px) {
  #footer-14 .db-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
#footer-14 .db-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  width: 100%;
}
#footer-14 .db-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  #footer-14 .db-middle {
    grid-template-columns: repeat(4, 1fr);
  }
}
#footer-14 .db-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer-14 .db-col strong {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
#footer-14 .db-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
#footer-14 .db-col a:hover {
  color: var(--primary);
}
#footer-14 .db-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  #footer-14 .db-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
#footer-14 .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* --- HOW IT WORKS (Steps) --- */
#steps-1 {
  background-color: var(--bg);
  padding: clamp(3.75rem, 8vw, 6.25rem) 16px;
}
#steps-1 .db-container {
  /* Inherits global container settings */
  gap: 4rem;
}
#steps-1 .db-content.center {
  text-align: center;
  max-width: 600px;
}
#steps-1 .db-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  #steps-1 .db-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* Connecting line */
  }
  #steps-1 .db-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
    opacity: 0.3;
  }
}
#steps-1 .db-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
#steps-1 .db-step .db-circle {
  width: 60px;
  height: 60px;
  background-color: var(--surface-alt);
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--glow);
  /* Light blue shadow */
  transition: 0.3s;
}
#steps-1 .db-step .db-circle i {
  transition: 0.3s;
}
#steps-1 .db-step:hover .db-circle {
  box-shadow: var(--glow-hover);
  background-color: var(--primary);
  color: var(--primary-fg);
}
#steps-1 .db-step h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
  color: var(--text);
}
#steps-1 .db-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
/* --- FEATURES (Side by Side) --- */
#sbs-3 {
  background-color: var(--surface);
}
#sbs-3 .db-image-group {
  position: relative;
}
#sbs-3 .db-image-group::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  opacity: 0.2;
  z-index: 0;
}
#sbs-3 .db-image-group img {
  position: relative;
  z-index: 1;
}
#sbs-3 .db-ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
#sbs-3 .db-ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}
#sbs-3 .db-ul li span {
  color: var(--primary);
  font-size: 1.1rem;
}
#sbs-3 .db-ul li strong {
  color: var(--text);
}
#sbs-3 .db-ul .db-text {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #sbs-3 .db-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #sbs-3 .db-image-group {
    width: 48%;
  }
  #sbs-3 .db-content {
    width: 48%;
    text-align: left;
    align-items: flex-start;
  }
}
/* --- PRICING --- */
#pricing-1 {
  background-color: var(--bg);
}
#pricing-1 .db-pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}
#pricing-1 .db-pricing-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
#pricing-1 .db-pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--glow);
}
#pricing-1 .db-pricing-card.popular {
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
  border: 1px solid var(--primary);
  box-shadow: var(--glow);
  transform: scale(1.05);
  z-index: 1;
}
#pricing-1 .db-pricing-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text);
  font-size: 1.5rem;
}
#pricing-1 .db-pricing-card .db-pop-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--glow);
}
#pricing-1 .db-pricing-card .db-price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 1rem 0 0.5rem 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
#pricing-1 .db-pricing-card .db-price-tag span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
#pricing-1 .db-pricing-card .db-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  flex-grow: 1;
}
#pricing-1 .db-pricing-card .db-pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
#pricing-1 .db-pricing-card .db-pricing-features .disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
#pricing-1 .db-pricing-card .db-pricing-features i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}
#pricing-1 .db-pricing-card .db-pricing-features .disabled i {
  color: var(--text-muted);
}
#pricing-1 .db-pricing-card .full-width {
  width: 100%;
}
/* ============================= */
/*           Blog Section        */
/* ============================= */
#db-blog-1 {
  padding: 3rem 1rem;
  background-color: var(--surface);
}
#db-blog-1 * {
  box-sizing: border-box;
}
@media (min-width: 48rem) {
  #db-blog-1 {
    padding: clamp(3.75rem, 8vw, 6.25rem) 16px;
  }
}
#db-blog-1 .db-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
#db-blog-1 .db-blog-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 0 auto;
}
#db-blog-1 .db-blog-header .db-topper {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
#db-blog-1 .db-blog-header .db-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin: 0 0 1rem 0;
  color: var(--text);
}
#db-blog-1 .db-blog-header .db-text {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.1rem;
}
#db-blog-1 .db-blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
#db-blog-1 .db-blog-grid .db-blog-card {
  width: 100%;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
#db-blog-1 .db-blog-grid .db-blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
#db-blog-1 .db-blog-grid .db-blog-card .db-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-img-wrapper .db-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content .db-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content h3 a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content h3 a:hover {
  color: var(--primary);
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex: 1;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content .db-read-more {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content .db-read-more i {
  margin-left: 0.5rem;
  transition: margin 0.2s;
}
#db-blog-1 .db-blog-grid .db-blog-card .db-content .db-read-more:hover i {
  margin-left: 0.8rem;
}
@media (min-width: 48rem) {
  #db-blog-1 .db-blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  #db-blog-1 .db-blog-grid .db-blog-card {
    width: auto;
    grid-column: span 6;
  }
}
@media (min-width: 64rem) {
  #db-blog-1 .db-blog-grid .db-blog-card {
    grid-column: span 4;
  }
}
/* --- REVIEWS --- */
#db-reviews-6 {
  padding: clamp(3.75rem, 8vw, 6.25rem) 16px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
#db-reviews-6 .db-split-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 1024px) {
  #db-reviews-6 .db-split-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
#db-reviews-6 .db-stats-col {
  text-align: center;
}
@media (min-width: 1024px) {
  #db-reviews-6 .db-stats-col {
    width: 40%;
    text-align: left;
  }
}
#db-reviews-6 .db-stats-col .db-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  #db-reviews-6 .db-stats-col .db-badges {
    justify-content: flex-start;
  }
}
#db-reviews-6 .db-stats-col .db-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
}
#db-reviews-6 .db-card-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  #db-reviews-6 .db-card-group {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
#db-reviews-6 .db-card-group .db-card {
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
}
#db-reviews-6 .db-card-group .db-card p {
  font-size: 1.05rem;
  margin: 0 0 1rem 0;
  font-style: italic;
  color: var(--text);
}
#db-reviews-6 .db-card-group .db-card strong {
  color: var(--primary);
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
