/* ============================================================================
   DENTALONE PUBLIC WEBSITE — COMPONENTS
   Reusable UI components
   ============================================================================ */

/* — Buttons --------------------------------------------------------------- */
.do-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--do-space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--do-font-sans);
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-semibold);
  line-height: 1;
  border-radius: var(--do-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--do-dur-normal) var(--do-ease);
  text-decoration: none;
  white-space: nowrap;
}

.do-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.do-btn--primary {
  background-color: var(--do-primary);
  color: var(--do-text-inverse);
  border-color: var(--do-primary);
}

.do-btn--primary:hover {
  background-color: var(--do-primary-hover);
  border-color: var(--do-primary-hover);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
  transform: translateY(-1px);
}

.do-btn--secondary {
  background-color: var(--do-bg);
  color: var(--do-text);
  border-color: var(--do-border);
}

.do-btn--secondary:hover {
  background-color: var(--do-bg-subtle);
  border-color: var(--do-border-strong);
  transform: translateY(-1px);
}

.do-btn--ghost {
  background: transparent;
  color: var(--do-text-secondary);
  border-color: transparent;
  padding-inline: var(--do-space-4);
}

.do-btn--ghost:hover {
  color: var(--do-text);
  background-color: var(--do-bg-muted);
}

.do-btn--lg {
  padding: 0.9375rem 2rem;
  font-size: var(--do-text-base);
  border-radius: var(--do-radius-lg);
}

.do-btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--do-text-xs);
}

/* — Navbar ---------------------------------------------------------------- */
.do-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--do-z-navbar);
  height: var(--do-navbar-height);
  display: flex;
  align-items: center;
  transition: background-color var(--do-dur-slow) var(--do-ease),
    border-color var(--do-dur-slow) var(--do-ease),
    box-shadow var(--do-dur-slow) var(--do-ease);
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
}

.do-navbar.is-scrolled {
  background-color: var(--do-bg-navbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--do-border-subtle);
  box-shadow: var(--do-shadow-xs);
}

.do-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--do-container-max);
  margin-inline: auto;
  padding-inline: var(--do-gutter);
}

.do-navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--do-space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.do-navbar__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.do-navbar__brand-text {
  font-family: var(--do-font-sans);
  font-size: var(--do-text-lg);
  font-weight: var(--do-weight-bold);
  letter-spacing: var(--do-tracking-tight);
  color: var(--do-text);
}

.do-navbar__links {
  display: flex;
  align-items: center;
  gap: var(--do-space-1);
}

.do-navbar__link {
  padding: var(--do-space-2) var(--do-space-3);
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-medium);
  color: var(--do-text-secondary);
  text-decoration: none;
  border-radius: var(--do-radius-sm);
  transition: color var(--do-dur-fast) var(--do-ease),
    background-color var(--do-dur-fast) var(--do-ease);
}

.do-navbar__link:hover,
.do-navbar__link.is-active {
  color: var(--do-text);
  background-color: var(--do-bg-muted);
}

.do-navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--do-space-3);
}

.do-navbar__login {
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-medium);
  color: var(--do-text-secondary);
  text-decoration: none;
  transition: color var(--do-dur-fast) var(--do-ease);
}

.do-navbar__login:hover {
  color: var(--do-text);
}

/* Mobile hamburger */
.do-navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.do-navbar__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--do-text);
  border-radius: 2px;
  transition: transform var(--do-dur-normal) var(--do-ease),
    opacity var(--do-dur-fast) var(--do-ease);
}

.do-navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.do-navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.do-navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 860px) {
  .do-navbar__links {
    display: none;
  }

  .do-navbar__login {
    display: none;
  }

  .do-navbar__hamburger {
    display: flex;
  }
}

/* — Mobile Menu ----------------------------------------------------------- */
.do-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--do-z-navbar) - 1);
  background-color: var(--do-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--do-space-8);
  padding: var(--do-space-16) var(--do-gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--do-dur-slow) var(--do-ease);
}

