@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --ds-blue-deep: #02345c;
  --ds-blue-mid: #03416d;
  --ds-blue-brand: #166195;
  --ds-blue-light: #2280c3;
  --ds-sky: #0e9aff;
  --ds-orange: #ff8c00;
  --ds-green: #8bc34a;
  --ds-red-offer: #c62300;
  --ds-text: #353e47;
  --ds-text-muted: #686e78;
  --ds-bg-soft: #f4f4f7;
  --ds-bg-page: #fafafa;
  --ds-radius: 0.5rem;
  --ds-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --ds-header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: var(--ds-text);
  background: var(--ds-bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.ds-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.ds-container {
  width: 100%;
  max-width: 1452px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .ds-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* —— Top offer bar —— */
.ds-offer-bar {
  background: #1a6d5a;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.1rem 0;
}

.ds-offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ds-offer-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ds-microphone {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  background: #fff;
  border-radius: 50%;
}

.ds-microphone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  background: #1a6d5a;
  border-radius: 3px;
}

.ds-microphone::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 3px;
  background: #1a6d5a;
  border-radius: 0 0 2px 2px;
}

.ds-offer-btn {
  background: #fff;
  color: #1a6d5a;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.ds-offer-btn:hover {
  filter: brightness(0.95);
}

.ds-offer-bar a {
  color: #1a6d5a;
  text-decoration: none;
  text-underline-offset: 2px;
  border-radius: 20px;
}

.ds-offer-bar strong {
  background: var(--ds-red-offer);
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  margin-right: 0.35rem;
  font-weight: 700;
}

/* —— Sub bar —— */
.ds-subbar {
  background: var(--ds-blue-deep);
  color: #b3c2ce;
  font-size: 0.8125rem;
  padding: 0.4rem 0;
}

.ds-subbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.ds-subbar a:hover {
  color: #fff;
}

.ds-hotline {
  color: #fff;
  font-weight: 600;
}

.ds-sticky-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* —— Header —— */
.ds-header {
  position: relative;
  background: #fff;
}

.ds-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--ds-header-h);
  position: relative;
}

.ds-logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ds-menu-section {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
}

.ds-header-triggers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .ds-header-inner {
    flex-wrap: nowrap;
  }

  .ds-brand {
    order: 1;
  }

  .ds-nav {
    order: 2;
  }

  .ds-header-triggers {
    order: 3;
    margin-left: 0;
  }
}

.ds-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.ds-brand img {
  width: 52px;
  height: auto;
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .ds-brand img {
    width: 60px;
  }
}

.ds-brand-text span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ds-blue-brand);
}

.ds-brand-text small {
  font-size: 0.7rem;
  color: var(--ds-text-muted);
  letter-spacing: 0.04em;
}

.ds-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--ds-bg-soft);
  border-radius: var(--ds-radius);
  cursor: pointer;
  padding: 0 10px;
}

.ds-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ds-blue-deep);
  border-radius: 1px;
}

@media (min-width: 1024px) {
  .ds-nav-toggle {
    display: none;
  }
}

/* —— Nav —— */
.ds-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 132px;
  background: #fff;
  padding: 1rem;
  overflow-y: auto;
  z-index: 101;
}

.ds-nav.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .ds-nav {
    display: flex !important;
    position: static;
    inset: auto;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    background: transparent;
  }
}

.ds-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .ds-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
  }
}

.ds-nav-item {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  margin: 0 0.25rem;
}

.ds-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ds-text);
  text-decoration: none;
  position: relative;
}

.ds-nav-link:hover,
.ds-nav-link:focus-visible {
  color: var(--ds-blue-brand);
  outline: none;
}

.ds-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--ds-blue-brand);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.ds-nav-link:hover::after {
  transform: scaleX(1);
}

@media (min-width: 1024px) {
  .ds-nav-link {
    padding: 0.45rem 0.55rem;
    font-size: 0.78rem;
  }
}

.ds-chevron {
  display: inline-block;
  vertical-align: middle;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  margin-left: 0.25rem;
  opacity: 0.6;
}

