#about-1 {
  padding: var(--sectionPadding);
  background: var(--surface);
}
#about-1 .db-about-split {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
#about-1 .db-about-img {
  width: 100%;
  max-width: 400px;
  position: relative;
}
#about-1 .db-about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 0.75046904;
}
#about-1 .db-about-img .db-exp-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}
#about-1 .db-about-img .db-exp-badge .db-years {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
#about-1 .db-about-img .db-exp-badge .db-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
#about-1 .db-content {
  width: 100%;
  /*
        .db-text {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        } */
}
#about-1 .db-content .db-topper {
  color: #a92424;
  /* Darker red for AA contrast */
}
#about-1 .db-content .db-signature-block {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#about-1 .db-content .db-signature-block .db-sig {
  width: 110px;
  height: 66px;
  opacity: 0.7;
}
#about-1 .db-content .db-signature-block div {
  border-left: 2px solid var(--border);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}
#about-1 .db-content .db-signature-block div strong {
  color: var(--text);
  font-size: 1rem;
}
#about-1 .db-content .db-signature-block div span {
  font-size: 0.85rem;
  color: var(--text);
}
@media (min-width: 48rem) {
  #about-1 .db-about-split {
    flex-direction: row;
    gap: 5rem;
  }
  #about-1 .db-about-img {
    width: 45%;
    max-width: 400px;
  }
  #about-1 .db-about-img .db-exp-badge {
    right: -2rem;
  }
  #about-1 .db-content {
    width: 50%;
  }
}
#brand {
  padding: var(--sectionPadding);
  background: var(--surface);
}
#brand .db-about-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}
#brand .db-about-brand .db-brand-split {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 55rem;
  justify-content: center;
  align-items: center;
}
#brand .db-about-brand .db-brand-split .db-text {
  margin: 0;
}
#brand .db-about-brand .db-brand-split img {
  width: 4.4rem;
  height: 5rem;
  margin-left: 1rem;
}
#brand .db-about-brand .db-content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#brand .db-about-brand .db-content .db-topper {
  color: #a92424;
  /* Darker red for AA contrast */
}
#brand .db-about-brand .db-content .db-text {
  width: 100%;
  max-width: 55rem;
}
#steps-1 {
  background-color: var(--surface);
  padding: var(--sectionPadding);
}
#steps-1 .db-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  /* Gap between header and steps */
}
#steps-1 .db-content.center {
  text-align: center;
  max-width: 600px;
  /*
        .db-text {
            font-size: 1.125rem;
            margin: 0;
        } */
}
#steps-1 .db-content.center .db-topper {
  display: block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
#steps-1 .db-content.center .db-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem 0;
  color: var(--text);
  line-height: 1.1;
}
#steps-1 .db-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 2rem;
  width: 100%;
  position: relative;
  /* Desktop: 4 columns */
}
@media (min-width: 768px) {
  #steps-1 .db-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Connecting Line */
  }
  #steps-1 .db-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Center of the 50px circle */
    left: 12.5%;
    /* Start line after half the first item */
    right: 12.5%;
    /* End line before half the last item */
    height: 2px;
    background-color: var(--border);
    z-index: 0;
  }
}
#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: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  /* Border matches background to create "cutout" effect on the line */
  border: 4px solid var(--surface);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#steps-1 .db-step h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}
#steps-1 .db-step p {
  font-size: 0.95rem;
  color: var(--text);
  /*line-height: 1.5;*/
  margin: 0;
}
#db-faq-1 {
  padding: 3rem 1rem;
  background: var(--surface);
}
#db-faq-1 * {
  box-sizing: border-box;
}
@media (min-width: 48rem) {
  #db-faq-1 {
    padding: var(--sectionPadding);
  }
}
#db-faq-1 .db-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#db-faq-1 .db-faq-header {
  text-align: center;
  max-width: 40rem;
  margin-bottom: 1.5rem;
  /*
        .db-text {
            color: var(--text-muted);
            margin: 0;
            font-size: 1.1rem;
        } */
}
#db-faq-1 .db-faq-header .db-topper {
  color: #a92424;
  /* Darker red for AA contrast */
}
#db-faq-1 .db-faq-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-faq-1 .db-faq-header .db-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin: 0 0 1rem 0;
  color: var(--text);
}
#db-faq-1 .db-accordion-wrapper {
  width: 100%;
  max-width: 48rem;
}
#db-faq-1 .db-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s;
}
#db-faq-1 .db-details[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#db-faq-1 .db-details[open] summary {
  background: color-mix(in srgb, var(--primary) 5%, transparent);
  color: var(--primary);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}
#db-faq-1 .db-details summary {
  padding: 1.25rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: background 0.2s, color 0.2s;
}
#db-faq-1 .db-details summary::-webkit-details-marker {
  display: none;
}
#db-faq-1 .db-details summary .db-chevron {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.875rem;
  height: 0.875rem;
  transform: translateY(-50%);
  transition: transform 0.2s;
  opacity: 0.6;
}
#db-faq-1 .db-details summary:hover {
  background: color-mix(in srgb, var(--text-muted) 5%, transparent);
}
#db-faq-1 .db-details .db-details-content {
  padding: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}
#db-faq-1 .db-details .db-details-content p {
  margin: 0;
  color: var(--text);
}
.theme-dark #db-faq-1 .db-chevron {
  filter: invert(1) brightness(1.5);
}