.do-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.do-mobile-menu__link {
  font-family: var(--do-font-display);
  font-size: var(--do-text-3xl);
  color: var(--do-text);
  text-decoration: none;
  transition: color var(--do-dur-fast) var(--do-ease);
}

.do-mobile-menu__link:hover {
  color: var(--do-primary);
}

.do-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-4);
  margin-top: var(--do-space-8);
  width: 100%;
  max-width: 280px;
}

.do-mobile-menu__actions .do-btn {
  width: 100%;
  justify-content: center;
}

/* — Footer ---------------------------------------------------------------- */
.do-footer {
  background-color: var(--do-bg);
  border-top: 1px solid var(--do-border);
  color: var(--do-text-secondary);
  padding-top: var(--do-space-16);
  padding-bottom: var(--do-space-8);
  font-family: var(--do-font-sans);
}

.do-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--do-space-6);
  margin-bottom: var(--do-space-10);
}

@media (min-width: 1024px) {
  .do-footer__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--do-space-8);
  }
}

.do-footer__nav {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .do-footer__nav {
    grid-column: span 3;
    order: 3;
  }
  .do-footer__nav.do-footer__company {
    order: 4;
  }
}

.do-footer__brand-col {
  grid-column: 1 / -1;
  order: 3;
  display: flex;
  flex-direction: column;
  margin-top: var(--do-space-6);
}

@media (min-width: 1024px) {
  .do-footer__brand-col {
    grid-column: span 5;
    order: 1;
    margin-top: 0;
  }
}

.do-footer__spacer {
  display: none;
}

@media (min-width: 1024px) {
  .do-footer__spacer {
    display: block;
    grid-column: span 1;
    order: 2;
  }
}

.do-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--do-space-3);
  margin-bottom: var(--do-space-4);
}

.do-footer__logo {
  width: 37px;
  height: 37px;
  object-fit: contain;
  filter: var(--do-logo-filter, none);
  transition: transform 200ms ease;
  transform-origin: center;
  transform: scale(1.6);
}

.do-footer__brand:hover .do-footer__logo {
  transform: scale(1.7);
}

.do-footer__brand-text {
  font-size: var(--do-text-xl);
  font-weight: var(--do-weight-semibold);
  letter-spacing: var(--do-tracking-tight);
  color: var(--do-text);
}

.do-footer__desc {
  font-size: var(--do-text-sm);
  line-height: var(--do-leading-relaxed);
  color: var(--do-text-secondary);
  margin-bottom: var(--do-space-6);
  max-width: 24rem;
}

.do-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-3);
  margin-bottom: var(--do-space-6);
}

.do-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--do-space-3);
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
  transition: color var(--do-dur-normal) var(--do-ease);
}

.do-footer__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--do-text-muted);
  transition: color var(--do-dur-normal) var(--do-ease);
}

.do-footer__contact-item:first-child .do-footer__icon {
  margin-top: 2px;
}

.do-footer__contact-item--link {
  text-decoration: none;
  align-items: center;
}

.do-footer__contact-item--link:hover {
  color: var(--do-primary);
}

.do-footer__contact-item--link:hover .do-footer__icon {
  color: var(--do-primary);
}

.do-footer__social {
  display: flex;
  align-items: center;
  gap: var(--do-space-4);
}

@media (max-width: 767px) {
  .do-footer__social {
    justify-content: center;
    width: 100%;
  }
}

.do-footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--do-radius-full);
  background-color: var(--do-bg);
  border: 1px solid var(--do-border-strong);
  color: var(--do-text-secondary);
  transition: all 200ms ease;
}

.do-footer__social-link:hover {
  background-color: var(--do-primary);
  border-color: var(--do-primary);
  color: #ffffff;
  transform: translateY(-4px);
}

.do-footer__social-link .do-footer__icon {
  width: 18px;
  height: 18px;
  color: inherit;
}

.do-footer__col-title {
  font-size: var(--do-text-xs);
  font-weight: var(--do-weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--do-text);
  margin-bottom: var(--do-space-4);
}

.do-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-3);
}