@media (min-width: 1024px) {

  .ds-nav-item:hover .ds-dropdown,
  .ds-nav-item:focus-within .ds-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .ds-nav-item:hover .ds-dropdown.ds-mega-menu,
  .ds-nav-item:focus-within .ds-dropdown.ds-mega-menu {
    transform: translate(-50%, 0);
  }

  .ds-nav-item:hover>.ds-nav-link .ds-chevron,
  .ds-nav-item:focus-within>.ds-nav-link .ds-chevron {
    transform: rotate(-135deg);
    margin-top: 2px;
  }
}

.ds-dropdown {
  display: none;
  padding: 0.25rem 0 0.5rem 0.75rem;
  border-left: 3px solid var(--ds-sky);
  margin-left: 0.5rem;
}

.ds-dropdown.ds-mega-menu {
  border-left: none;
  margin-left: 0;
  padding: 0.35rem 0 0.65rem 0;
}

.ds-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.25rem;
}

.ds-mega-link {
  display: block;
  padding: 0.45rem 0.35rem;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.ds-mega-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.ds-mega-desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.45;
}

.ds-mega-link:hover .ds-mega-title,
.ds-mega-link:focus-visible .ds-mega-title {
  color: var(--ds-blue-brand);
}

.ds-mega-link:hover .ds-mega-desc,
.ds-mega-link:focus-visible .ds-mega-desc {
  color: #4b5563;
}

@media (min-width: 1024px) {
  .ds-dropdown {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--ds-radius);
    box-shadow: var(--ds-shadow);
    padding: 0.75rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
  }

  .ds-dropdown.ds-mega-menu {
    left: 50%;
    right: auto;
    min-width: min(560px, calc(100vw - 2rem));
    max-width: min(720px, calc(100vw - 2rem));
    padding: 1.25rem 1.5rem;
    transform: translate(-50%, 8px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  }

  .ds-mega-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.75rem;
    row-gap: 1rem;
  }

  .ds-mega-link {
    padding: 0.55rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .ds-mega-link:hover,
  .ds-mega-link:focus-visible {
    background: #f8fafc;
    outline: none;
  }

  .ds-mega-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .ds-mega-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .ds-mega-title {
    font-size: 1rem;
    font-weight: 700;
  }

  .ds-mega-desc {
    font-size: 0.8125rem;
  }
}

@media (max-width: 1023px) {
  .ds-nav-item.is-expanded>.ds-dropdown {
    display: block;
  }
}

.ds-btn-login {
  flex-shrink: 0;
  background: var(--ds-orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
  border-radius: var(--ds-radius);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-align: center;
}

.ds-btn-login:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.35);
}

@media (max-width: 1023px) {
  .ds-header-login-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Mobile accordion for dropdown parent */
@media (max-width: 1023px) {
  .ds-nav-item>.ds-nav-link {
    cursor: pointer;
  }
}

/* —— Hero —— */
.ds-hero {
  position: relative;
  background: url('../assets/background.jpg') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.ds-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(2, 52, 92, 0.92), rgba(22, 97, 149, 0.75));
}

.ds-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3rem;
}

@media (min-width: 768px) {
  .ds-hero-inner {
    padding: 3.5rem 0 4rem;
  }
}

.ds-hero-viewport {
  overflow: hidden;
  border-radius: var(--ds-radius);
}

.ds-hero-track {
  display: flex;
  transition: transform 0.5s ease;
}

.ds-hero-slide {
  flex: 0 0 100%;
  padding: 0 0.25rem;
}

.ds-hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  max-width: 640px;
}

@media (min-width: 768px) {
  .ds-hero-card {
    padding: 2.25rem 2rem;
  }
}

.ds-hero-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  color: #fff;
}

.ds-hero-card p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1.25rem;
}

.ds-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ds-orange);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: var(--ds-radius);
}

.ds-hero-cta:hover {
  filter: brightness(1.08);
}

