/* ===========================================
   SERVICE DETAIL PAGES — Funded Company Level
   Premium, calm, structured, Apple-inspired
   Matches homepage + services page visual language
   =========================================== */

/* ========== HERO — Split Layout ========== */

.sd-hero {
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.sd-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  filter: blur(80px);
}

.sd-hero__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.1) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.sd-hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
}

.sd-hero__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sd-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sd-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.sd-hero__breadcrumb a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sd-hero__breadcrumb a:hover {
  color: #2F80ED;
}

.sd-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  color: #D1D5DB;
}

.sd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.sd-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: sd-dot-pulse 2s ease-in-out infinite;
}

@keyframes sd-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.sd-hero__badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #2F80ED;
}

.sd-hero__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 850;
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}

.sd-hero__subtitle {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 480px;
}

.sd-hero__trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.sd-hero__trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #EBF5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F80ED;
  flex-shrink: 0;
}

.sd-hero__trust-icon svg {
  width: 16px;
  height: 16px;
}

.sd-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sd-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(47, 128, 237, 0.3);
}

.sd-hero__btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(47, 128, 237, 0.4);
}

.sd-hero__btn-primary:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 3px;
}

.sd-hero__btn-primary svg {
  transition: transform 0.3s ease;
}

.sd-hero__btn-primary:hover svg {
  transform: translateX(3px);
}

.sd-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sd-hero__btn-secondary:hover {
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.3);
  color: #2F80ED;
}

.sd-hero__btn-secondary:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 3px;
}

.sd-hero__right {
  position: relative;
}

.sd-hero__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  aspect-ratio: 4 / 3;
  background: #F3F4F6;
}

.sd-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== QUICK INFO STRIP ========== */

.sd-quick {
  background: #FFFFFF;
  border-bottom: 1px solid #F3F4F6;
  padding: 0;
}

.sd-quick__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sd-quick__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  border-right: 1px solid #F3F4F6;
}

.sd-quick__item:last-child {
  border-right: none;
}

.sd-quick__item:not(:first-child) {
  padding-left: 28px;
}

.sd-quick__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F0F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F80ED;
  flex-shrink: 0;
}

.sd-quick__icon svg {
  width: 20px;
  height: 20px;
}

.sd-quick__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.sd-quick__value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* ========== WHAT'S INCLUDED ========== */

.sd-included {
  background: #FFFFFF;
  padding: 100px 0;
}

.sd-included__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sd-section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sd-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin: 0;
}

.sd-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sd-included__card {
  background: #FAFBFD;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sd-included__card:hover {
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.sd-included__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EBF4FF 0%, #F0F7FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2F80ED;
  border: 1px solid rgba(47, 128, 237, 0.08);
  transition: all 0.35s ease;
}

.sd-included__card:hover .sd-included__card-icon {
  background: linear-gradient(135deg, #2F80ED 0%, #56A0F5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.25);
}

.sd-included__card-icon svg {
  width: 20px;
  height: 20px;
}

.sd-included__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.sd-included__card-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ========== PACKAGES ========== */

.sd-packages {
  background: #F9FAFB;
  padding: 100px 0;
}

.sd-packages__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.sd-package {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.sd-package:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.sd-package--featured {
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1);
}

.sd-package--featured:hover {
  box-shadow: 0 16px 48px rgba(47, 128, 237, 0.15);
}

.sd-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sd-package__name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.sd-package__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 24px;
}

.sd-package__price {
  margin-bottom: 24px;
}

.sd-package__price-label {
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  display: block;
  margin-bottom: 4px;
}

.sd-package__price-amount {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
}

.sd-package__price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: #9CA3AF;
  margin-left: 4px;
}

.sd-package__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sd-package__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
}

.sd-package__feature svg {
  width: 18px;
  height: 18px;
  color: #22C55E;
  flex-shrink: 0;
  margin-top: 1px;
}

.sd-package__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  text-align: center;
}

.sd-package__cta--primary {
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.25);
}

.sd-package__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 128, 237, 0.35);
}

.sd-package__cta--outline {
  background: #FFFFFF;
  color: #2F80ED;
  border: 2px solid rgba(47, 128, 237, 0.2);
}

.sd-package__cta--outline:hover {
  border-color: #2F80ED;
  background: #F0F6FF;
}

.sd-package__cta:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

/* ========== ADD-ONS ========== */

.sd-addons {
  background: #FFFFFF;
  padding: 100px 0;
}

.sd-addons__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sd-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #FAFBFD;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px 22px;
  transition: all 0.25s ease;
}

.sd-addon:hover {
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.sd-addon__info {
  flex: 1;
  min-width: 0;
}

.sd-addon__name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px;
}