.do-footer__link {
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
  text-decoration: none;
  transition: color var(--do-dur-normal) var(--do-ease);
}

.do-footer__link:hover {
  color: var(--do-primary);
}

.do-footer__bottom {
  padding-top: var(--do-space-6);
  border-top: none;
  font-size: var(--do-text-xs);
  color: var(--do-text-secondary);
  position: relative;
}

.do-footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--do-border);
}

.do-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .do-footer__bottom-content {
    flex-direction: column;
    gap: var(--do-space-4);
    text-align: center;
    justify-content: center;
  }
}

.do-footer__copyright {
  color: var(--do-text-secondary);
}

.do-footer__bottom-links {
  display: flex;
  gap: var(--do-space-4);
  align-items: center;
}

.do-footer__bottom-links a {
  color: var(--do-text-secondary);
  text-decoration: none;
  transition: color var(--do-dur-normal) var(--do-ease);
}

.do-footer__bottom-links a:hover {
  color: var(--do-primary);
}

.do-footer__made-with {
  color: var(--do-text-muted);
  letter-spacing: var(--do-tracking-wide);
  display: flex;
  align-items: center;
  gap: 4px;
}

.do-footer__heart {
  color: var(--do-danger);
  font-size: 10px;
}
/* — Cards ----------------------------------------------------------------- */
.do-card {
  background: var(--do-bg-card);
  border: 1px solid var(--do-border);
  border-radius: var(--do-radius-xl);
  padding: var(--do-space-8);
  transition: border-color var(--do-dur-normal) var(--do-ease),
    box-shadow var(--do-dur-normal) var(--do-ease),
    transform var(--do-dur-normal) var(--do-ease);
}

.do-card:hover {
  border-color: var(--do-border-strong);
  box-shadow: var(--do-shadow-card-hover);
  transform: translateY(-2px);
}

.do-card--flat {
  border: none;
  box-shadow: none;
  background: transparent;
}

.do-card--flat:hover {
  box-shadow: none;
  transform: none;
}

/* — Feature Card ---------------------------------------------------------- */
.do-feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-4);
}

.do-feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--do-primary-muted);
  border-radius: var(--do-radius-lg);
  color: var(--do-primary);
  flex-shrink: 0;
}

.do-feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.do-feature-card__title {
  font-size: var(--do-text-lg);
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
}

.do-feature-card__desc {
  font-size: var(--do-text-sm);
  line-height: var(--do-leading-relaxed);
  color: var(--do-text-secondary);
}

/* — Pricing Card ---------------------------------------------------------- */
.do-pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.do-pricing-card--featured {
  border-color: var(--do-primary);
  box-shadow: 0 0 0 1px var(--do-primary), var(--do-shadow-card);
}

.do-pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--do-primary);
  color: var(--do-text-inverse);
  font-size: var(--do-text-xs);
  font-weight: var(--do-weight-semibold);
  padding: var(--do-space-1) var(--do-space-4);
  border-radius: 0 var(--do-radius-xl) 0 var(--do-radius-md);
}

.do-pricing-card__name {
  font-size: var(--do-text-lg);
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
  margin-bottom: var(--do-space-2);
}

.do-pricing-card__desc {
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
  margin-bottom: var(--do-space-6);
}

.do-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--do-space-1);
  margin-bottom: var(--do-space-6);
}

.do-pricing-card__amount {
  font-size: var(--do-text-4xl);
  font-weight: var(--do-weight-bold);
  color: var(--do-text);
  letter-spacing: var(--do-tracking-tight);
}

.do-pricing-card__period {
  font-size: var(--do-text-sm);
  color: var(--do-text-muted);
}

.do-pricing-card__divider {
  width: 100%;
  height: 1px;
  background-color: var(--do-border);
  margin-bottom: var(--do-space-6);
}

.do-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-3);
  margin-bottom: var(--do-space-8);
  flex: 1;
}

.do-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--do-space-3);
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
}

.do-pricing-card__feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--do-primary);
  margin-top: 2px;
}

.do-pricing-card .do-btn {
  width: 100%;
  justify-content: center;
}