.ds-hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.ds-hero-prev,
.ds-hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.ds-hero-prev:hover,
.ds-hero-next:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ds-hero-dots {
  display: flex;
  gap: 0.35rem;
}

.ds-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

.ds-hero-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Full-width hero (home) — datacenter background, edge arrows */
.ds-hero.ds-hero--full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #030d18;
  min-height: clamp(360px, 52vh, 580px);
}

.ds-hero.ds-hero--full::before {
  background-image: var(--ds-hero-bg-image, url('../assets/hero-datacenter.png'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.ds-hero.ds-hero--full::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(2, 12, 28, 0.78) 0%,
      rgba(2, 20, 42, 0.72) 45%,
      rgba(2, 24, 48, 0.68) 100%);
  pointer-events: none;
}

.ds-hero-inner.ds-hero-inner--full {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 1.25rem;
}

@media (min-width: 768px) {
  .ds-hero-inner.ds-hero-inner--full {
    padding: 0 0 1.5rem;
  }
}

.ds-hero-viewport--full {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
}

.ds-hero-viewport--full .ds-hero-window {
  overflow: hidden;
  width: 100%;
}

.ds-hero-viewport--full .ds-hero-slide {
  padding: 0;
}

.ds-hero-viewport--full .ds-hero-prev,
.ds-hero-viewport--full .ds-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ds-hero-viewport--full .ds-hero-prev {
  left: 0.25rem;
}

.ds-hero-viewport--full .ds-hero-next {
  right: 0.25rem;
}

@media (min-width: 768px) {
  .ds-hero-viewport--full .ds-hero-prev {
    left: 0.75rem;
  }

  .ds-hero-viewport--full .ds-hero-next {
    right: 0.75rem;
  }

  .ds-hero-viewport--full .ds-hero-prev,
  .ds-hero-viewport--full .ds-hero-next {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
}

.ds-hero-viewport--full .ds-hero-prev:hover,
.ds-hero-viewport--full .ds-hero-next:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ds-hero-slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 48vh, 520px);
  padding: 2.5rem 3rem;
}

@media (max-width: 767px) {
  .ds-hero-slide-inner {
    padding: 2.25rem 2.75rem;
    min-height: clamp(300px, 44vh, 440px);
  }
}

.ds-hero-card--center {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
}

.ds-hero-card--center h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  font-size: clamp(1.35rem, 4.2vw, 2.65rem);
  margin-bottom: 1rem;
  color: #fff;
}

.ds-hero-card--center .ds-hero-em {
  color: #ffc94d;
  font-weight: 800;
}

.ds-hero-card--center p {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.ds-hero-card--center .ds-hero-cta {
  margin-left: auto;
  margin-right: auto;
}

.ds-hero-controls--full {
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0 1rem;
}

/* —— Feature strip —— */
.ds-features-strip {
  background: #fff;
  color: var(--ds-text);
  padding: 2rem 0;
  margin: -2rem 1.5rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.ds-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ds-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-feature-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ds-feature-box img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ds-feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--ds-text);
  font-weight: 700;
}

.ds-feature-box p {
  font-size: 0.8125rem;
  color: var(--ds-text-muted);
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Home: service catalog (8 cards) —— */
.ds-home-services {
  background: #fff;
  padding: 2.5rem 0 2.75rem;
}

@media (min-width: 768px) {
  .ds-home-services {
    padding: 3rem 0 3.25rem;
  }
}

.ds-hsvc-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ds-hsvc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .ds-hsvc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-hsvc-card {
  background: #fff;
  border: 1px solid #e8eaef;
  border-radius: 0.65rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  padding: 1.35rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ds-hsvc-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  transform: translateY(-4px);
}

.ds-hsvc-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.ds-hsvc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ds-hsvc-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: #111827;
  margin: 0 0 0.85rem;
}

.ds-hsvc-domain-form {
  margin-bottom: 0.65rem;
}

.ds-hsvc-domain-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.35rem;
  text-transform: capitalize;
}

.ds-hsvc-domain-row {
  display: flex;
  gap: 0.4rem;
  align-items: stretch;
}