.sd-addon__desc {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

.sd-addon__price {
  font-size: 14px;
  font-weight: 700;
  color: #2F80ED;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========== HOW IT WORKS ========== */

.sd-hiw {
  background: #F9FAFB;
  padding: 100px 0;
}

.sd-hiw__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-hiw__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.sd-hiw__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 28px;
  position: relative;
}

.sd-hiw__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBF4FF 0%, #F0F7FF 100%);
  border: 2px solid rgba(47, 128, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 800;
  color: #2F80ED;
  transition: all 0.35s ease;
}

.sd-hiw__step:hover .sd-hiw__num {
  background: linear-gradient(135deg, #2F80ED 0%, #56A0F5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
  transform: scale(1.08);
}

.sd-hiw__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.sd-hiw__step-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.sd-hiw__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  color: #D1D5DB;
}

.sd-hiw__connector svg {
  width: 28px;
  height: 16px;
}

/* ========== FAQ ACCORDION ========== */

.sd-faq {
  background: #FFFFFF;
  padding: 100px 0;
}

.sd-faq__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sd-faq__item {
  border-bottom: 1px solid #F3F4F6;
}

.sd-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  text-align: left;
  transition: color 0.2s ease;
}

.sd-faq__question:hover {
  color: #2F80ED;
}

.sd-faq__question:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
  border-radius: 4px;
}

.sd-faq__chevron {
  width: 20px;
  height: 20px;
  color: #9CA3AF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sd-faq__item.active .sd-faq__chevron {
  transform: rotate(180deg);
  color: #2F80ED;
}

.sd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s ease;
}

.sd-faq__answer-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
}

.sd-faq__item.active .sd-faq__answer {
  max-height: 300px;
}

/* ========== FINAL CTA ========== */

.sd-cta {
  background: #F9FAFB;
  padding: 100px 0;
}

.sd-cta__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.sd-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 850;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.sd-cta__sub {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sd-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sd-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.3);
}

.sd-cta__btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(47, 128, 237, 0.4);
}

.sd-cta__btn-primary:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 3px;
}

.sd-cta__btn-primary svg {
  transition: transform 0.3s ease;
}

.sd-cta__btn-primary:hover svg {
  transform: translateX(3px);
}

.sd-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 16px;
  transition: color 0.2s ease;
}

.sd-cta__btn-secondary:hover {
  color: #2F80ED;
}

.sd-cta__note {
  display: block;
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

/* ========== FOOTER WRAPPER ========== */

.sd-footer {
  padding: 0 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== RESPONSIVE — 1024px ========== */

@media (max-width: 1024px) {
  .sd-hero {
    padding: 130px 0 64px;
  }

  .sd-hero__container {
    gap: 40px;
  }

  .sd-included__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-quick__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-quick__item {
    border-right: none;
    padding-left: 0 !important;
  }

  .sd-quick__item:nth-child(1),
  .sd-quick__item:nth-child(2) {
    border-bottom: 1px solid #F3F4F6;
  }

  .sd-addons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== RESPONSIVE — 768px ========== */

@media (max-width: 768px) {
  .sd-hero {
    padding: 110px 0 56px;
  }

  .sd-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sd-hero__left {
    order: 2;
  }

  .sd-hero__right {
    order: 1;
  }

  .sd-hero__title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .sd-hero__subtitle {
    font-size: 16px;
  }

  .sd-hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .sd-hero__btn-primary,
  .sd-hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .sd-quick__container {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .sd-included,
  .sd-packages,
  .sd-addons,
  .sd-hiw,
  .sd-faq,
  .sd-cta {
    padding: 72px 0;
  }

  .sd-section-title {
    font-size: 30px;
  }

  .sd-packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .sd-addons__grid {
    grid-template-columns: 1fr;
  }

  .sd-hiw__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sd-hiw__step {
    max-width: 400px;
    width: 100%;
    padding: 24px 20px;
  }

  .sd-hiw__connector {
    transform: rotate(90deg);
    width: 32px;
    height: 24px;
  }
}

/* ========== RESPONSIVE — 480px ========== */

@media (max-width: 480px) {
  .sd-hero {
    padding: 100px 0 40px;
  }

  .sd-hero__title {
    font-size: 30px;
  }

  .sd-hero__breadcrumb {
    font-size: 12px;
  }

  .sd-quick__container {
    grid-template-columns: 1fr;
  }

  .sd-quick__item {
    border-bottom: 1px solid #F3F4F6;
    padding: 20px 0;
  }

  .sd-quick__item:last-child {
    border-bottom: none;
  }

  .sd-included__grid {
    grid-template-columns: 1fr;
  }

  .sd-included__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .sd-included__card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .sd-package {
    padding: 28px 22px 26px;
  }

  .sd-package__price-amount {
    font-size: 30px;
  }

  .sd-hiw__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px;
  }

  .sd-hiw__num {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .sd-hiw__connector {
    width: 28px;
    height: 20px;
  }

  .sd-faq__question {
    font-size: 16px;
    padding: 20px 0;
  }

  .sd-cta__title {
    font-size: 26px;
  }

  .sd-cta__btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 28px;
  }
}

/* ========== RESPONSIVE — 380px ========== */

@media (max-width: 380px) {
  .sd-hero {
    padding: 90px 0 36px;
  }

  .sd-hero__title {
    font-size: 26px;
  }

  .sd-hero__trust-item {
    font-size: 14px;
  }

  .sd-package__name {
    font-size: 18px;
  }

  .sd-quick__icon {
    width: 36px;
    height: 36px;
  }

  .sd-quick__value {
    font-size: 14px;
  }
}