/* — Testimonial Card ------------------------------------------------------ */
.do-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-6);
}

.do-testimonial-card__quote {
  font-size: var(--do-text-base);
  line-height: var(--do-leading-relaxed);
  color: var(--do-text);
  font-style: italic;
  position: relative;
  padding-top: var(--do-space-4);
}

.do-testimonial-card__quote::before {
  content: '"';
  font-family: var(--do-font-display);
  font-size: var(--do-text-4xl);
  color: var(--do-primary);
  line-height: 1;
  position: absolute;
  top: -4px;
  left: 0;
}

.do-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--do-space-3);
}

.do-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--do-radius-full);
  background-color: var(--do-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-semibold);
  color: var(--do-primary);
  flex-shrink: 0;
}

.do-testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.do-testimonial-card__name {
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
}

.do-testimonial-card__role {
  font-size: var(--do-text-xs);
  color: var(--do-text-muted);
}

/* — Badge ----------------------------------------------------------------- */
.do-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--do-space-1);
  padding: var(--do-space-1) var(--do-space-3);
  font-size: var(--do-text-xs);
  font-weight: var(--do-weight-semibold);
  border-radius: var(--do-radius-full);
  background-color: var(--do-primary-muted);
  color: var(--do-primary);
  border: 1px solid var(--do-border-teal);
}

.do-badge--neutral {
  background-color: var(--do-bg-muted);
  color: var(--do-text-secondary);
  border-color: var(--do-border);
}

/* — FAQ Accordion --------------------------------------------------------- */
.do-faq-item {
  background: var(--do-surface-muted, #F9FAFB); /* Fallback to light subtle bg if not defined */
  border: 1px solid var(--do-border-subtle, var(--do-border));
  border-radius: 16px;
  margin-bottom: 16px;
  transition: background-color 200ms var(--do-ease), border-color 200ms var(--do-ease);
}

[data-theme="dark"] .do-faq-item {
  background: rgba(255,255,255, 0.03);
}

.do-faq-item:hover {
  background: var(--do-surface, #FFFFFF);
  border-color: var(--do-border);
}

[data-theme="dark"] .do-faq-item:hover {
  background: rgba(255,255,255, 0.05);
}

.do-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  font-size: 20px;
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--do-space-4);
  min-height: 48px;
}

.do-faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--do-text-muted);
  transition: color 200ms var(--do-ease);
}

.do-faq-icon-v {
  transition: transform 200ms var(--do-ease), opacity 200ms var(--do-ease);
  transform-origin: center;
}

.do-faq-item.is-open .do-faq-item__icon {
  color: var(--do-text);
}

.do-faq-item.is-open .do-faq-icon-v {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.do-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--do-ease), opacity 300ms var(--do-ease);
  opacity: 0;
}

.do-faq-item.is-open .do-faq-item__body {
  max-height: 500px;
  opacity: 1;
}