.ds-hsvc-domain-row input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid #d1d5db;
  border-radius: 0.35rem;
  font-size: 0.8125rem;
}

.ds-hsvc-go {
  flex-shrink: 0;
  padding: 0 0.85rem;
  background: var(--ds-sky);
  color: #fff;
  border: none;
  border-radius: 0.35rem;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
}

.ds-hsvc-go:hover {
  filter: brightness(1.06);
}

.ds-hsvc-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  flex: 1;
}

.ds-hsvc-list li {
  font-size: 0.875rem;
  margin-bottom: 0.32rem;
  padding-left: 0.65rem;
  position: relative;
  line-height: 1.45;
}

.ds-hsvc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.22em 0 0.22em 0.32em;
  border-color: transparent transparent transparent var(--svc-bullet, #166195);
}

.ds-hsvc-list--domain {
  --svc-bullet: #166195;
}

.ds-hsvc-list--domain a {
  color: #166195;
}

.ds-hsvc-list--hosting {
  --svc-bullet: #7b1fa2;
}

.ds-hsvc-list--hosting a {
  color: #6a1b9a;
}

.ds-hsvc-list--vps {
  --svc-bullet: #1565c0;
}

.ds-hsvc-list--vps a {
  color: #1565c0;
}

.ds-hsvc-list--dedicated {
  --svc-bullet: #c62828;
}

.ds-hsvc-list--dedicated a {
  color: #c62828;
}

.ds-hsvc-list--email {
  --svc-bullet: #0277bd;
}

.ds-hsvc-list--email a {
  color: #0277bd;
}

.ds-hsvc-list--web {
  --svc-bullet: #e65100;
}

.ds-hsvc-list--web a {
  color: #e65100;
}

.ds-hsvc-list--sms {
  --svc-bullet: #2e7d32;
}

.ds-hsvc-list--sms a {
  color: #2e7d32;
}

.ds-hsvc-list--software {
  --svc-bullet: #00695c;
}

.ds-hsvc-list--software a {
  color: #00695c;
}

.ds-hsvc-list a {
  text-decoration: none;
  font-weight: 500;
}

.ds-hsvc-list a:hover {
  text-decoration: underline;
}

.ds-hsvc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: auto;
  --svc-accent: #02345c;
}

.ds-hsvc-actions--navy {
  --svc-accent: #02345c;
}

.ds-hsvc-actions--purple {
  --svc-accent: #6a1b9a;
}

.ds-hsvc-actions--red {
  --svc-accent: #c62828;
}

.ds-hsvc-actions--sky {
  --svc-accent: #0277bd;
}

.ds-hsvc-actions--green {
  --svc-accent: #2e7d32;
}

.ds-hsvc-actions--teal {
  --svc-accent: #00695c;
}

.ds-hsvc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 0.35rem;
  text-decoration: none;
  line-height: 1.25;
  border: 2px solid transparent;
  transition: filter 0.15s ease, background 0.15s ease, color 0.15s ease;
  margin: 2px 0px 5px 0px;
}

@media (min-width: 480px) {
  .ds-hsvc-btn {
    font-size: 0.62rem;
    padding: 0.58rem 1rem;
  }
}

.ds-hsvc-btn--solid {
  background: var(--svc-accent);
  color: #fff;
  border-color: var(--svc-accent);
}

.ds-hsvc-btn--solid:hover {
  filter: brightness(1.08);
  color: #fff;
}

.ds-hsvc-btn--outline {
  background: #fff;
  color: var(--svc-accent);
  border-color: var(--svc-accent);
}

.ds-hsvc-btn--outline:hover {
  background: var(--svc-accent);
  color: #fff;
}

/* —— Domain search —— */
.ds-domain-section {
  background: linear-gradient(180deg, #e9f2f8, #f5f7fa);
  padding: 2.5rem 0;
  border-bottom: 4px solid var(--ds-sky);
}

.ds-domain-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--ds-shadow);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ds-domain-card h2 {
  font-size: 1.75rem;
  color: var(--ds-blue-deep);
  margin-bottom: 0.5rem;
}

