/* Buttons */
.dseo-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.dseo-btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.dseo-btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.dseo-btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.dseo-btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.dseo-btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.dseo-btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.dseo-btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.dseo-btn--white:hover {
  background-color: #f1f5f9;
  color: var(--color-primary);
}

.dseo-btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  padding: 0.85rem 0;
}

.dseo-btn--ghost:hover {
  color: var(--color-accent);
}

/* Eyebrow tag */
.dseo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.dseo-eyebrow--green {
  background-color: #ecfdf5;
  color: #10b981;
}

.dseo-eyebrow--green::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.dseo-eyebrow--orange {
  background-color: #fff7ed;
  color: var(--color-accent);
}

.dseo-eyebrow--blue {
  background-color: #eff6ff;
  color: #2563eb;
}

/* Cards - Standard */
.dseo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.dseo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.dseo-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.dseo-card__icon--orange {
  background: #fff7ed;
  color: var(--color-accent);
}
.dseo-card__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}
.dseo-card__icon--green {
  background: #ecfdf5;
  color: #10b981;
}

.dseo-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.dseo-card__text {
  color: var(--color-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Cards - Numbered (service cards style A) */
.dseo-card--numbered {
  border-radius: 0;
  border-right: none;
  padding: 2.5rem;
  position: relative;
}

.dseo-card--numbered:last-child {
  border-right: 1px solid var(--color-border);
}

.dseo-card--numbered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dseo-card--numbered:hover {
  transform: none;
  box-shadow: none;
  background: var(--color-light);
}

.dseo-card--numbered:hover::before {
  transform: scaleX(1);
}

.dseo-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* Stats bar (floating) */
.dseo-stats-bar {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.dseo-stats-bar__item {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.dseo-stats-bar__item:last-child {
  border-right: none;
}

.dseo-stats-bar__value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.dseo-stats-bar__label {
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* Process steps (style C) */
.dseo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dseo-steps__item {
  padding: var(--space-xl);
  position: relative;
  border-left: 1px solid var(--color-border);
}

.dseo-steps__item:first-child {
  border-left: none;
}

.dseo-steps__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.dseo-steps__item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.dseo-steps__item p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Section spacing */
.dseo-section {
  padding: var(--space-4xl) 0;
}

.dseo-section--light {
  background-color: var(--color-light);
}

.dseo-section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.dseo-section--dark::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(249, 115, 22, 0.06) 100%
  );
  pointer-events: none;
}

.dseo-section--dark h2,
.dseo-section--dark h3 {
  color: var(--color-white);
}

.dseo-section__header {
  margin-bottom: var(--space-2xl);
}

.dseo-section__header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

/* Hero (dark gradient, style A) */
.dseo-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 50%, #0f3460 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.dseo-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.dseo-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.dseo-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.dseo-hero__heading {
  color: var(--color-white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
}

.dseo-hero__subheading {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.dseo-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Floating stats (overlaps hero) */
.dseo-hero-stats {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--space-2xl));
  padding-bottom: var(--space-3xl);
}

/* CTA Banner (horizontal, style C) */
.dseo-cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dseo-cta-banner h2 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.dseo-cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.dseo-cta-banner__actions {
  flex-shrink: 0;
}

/* FAQ Accordion */
.dseo-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.dseo-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
}

.dseo-faq__question:hover {
  color: var(--color-accent);
}

.dseo-faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.dseo-faq__item.is-open .dseo-faq__icon {
  transform: rotate(45deg);
}

.dseo-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.dseo-faq__answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--color-text);
  line-height: 1.7;
}

/* Badge */
.dseo-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  background-color: var(--color-light);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .dseo-hero__heading {
    font-size: var(--text-4xl);
  }

  .dseo-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .dseo-steps {
    grid-template-columns: 1fr;
  }

  .dseo-steps__item {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0;
  }

  .dseo-steps__item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .dseo-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }

  .dseo-card--numbered {
    border-right: 1px solid var(--color-border);
  }
}