.do-faq-item__answer {
  padding: 0 24px 24px 24px;
  font-size: 16px;
  color: var(--do-text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

@media (max-width: 992px) {
  .do-faq-item__trigger {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .do-faq-item__trigger {
    font-size: 17px;
    padding: 18px 20px;
  }
  .do-faq-item__answer {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
  .do-faq-item {
    margin-bottom: 12px;
  }
}

/* — Pricing FAQ Accordion Premium Cards ----------------------------------- */
.do-pricing-faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.do-pricing-faq-header {
  text-align: center;
  margin-bottom: var(--do-space-12);
}

.do-pricing-faq-header .do-overline {
  margin-bottom: var(--do-space-4);
}

.do-pricing-faq-header h2 {
  font-size: 44px;
  font-weight: var(--do-weight-semibold);
  margin-bottom: var(--do-space-4);
  letter-spacing: -0.02em;
}

.do-pricing-faq-header p {
  font-size: 18px;
  color: var(--do-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.do-pricing-faq-item {
  background: var(--do-surface-muted);
  border: 1px solid var(--do-border-subtle);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  transition: background-color 200ms var(--do-ease), border-color 200ms var(--do-ease);
}

.do-pricing-faq-item:hover {
  background: var(--do-surface);
  border-color: var(--do-border);
}

.do-pricing-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  font-size: 20px;
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--do-space-4);
  min-height: 24px;
  line-height: 1.2;
}

.do-pricing-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--do-text-muted);
  transition: transform 200ms var(--do-ease), color 200ms var(--do-ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.do-pricing-faq-item__icon .do-faq-icon-v {
  transition: opacity 200ms var(--do-ease), transform 200ms var(--do-ease);
  transform-origin: center;
}

.do-pricing-faq-item:hover .do-pricing-faq-item__icon {
  color: var(--do-text);
}

.do-pricing-faq-item.is-open .do-pricing-faq-item__icon {
  transform: rotate(180deg);
  color: var(--do-primary);
}

.do-pricing-faq-item.is-open .do-pricing-faq-item__icon .do-faq-icon-v {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.do-pricing-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--do-ease), opacity 300ms var(--do-ease);
  opacity: 0;
}

.do-pricing-faq-item.is-open .do-pricing-faq-item__body {
  max-height: 500px;
  opacity: 1;
}

.do-pricing-faq-item__answer {
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--do-text-muted);
  max-width: 800px;
  margin: 0;
}

/* — Pricing FAQ Bottom CTA Support Card ----------------------------------- */
.do-pricing-faq-cta {
  background: var(--do-surface);
  border: 1px solid var(--do-border);
  border-radius: 24px;
  padding: var(--do-space-10);
  text-align: center;
  margin-top: var(--do-space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.do-pricing-faq-cta h3 {
  font-size: 24px;
  margin-bottom: var(--do-space-3);
  font-weight: var(--do-weight-semibold);
}

.do-pricing-faq-cta p {
  color: var(--do-text-secondary);
  font-size: 16px;
  margin-bottom: var(--do-space-8);
  max-width: 500px;
}

.do-pricing-faq-cta__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--do-space-4);
  margin-bottom: var(--do-space-6);
  width: 100%;
}

.do-pricing-faq-cta__actions .do-btn {
  flex: 1;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.do-pricing-faq-cta__trust {
  display: flex;
  gap: var(--do-space-6);
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}
.do-pricing-faq-cta__trust-item {
  display: flex;
  align-items: center;
  gap: var(--do-space-2);
  font-size: 14px;
  color: var(--do-text-secondary);
  font-weight: var(--do-weight-medium);
  white-space: nowrap;
}
.do-pricing-faq-cta__trust-item svg {
  color: var(--do-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .do-pricing-faq-header h2 { font-size: 36px; }
  .do-pricing-faq-item__trigger { font-size: 18px; }
  .do-pricing-faq-item__icon { width: 18px; height: 18px; }
  .do-pricing-faq-cta__trust { gap: var(--do-space-4); }
}

@media (max-width: 767px) {
  .do-pricing-faq-header h2 { font-size: 32px; }
  .do-pricing-faq-header p { font-size: 16px; }
  .do-pricing-faq-item {
    padding: 20px;
    border-radius: 12px;
    width: 100%;
  }
  .do-pricing-faq-item__trigger { font-size: 17px; }
  .do-pricing-faq-item__icon { width: 18px; height: 18px; }
  .do-pricing-faq-item__answer { font-size: 16px; }
  
  .do-pricing-faq-cta {
    padding: var(--do-space-6);
  }
  .do-pricing-faq-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .do-pricing-faq-cta__actions .do-btn {
    width: 100%;
    max-width: none;
  }
  .do-pricing-faq-cta__trust {
    flex-wrap: wrap;
    gap: var(--do-space-4);
  }
}

/* — Form Elements --------------------------------------------------------- */
.do-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--do-space-2);
}

.do-form-label {
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-medium);
  color: var(--do-text);
}

.do-form-input,
.do-form-textarea,
.do-form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: var(--do-text-sm);
  color: var(--do-text);
  background-color: var(--do-bg);
  border: 1px solid var(--do-border);
  border-radius: var(--do-radius-md);
  outline: none;
  transition: border-color var(--do-dur-fast) var(--do-ease),
    box-shadow var(--do-dur-fast) var(--do-ease);
}