.ds-domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.ds-btn-outline {
  border: 2px solid var(--ds-blue-brand);
  color: var(--ds-blue-brand);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--ds-radius);
  background: #fff;
}

.ds-btn-outline:hover {
  background: var(--ds-blue-brand);
  color: #fff;
}

.ds-domain-carousel {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--ds-radius);
}

.ds-domain-track {
  display: flex;
  transition: transform 0.6s ease;
}

.ds-domain-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .ds-domain-slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-domain-slide {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ds-tld-card {
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: var(--ds-radius);
  padding: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.ds-tld-card .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.75rem;
}

.ds-tld-card .price-new {
  color: var(--ds-red-offer);
  font-weight: 800;
  font-size: 0.85rem;
}

/* —— Section titles —— */
.ds-section {
  padding: 3rem 0;
}

.ds-section-alt {
  background: var(--ds-bg-soft);
}

.ds-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ds-blue-deep);
  margin-bottom: 0.5rem;
}

.ds-section-sub {
  text-align: center;
  color: var(--ds-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* —— About block —— */
.ds-about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ds-about {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-about img {
  border-radius: 1rem;
  box-shadow: var(--ds-shadow);
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* —— Pricing cards —— */
.ds-pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ds-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-price-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: var(--ds-shadow);
  display: flex;
  flex-direction: column;
}

.ds-price-head {
  /* background: linear-gradient(135deg, var(--ds-blue-brand), var(--ds-blue-light)); */
  /* color: #fff; */
  padding: 1.25rem;
  text-align: center;
}

.ds-price-head h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.ds-price-head .tag {
  font-size: 0.75rem;
  opacity: 0.9;
}

.ds-price-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
}

.ds-price-body ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ds-price-body ul li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url('../assets/check-mark.png') center / contain no-repeat;
  flex-shrink: 0;
}

.ds-price-foot {
  padding: 1rem;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ds-price-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--ds-blue-brand);
  color: #fff;
  text-decoration: none;
  border-radius: 0.35rem;
  font-weight: 600;
  transition: filter 0.2s ease;
}

.ds-price-btn:hover {
  filter: brightness(1.1);
}

.ds-price-foot .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--ds-blue-deep);
}

/* —— Services grid —— */
.ds-services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ds-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-service-tile {
  background: #fff;
  border-radius: var(--ds-radius);
  padding: 1.25rem;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ds-service-tile:hover {
  box-shadow: var(--ds-shadow);
  transform: translateY(-2px);
}

.ds-service-tile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.ds-service-tile h4 {
  font-size: 1.05rem;
  color: var(--ds-blue-brand);
  margin-bottom: 0.35rem;
}

.ds-service-tile p {
  font-size: 0.78rem;
  color: var(--ds-text-muted);
  margin: 0;
}

/* —— Team —— */
.ds-team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .ds-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-team-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ds-team-card {
  background: #fff;
  border-radius: var(--ds-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid #eaeaea;
}

.ds-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, #166195, #0e9aff);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.ds-team-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.ds-team-card span {
  font-size: 0.72rem;
  color: var(--ds-text-muted);
}

/* —— Testimonials —— */
.ds-quote-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ds-quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ds-quote {
  background: #fff;
  border-radius: var(--ds-radius);
  padding: 1.25rem;
  border-left: 4px solid var(--ds-sky);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
}

.ds-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ds-blue-brand);
}

/* —— FAQ —— */
.ds-faq {
  max-width: 900px;
  margin: 0 auto;
}

.ds-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ds-faq-tabs button {
  border: 2px solid var(--ds-blue-brand);
  background: #fff;
  color: var(--ds-blue-brand);
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8125rem;
}

.ds-faq-tabs button.is-active {
  background: var(--ds-blue-brand);
  color: #fff;
}

.ds-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--ds-radius);
  margin-bottom: 0.5rem;
  background: #fff;
  overflow: hidden;
}

.ds-accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.ds-accordion-trigger::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--ds-blue-brand);
}

.ds-accordion-item.is-open .ds-accordion-trigger::after {
  content: '−';
}

.ds-accordion-panel {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--ds-text-muted);
}

.ds-accordion-item.is-open .ds-accordion-panel {
  display: block;
}

/* —— Videos —— */
.ds-video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ds-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-video-card {
  background: #1e293b;
  color: #fff;
  border-radius: var(--ds-radius);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* —— CTA Facebook —— */
.ds-fb-cta {
  background: linear-gradient(90deg, #1877f2, #0e5fcc);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  margin: 2rem 0;
}

.ds-fb-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* —— Inner pages —— */
.ds-page-hero {
  background: linear-gradient(135deg, var(--ds-blue-deep), var(--ds-blue-brand));
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.ds-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.ds-page-body {
  padding: 2.5rem 0 4rem;
}

.ds-prose {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.ds-prose h2 {
  font-size: 1.75rem;
  color: var(--ds-blue-deep);
  margin: 2rem 0 0.75rem;
}

.ds-prose h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.5rem;
}

.ds-prose p {
  margin-bottom: 1rem;
}

.ds-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.ds-prose ul li {
  margin-bottom: 0.35rem;
}

.ds-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--ds-radius);
  border: 1px solid #e5e7eb;
}

.ds-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 520px;
}

.ds-table-wrap th,
.ds-table-wrap td {
  padding: 0.65rem 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.ds-table-wrap th {
  background: #ebf3ff;
  font-weight: 700;
}

.ds-cards-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ds-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-spec-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--ds-radius);
  padding: 1.25rem;
  box-shadow: var(--ds-shadow);
}

.ds-spec-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--ds-orange);
  margin-top: 0.75rem;
}

.ds-contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .ds-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #eaeaea;
  box-shadow: var(--ds-shadow);
}

.ds-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.ds-form input,
.ds-form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #ccc;
  border-radius: var(--ds-radius);
  font: inherit;
  margin-bottom: 0.75rem;
}

.ds-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ds-btn-primary {
  background: var(--ds-blue-brand);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: var(--ds-radius);
  cursor: pointer;
}

.ds-btn-primary:hover {
  background: var(--ds-blue-deep);
}

/* —— Footer —— */
.ds-footer {
  background: #151515;
  color: #d8d8d9;
  padding-top: 3rem;
  margin-top: 2rem;
}

.ds-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ds-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.ds-footer a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  color: #b3c2ce;
}

.ds-footer a:hover {
  color: var(--ds-sky);
}

.ds-footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
}

.ds-footer-pay img {
  max-width: 280px;
  margin: 1rem auto 0;
}

/* —— Utilities —— */
.ds-text-center {
  text-align: center;
}

.ds-mt {
  margin-top: 1rem;
}

.ds-two-col-features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ds-two-col-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-adv-section {
  background-color: #dbe7df;
  padding: 3.5rem 0 4rem;
}

.ds-adv-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 2rem;
}

.ds-adv-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.25rem 2.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ds-adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 3rem;
}

@media (min-width: 640px) {
  .ds-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-adv-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-adv-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.925rem;
  color: #000000;
}

@media (min-width: 1024px) {
  .ds-adv-item {
    white-space: nowrap;
  }

  .ds-adv-item:nth-child(n+21) {
    border-bottom: none;
  }
}

.ds-adv-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #b0b8c1;
}

.ds-adv-item strong {
  font-weight: 700;
  color: #000000;
}

/* —— FAQ & Tutorials Section (Matching Screenshot) —— */
.ds-faq-tut-section {
  background-color: #dbe7df;
  padding: 2.5rem 0 3.5rem;
}

.ds-faq-tut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .ds-faq-tut-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Accordion (Left Column) */
.ds-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ds-faq-item {
  border-radius: 4px;
  overflow: hidden;
}

.ds-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #f3f4f6;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.ds-faq-trigger:hover {
  background: #eef2ff;
  color: #4338ca;
  text-decoration: none;
}