.do-form-input:focus,
.do-form-textarea:focus,
.do-form-select:focus {
  border-color: var(--do-border-focus);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.do-form-input::placeholder,
.do-form-textarea::placeholder {
  color: var(--do-text-muted);
}

.do-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.do-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* — Stat Card ------------------------------------------------------------- */
.do-stat {
  text-align: center;
}

.do-stat__value {
  font-family: var(--do-font-display);
  font-size: var(--do-text-4xl);
  color: var(--do-primary);
  margin-bottom: var(--do-space-2);
}

.do-stat__label {
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
}

/* — Divider --------------------------------------------------------------- */
.do-divider {
  width: 100%;
  height: 1px;
  background-color: var(--do-border);
  border: none;
}

/* — Toggle Switch --------------------------------------------------------- */
.do-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--do-space-3);
  background-color: var(--do-bg-muted);
  border-radius: var(--do-radius-full);
  padding: var(--do-space-1);
  border: 1px solid var(--do-border);
}

.do-toggle__option {
  padding: var(--do-space-2) var(--do-space-5);
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-medium);
  color: var(--do-text-secondary);
  border-radius: var(--do-radius-full);
  cursor: pointer;
  transition: all var(--do-dur-normal) var(--do-ease);
  border: none;
  background: transparent;
}

.do-toggle__option.is-active {
  background-color: var(--do-bg);
  color: var(--do-text);
  box-shadow: var(--do-shadow-sm);
}

.do-toggle__save {
  font-size: var(--do-text-xs);
  font-weight: var(--do-weight-semibold);
  color: var(--do-primary);
  margin-left: var(--do-space-2);
}

/* — CTA Banner ------------------------------------------------------------ */
.do-cta-banner {
  background-color: var(--do-bg-muted);
  border-radius: var(--do-radius-2xl);
  padding: var(--do-space-16) var(--do-space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.do-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.do-cta-banner__title {
  font-family: var(--do-font-display);
  font-size: clamp(1.75rem, 3.5vw, var(--do-text-4xl));
  color: var(--do-text);
  margin-bottom: var(--do-space-4);
  position: relative;
}

.do-cta-banner__subtitle {
  font-size: var(--do-text-lg);
  color: var(--do-text-secondary);
  margin-bottom: var(--do-space-5);
  max-width: 480px;
  margin-inline: auto;
  position: relative;
}

.do-cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--do-space-4);
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 640px) {
  .do-cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .do-cta-banner__actions .do-btn {
    width: 100%;
    text-align: center;
  }
}

.do-cta-banner .do-btn--primary {
  background-color: var(--do-teal-500);
  border-color: var(--do-teal-500);
}

.do-cta-banner .do-btn--primary:hover {
  background-color: var(--do-teal-400);
  border-color: var(--do-teal-400);
}

.do-cta-banner .do-btn--secondary {
  background-color: transparent;
  color: var(--do-text-secondary);
  border-color: var(--do-border-strong);
}

.do-cta-banner .do-btn--secondary:hover {
  background-color: var(--do-bg-card-hover);
  border-color: var(--do-border-strong);
}

/* — Trusted By / Logo Bar ------------------------------------------------ */
.do-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--do-space-12);
  flex-wrap: wrap;
  opacity: 0.45;
}

.do-logo-bar__item {
  font-family: var(--do-font-sans);
  font-size: var(--do-text-sm);
  font-weight: var(--do-weight-bold);
  letter-spacing: var(--do-tracking-wide);
  color: var(--do-text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* — Comparison Table ------------------------------------------------------ */
.do-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--do-text-sm);
}

.do-compare-table th {
  text-align: left;
  padding: var(--do-space-3) var(--do-space-4);
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
  background-color: var(--do-bg-subtle);
  border-bottom: 1px solid var(--do-border);
}