.ds-faq-trigger span {
  text-decoration: none;
}

.ds-faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #4f46e5;
  transition: transform 0.2s ease;
}

.ds-faq-item.is-open .ds-faq-icon {
  transform: rotate(180deg);
}

.ds-faq-panel {
  display: none;
  background: #ffffff;
  padding: 1.25rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.65;
  border-top: 1px solid #e5e7eb;
}

.ds-faq-item.is-open .ds-faq-panel {
  display: block;
}

.ds-faq-panel ul {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  list-style-type: disc;
}

.ds-faq-panel li {
  margin-bottom: 0.4rem;
}

/* Tutorials Card (Right Column) */
.ds-tut-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ds-tut-tab-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #e5e7eb;
  border-bottom: 1px solid #d1d5db;
}

.ds-tut-tab-btn {
  padding: 0.8rem 0.5rem;
  background: #e5e7eb;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.ds-tut-tab-btn.is-active {
  background: #ffffff;
  color: #111827;
  font-weight: 700;
}

.ds-tut-tab-btn:hover:not(.is-active) {
  background: #dadde1;
}

.ds-tut-body {
  padding: 1rem;
  max-height: 410px;
  overflow-y: auto;
}

.ds-tut-body::-webkit-scrollbar {
  width: 6px;
}

.ds-tut-body::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.ds-tut-body::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}

.ds-tut-tab-content {
  display: none;
}

.ds-tut-tab-content.is-active {
  display: block;
}

.ds-tut-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #eef6fc;
  padding: 0.65rem 0.9rem;
  border-radius: 5px;
  margin-bottom: 0.55rem;
}

.ds-tut-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.ds-tut-cam-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #0ea5e9;
}

.ds-tut-title-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: #1f2937;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-tut-video-btn {
  background: #0ea5e9;
  color: #ffffff !important;
  padding: 0.3rem 0.95rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.ds-tut-video-btn:hover {
  background: #0284c7;
}

/* —— Services Section (Matching Screenshot) —— */
.ds-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ds-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ds-service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.ds-service-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: #f8fafc;
}

.ds-service-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ds-service-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ds-service-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}

.ds-service-body {
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ds-service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  text-align: center;
}

.ds-service-desc {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.ds-service-desc a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.ds-service-desc a:hover {
  color: #1d4ed8;
}

.ds-four-col-features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ds-four-col-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-feature-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.ds-feature-item:last-child {
  border-bottom: none;
}

.ds-feature-item::before {
  content: '✓';
  color: var(--ds-blue-brand);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.ds-feature-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ds-blue-brand);
  line-height: 1;
  flex-shrink: 0;
}

.ds-feature-text {
  font-size: 0.875rem;
  color: var(--ds-text);
  line-height: 1.3;
}

.ds-check-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
}

.ds-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  background: url('../assets/check-mark.png') center / contain no-repeat;
  flex-shrink: 0;
}

.ds-tabs {
  margin-top: 2rem;
}

.ds-tab-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.ds-tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ds-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ds-tab-btn--active {
  color: var(--ds-blue-brand);
  border-bottom-color: var(--ds-blue-brand);
}

.ds-tab-btn:hover:not(.ds-tab-btn--active) {
  color: var(--ds-text);
}

.ds-tab-content {
  display: none;
}

.ds-tab-content--active {
  display: block;
}

.os-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.os-list span {
  background: #ebf3ff;
  color: var(--ds-blue-deep);
  font-size: 0.72rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.green-bg {
  background: rgb(224 247 244);
  color: rgb(0 89 76) !important;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.yellow-bg {
  background: rgb(255 243 224);
  color: rgb(184 93 0) !important;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.green-font {
  color: rgb(0 89 76);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.yellow-font {
  color: rgb(184 93 0);
  font-weight: 600;
}

/* —— Team Members (RTL) & Testimonials (LTR) Sliders —— */
.ds-slider-section {
  padding: 3rem 0 4rem;
  background: #ffffff;
  overflow: hidden;
}

.ds-slider-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0ea5e9;
  text-align: center;
  margin-bottom: 2rem;
}

.ds-marquee-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}

.ds-marquee-with-controls {
  display: flex;
  align-items: center;
}

.ds-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ds-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0ea5e9;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  user-select: none;
}

.ds-slider-arrow:hover {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
  transform: translateY(-50%) scale(1.08);
}

.ds-slider-prev {
  left: 0px;
}

.ds-slider-next {
  right: 0px;
}

.ds-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

/* Team slider: Right to Left (RTL) */
.ds-marquee-rtl {
  animation: ds-scroll-left 32s linear infinite;
}

/* Testimonial slider: Left to Right (LTR) */
.ds-marquee-ltr {
  animation: ds-scroll-right 38s linear infinite;
}

.ds-marquee-wrapper:hover .ds-marquee-track {
  animation-play-state: paused;
}

@keyframes ds-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ds-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Team Member Slide Card */
.ds-team-card-slide {
  width: 220px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-bottom: 3px solid #38bdf8;
  border-radius: 4px;
  padding: 1.35rem 0.9rem 1.1rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ds-team-card-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ds-team-avatar-svg {
  margin: 0 auto 0.75rem;
  display: block;
}

.ds-team-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem;
}

.ds-team-role {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

/* Testimonial Slide Card */
.ds-testi-card-slide {
  width: 380px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 4px;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.ds-testi-text {
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 0.85rem;
}

.ds-testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.ds-testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.ds-testi-client {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
}

/* —— Footer Styling (Matching dinisoftbd.com) —— */
.ds-footer {
  position: relative;
  background-color: #0b1329;
  background-image: linear-gradient(
      rgba(11, 19, 41, 0.88),
      rgba(11, 19, 41, 0.88)
    ),
    url('/assets/global-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  font-size: 0.875rem;
}

/* Facebook Strip */
.ds-footer-fb-strip {
  background-color: #f1f5f9;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.ds-footer-fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ds-footer-fb-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.ds-footer-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1877f2;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none !important;
  transition: background-color 0.2s;
}

.ds-footer-fb-btn:hover {
  background-color: #166fe5;
}

/* Need Help Strip */
.ds-footer-help-strip {
  background-color: rgba(22, 32, 56, 0.75);
  backdrop-filter: blur(4px);
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ds-footer-help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ds-footer-help-content {
  max-width: 650px;
}

.ds-footer-help-content h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ds-footer-help-content p {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  opacity: 0.9;
}

.ds-footer-help-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ds-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.825rem;
  text-decoration: none !important;
  transition: all 0.2s;
}

.ds-help-call {
  background-color: #0ea5e9;
  color: #ffffff !important;
}

.ds-help-call:hover {
  background-color: #0284c7;
}

.ds-help-mail {
  background-color: #10b981;
  color: #ffffff !important;
}

.ds-help-mail:hover {
  background-color: #059669;
}

.ds-help-ticket {
  background-color: #6366f1;
  color: #ffffff !important;
}

.ds-help-ticket:hover {
  background-color: #4f46e5;
}

/* Main Footer Grid */
.ds-footer-main {
  padding-top: 3rem;
}

.ds-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .ds-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.ds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-footer-links li {
  margin-bottom: 0.6rem;
}

.ds-footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.ds-footer-links a:hover {
  color: #38bdf8;
}

.ds-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.ds-footer-contact svg {
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 0;
}

.ds-footer-contact a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
  font-size: 0.85rem;
}

.ds-footer-contact a:hover {
  color: #38bdf8;
}

/* Footer Payment & Copyright */
.ds-footer-pay {
  padding: 1.5rem 0;
  border-top: 1px solid #1e2d4d;
  text-align: center;
}

.ds-footer-pay img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

@media (max-width: 640px) {
  .ds-footer-pay img {
    max-height: 60px;
  }
}

.ds-footer-bottom {
  background-color: #060b17;
  padding: 1rem 0;
  color: #ffffff;
  font-size: 0.8125rem;
  text-align: center;
  border-top: 1px solid #141f38;
}