.do-compare-table td {
  padding: var(--do-space-3) var(--do-space-4);
  color: var(--do-text-secondary);
  border-bottom: 1px solid var(--do-border-subtle);
}

.do-compare-table th:first-child,
.do-compare-table td:first-child {
  font-weight: var(--do-weight-medium);
  color: var(--do-text);
}

.do-compare-table td:not(:first-child) {
  text-align: center;
}

/* — Timeline -------------------------------------------------------------- */
.do-timeline {
  position: relative;
  padding-left: var(--do-space-10);
}

.do-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--do-border);
}

.do-timeline__item {
  position: relative;
  padding-bottom: var(--do-space-10);
}

.do-timeline__item:last-child {
  padding-bottom: 0;
}

.do-timeline__dot {
  position: absolute;
  left: calc(-1 * var(--do-space-10) + 10px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: var(--do-radius-full);
  background-color: var(--do-primary);
  border: 3px solid var(--do-bg);
  box-shadow: 0 0 0 2px var(--do-primary);
}

.do-timeline__year {
  font-size: var(--do-text-xs);
  font-weight: var(--do-weight-semibold);
  color: var(--do-primary);
  margin-bottom: var(--do-space-2);
}

.do-timeline__title {
  font-size: var(--do-text-base);
  font-weight: var(--do-weight-semibold);
  color: var(--do-text);
  margin-bottom: var(--do-space-1);
}

.do-timeline__desc {
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
  line-height: var(--do-leading-relaxed);
}

/* — Footer V3 Specific ---------------------------------------------------- */
.do-footer-v3__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--do-space-12);
  margin-bottom: var(--do-space-16);
}

@media (max-width: 860px) {
  .do-footer-v3__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--do-space-10);
  }
}

@media (max-width: 520px) {
  .do-footer-v3__grid {
    grid-template-columns: 1fr;
  }
}

.do-footer__col1 {
  display: flex;
  flex-direction: column;
}

.do-footer__logo-icon {
  width: 20px;
  height: 20px;
  color: var(--do-text);
}

.do-footer__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--do-space-3);
  margin-top: var(--do-space-6);
}

.do-footer__features li {
  display: flex;
  align-items: center;
  gap: var(--do-space-2);
  font-size: var(--do-text-sm);
  color: var(--do-text-secondary);
}

.do-footer__features svg {
  width: 16px;
  height: 16px;
}

/* — Interactive CTA & Modals ---------------------------------------------- */
.do-btn.is-loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}

.do-btn.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: do-spin 0.8s linear infinite;
}

@keyframes do-spin {
  to { transform: rotate(360deg); }
}

.do-btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.do-cta-trust {
  margin-top: var(--do-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--do-space-2);
}
.do-cta-trust__item {
  display: flex;
  align-items: center;
  gap: var(--do-space-2);
  font-size: 13px;
  color: var(--do-teal-700);
}
.do-cta-trust__icon {
  color: var(--do-teal-800);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Premium Modal */
.do-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--do-ease);
}
.do-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.do-modal {
  background: var(--do-bg-card);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: var(--do-space-8);
  box-shadow: var(--do-shadow-xl);
  transform: translateY(20px) scale(0.98);
  transition: transform 300ms var(--do-ease);
  position: relative;
}
.do-modal-overlay.is-active .do-modal {
  transform: translateY(0) scale(1);
}

.do-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--do-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 200ms, background 200ms;
}
.do-modal__close:hover {
  background: var(--do-surface-muted);
  color: var(--do-text);
}

.do-modal__title {
  font-size: 24px;
  font-weight: var(--do-weight-semibold);
  margin-bottom: var(--do-space-2);
  color: var(--do-text);
}

.do-modal__desc {
  color: var(--do-text-secondary);
  font-size: 15px;
  margin-bottom: var(--do-space-6);
  line-height: 1.6;
}

/* Success State Animation */
.do-success-anim {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--do-space-6);
}
.do-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--do-primary-muted);
  color: var(--do-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.do-success-icon::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--do-primary-muted);
  animation: do-ripple 1.5s infinite;
}
@keyframes do-ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}