/* ==========================================================================
   Digiway Agency — pure HTML/CSS/JS clone
   Design tokens ported from the Next.js foundation (src/app/globals.css)
   ========================================================================== */

:root {
  --dw-dark: #221e25;
  --dw-text: #494e53;
  --dw-green: #2f6fed;
  --dw-green-rgb: 47, 111, 237;
  --dw-green-alt: #2559c9;
  --dw-blue: #3e7cc5;
  --dw-orange: #eca564;
  --dw-bg-mint: #eef3fd;
  --dw-bg-gray: #fafafa;
  --dw-border: #e7e7e7;
  --dw-white: #ffffff;

  --font-heading: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body-vn: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container-max: 1620px;
  --header-h-mobile: 70px;
  --header-h-desktop: 90px;
  --logo-h-mobile: calc(var(--header-h-mobile) / 2);
  --logo-h-desktop: var(--header-h-desktop);
}

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

html {
  height: 100%;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dw-text);
  background: var(--dw-white);
}

main {
  flex: 1 0 auto;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dw-dark);
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 16px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn--green {
  background: var(--dw-green);
  color: var(--dw-white);
}

.btn--green:hover {
  background: var(--dw-green-alt);
}

.btn--white {
  background: var(--dw-white);
  color: var(--dw-dark);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn--outline-green {
  background: transparent;
  color: var(--dw-green);
  border-color: var(--dw-green);
}

.btn--outline-green:hover {
  background: var(--dw-green);
  color: var(--dw-white);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--dw-border);
  background: var(--dw-white);
  overflow-anchor: none;
}

.header-topbar {
  display: none;
  min-height: 48px;
  max-height: 120px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  background: #eeeeee;
  padding-inline: 16px;
  font-size: 14px;
  transition: max-height 0.3s ease, min-height 0.3s ease, opacity 0.3s ease;
}

.header-topbar__inner {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
}

.header-topbar__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
}

.header-topbar__rating img {
  height: 19px;
  width: auto;
}

.header-topbar__promo {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.header-topbar__promo .badge {
  border-radius: 2px;
  background: #000;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.header-topbar__promo img {
  width: 6px;
  height: 6px;
}

.site-header.is-stuck .header-topbar {
  opacity: 0;
  min-height: 0;
  max-height: 0;
  pointer-events: none;
}

.header-main {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
  height: var(--header-h-mobile);
}

.header-logo img {
  height: var(--logo-h-mobile);
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 50px;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  white-space: nowrap;
}

.main-nav__link svg {
  width: 12px;
  height: 8px;
}

.main-nav__dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  min-width: 260px;
  border-radius: 6px;
  border: 1px solid var(--dw-border);
  background: var(--dw-white);
  padding-block: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.main-nav__item:hover .main-nav__dropdown {
  visibility: visible;
  opacity: 1;
}

.main-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #212529;
}

.main-nav__dropdown a:hover {
  color: var(--dw-green);
}

.header-cta {
  display: none;
}

.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.header-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #212529;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: var(--dw-white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__close {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-bottom: 24px;
  background: none;
  border: none;
  padding: 0;
}

.mobile-drawer__close svg {
  width: 24px;
  height: 24px;
  color: #212529;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav__link {
  font-size: 16px;
  color: #212529;
}

.mobile-nav__children {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.mobile-nav__children a {
  font-size: 14px;
  color: var(--dw-text);
}

@media (min-width: 768px) {
  .header-topbar {
    display: flex;
  }
  .header-main {
    height: var(--header-h-desktop);
  }
  .header-logo img {
    height: var(--logo-h-desktop);
  }
  .main-nav {
    display: flex;
  }
  .header-cta {
    display: block;
  }
  .header-menu-btn {
    display: none;
  }
  .mobile-drawer {
    display: none;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  width: 100%;
}

.site-footer__top {
  background: var(--dw-white);
  padding-block: 48px;
}

.site-footer__grid {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--dw-border);
  padding-inline: 16px;
  padding-bottom: 22px;
}

.footer-brand img {
  width: 100%;
  max-width: 146px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social a {
  color: #525152;
}

.footer-social a:hover {
  color: var(--dw-green);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 64px;
  max-width: 549px;
  margin-inline: auto;
}

.footer-nav a {
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--dw-green);
}

.footer-newsletter p {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.footer-newsletter form {
  position: relative;
  display: flex;
  width: 100%;
}

.footer-newsletter input {
  height: 48px;
  width: 100%;
  border-radius: 8px;
  border: none;
  background: var(--dw-bg-gray);
  padding-left: 14px;
  padding-right: 56px;
  font-size: 16px;
  color: var(--dw-text);
  outline: none;
}

.footer-newsletter button {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--dw-green);
  color: #fff;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--dw-green-alt);
}

.footer-newsletter button svg {
  width: 24px;
  height: 24px;
}

.site-footer__bottom {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-inline: 16px;
  padding-top: 22px;
}

.footer-copyright {
  order: 2;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
}

.footer-legal {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-legal li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-right: 10px;
}

.footer-legal li::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #212529;
  transform: translateY(-50%);
}

.footer-legal li:last-child::after {
  display: none;
}

.footer-legal a {
  font-size: 16px;
  line-height: 24px;
  color: #212529;
}

.footer-legal a:hover {
  color: var(--dw-green);
}

.footer-badge {
  order: 3;
}

.footer-badge img {
  height: 40px;
  width: auto;
}

.site-footer__base {
  background: var(--dw-dark);
  padding-block: 16px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .footer-brand {
    grid-column: span 3;
  }
  .footer-nav-wrap {
    grid-column: span 6;
  }
  .footer-newsletter {
    grid-column: span 3;
  }
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-copyright {
    order: 1;
  }
  .footer-legal {
    order: 2;
  }
}

/* ==========================================================================
   Floating widgets
   ========================================================================== */

.zalo-widget {
  position: fixed;
  bottom: 52px;
  right: 52px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid var(--dw-border);
  background: var(--dw-white);
  color: #212529;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.back-to-top:hover {
  background: var(--dw-green);
  color: #fff;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 768px) {
  .back-to-top {
    display: flex;
  }
}

@media (max-width: 639px) {
  .zalo-widget {
    bottom: 24px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ==========================================================================
   Blog section
   ========================================================================== */

.blog-section {
  margin-inline: auto;
  max-width: var(--container-max);
  padding: 64px 16px;
}

.blog-section__title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
}

.blog-grid {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dw-bg-mint);
}

.blog-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.blog-card__body h3 {
  font-size: 18px;
  font-weight: 600;
}

.blog-card__body p {
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
}

.blog-section__cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .blog-section__title {
    font-size: 80px;
    line-height: 100px;
  }
}

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

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

/* ==========================================================================
   Blog post (single article) page
   ========================================================================== */

.post-hero.container {
  max-width: 760px;
  padding-block: 40px 0;
}

.post-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--dw-text);
  margin-bottom: 20px;
}

.post-hero__crumbs a:hover {
  color: var(--dw-green);
}

.post-hero__cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dw-green);
  background: var(--dw-bg-mint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.post-hero h1 {
  font-size: 32px;
  line-height: 1.25;
  max-width: 900px;
  margin-bottom: 16px;
}

.post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dw-text);
  margin-bottom: 32px;
}

.post-hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dw-border);
}

.post-hero__cover {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.post-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .post-hero h1 {
    font-size: 44px;
  }
}

.post-content {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 40px 24px;
}

.post-content > * + * {
  margin-top: 20px;
}

.post-content .lede {
  font-size: 19px;
  line-height: 30px;
  color: var(--dw-dark);
  font-weight: 500;
}

.post-content h2 {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 40px;
}

.post-content p {
  font-size: 16px;
  line-height: 28px;
}

.post-content strong {
  color: var(--dw-dark);
}

.post-content ul,
.post-content ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-content ul li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
}

.post-content ul li::before {
  content: "\2713";
  color: var(--dw-green);
  font-weight: 700;
  flex-shrink: 0;
}

.post-content ol {
  counter-reset: post-ol;
}

.post-content ol li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 26px;
  counter-increment: post-ol;
}

.post-content ol li::before {
  content: counter(post-ol);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dw-green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-content blockquote {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--dw-green);
  background: var(--dw-bg-mint);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  color: var(--dw-dark);
}

.post-callout {
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--dw-bg-gray);
  border: 1px solid var(--dw-border);
}

.post-callout h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.post-callout p {
  font-size: 15px;
  line-height: 24px;
}

.post-keyfacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post-keyfacts__item {
  padding: 20px;
  border-radius: 12px;
  background: var(--dw-bg-mint);
}

.post-keyfacts__item b {
  display: block;
  font-size: 20px;
  color: var(--dw-green);
  margin-bottom: 4px;
}

.post-keyfacts__item span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dw-text);
}

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

.post-cta {
  padding: 32px;
  border-radius: 16px;
  background: var(--dw-dark);
  color: #fff;
  text-align: center;
}

.post-cta h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.post-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.post-cta .btn {
  justify-content: center;
}

.related-posts {
  padding-block: 24px 64px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

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

/* ==========================================================================
   Contact CTA section
   ========================================================================== */

.contact-cta {
  position: relative;
  margin: 64px auto;
  max-width: 1430px;
  overflow: hidden;
  border-radius: 24px;
  padding-inline: 16px;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: 24px;
  background: var(--dw-dark);
}

.contact-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.contact-cta__inner {
  margin-inline: auto;
  max-width: 850px;
  padding-block: 64px;
  text-align: center;
}

.contact-cta__inner h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.contact-cta__inner p {
  margin-inline: auto;
  margin-bottom: 32px;
  max-width: 600px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta__actions a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(var(--dw-green-rgb), 0.5);
  background: rgba(var(--dw-green-rgb), 0.05);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-cta__actions a:hover {
  border-color: var(--dw-green);
  background: var(--dw-green);
}

.contact-cta__actions img {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .contact-cta {
    margin-block: 150px;
  }
  .contact-cta__inner h2 {
    font-size: 64px;
    line-height: 74px;
  }
}

@media (min-width: 640px) {
  .contact-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ==========================================================================
   Shared section primitives (used across all pages)
   ========================================================================== */

.section-dark {
  background: #554a65;
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-mint {
  background: var(--dw-bg-mint);
}

.section-pad {
  padding-block: 64px;
}

@media (min-width: 768px) {
  .section-pad {
    padding-block: 96px;
  }
}

.eyebrow-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .eyebrow-heading {
    font-size: 48px;
  }
}

/* Page hero (title + intro used on every page) */
.page-hero {
  padding-block: 48px 40px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 800px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center h1,
.page-hero--center .page-hero__lead {
  margin-inline: auto;
}

.page-hero__lead {
  font-size: 18px;
  line-height: 28px;
  max-width: 700px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 65px;
    line-height: 75px;
  }
}

.page-hero__squiggle {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
}

@media (max-width: 767px) {
  .page-hero__squiggle {
    display: none;
  }
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero__grid--reverse .page-hero__media {
  order: -1;
}

@media (min-width: 992px) {
  .page-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-hero__media img {
  width: 100%;
  border-radius: 16px;
}

.hero-inline-video {
  width: 100%;
  max-width: 480px;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-inline-video video {
  display: block;
  width: 100%;
}

.hero-inline-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Hero layout with title+features on the left and a tall portrait video on the right,
   spanning both rows (used on service pages like san-xuat-video-chuyen-doi) */
.hero-section_container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .hero-section_container {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
  .hero-main {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-video {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .hero-info {
    grid-column: 1;
    grid-row: 2;
  }
}

.hero-main_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero-main_title {
    font-size: 65px;
    line-height: 75px;
  }
}

.hero-main_subtitle {
  font-size: 18px;
  line-height: 28px;
  max-width: 620px;
}

.hero-video-contaner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero-video-contaner video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 622 / 720;
  object-fit: contain;
}

.hero-info_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.icon-box.hero-info_svg {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-box.hero-info_svg .icon-box-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.icon-box.hero-info_svg .icon-box-img img {
  width: 100%;
  height: 100%;
}

.hero-info_text {
  font-size: 18px;
  font-weight: 600;
  color: var(--dw-dark);
}

.hero-info__btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Icon + text feature row, used in heroes and feature grids */
.icon-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.icon-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-feature__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dw-bg-mint);
}

.icon-feature__icon img {
  width: 28px;
  height: 28px;
}

.icon-feature__text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dw-dark);
}

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .icon-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.icon-feature-grid .icon-feature {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.icon-feature-grid .icon-feature__text {
  font-size: 15px;
  font-weight: 500;
}

/* CTA button + detailed icon feature cards, 2-column grid (video showcase) */
.feature-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px;
  margin-top: 32px;
}

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

.feature-panel__cta {
  align-self: start;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dw-dark);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 15px;
  line-height: 24px;
  color: var(--dw-text);
  margin: 0;
}

.section-dark .feature-card__title {
  color: #fff;
}

.section-dark .feature-card__text {
  color: rgba(255, 255, 255, 0.75);
}

.showcase .feature-panel + .btn {
  margin-top: 32px;
}

/* 3-column feature/services grid (homepage) */
.services-grid {
  background: var(--dw-bg-gray);
}

.services-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-block: 64px;
}

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

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

.service-card {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, rgba(236, 165, 100, 0.16), rgba(236, 165, 100, 0.36));
  border-color: rgba(236, 165, 100, 0.45);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 24px;
  width: 46px;
  height: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='38' viewBox='0 0 46 38' fill='none'%3E%3Cpath d='M2 30C6 14 10 34 15 22C18 15 20 8 26 10C30 11 27 17 23 15C21 14 24 10 28 11C33 12 36 9 40 6' stroke='%236B6B6B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: scale(0.85) rotate(-6deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.service-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.service-card p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-card__list li {
  display: flex;
  gap: 8px;
  font-size: 15px;
  line-height: 24px;
}

.service-card__list li::before {
  content: "\2713";
  color: var(--dw-green);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dw-dark);
}

.service-card a svg {
  width: 16px;
  height: 16px;
  color: var(--dw-green);
}

/* Showcase section: heading/copy one side, media the other, dark or light */
.showcase {
  overflow: hidden;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .showcase__grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase__grid--media-left .showcase__media {
    order: -1;
  }
}

.showcase__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

/* Video showcase: 4 clips in an even 2x2 grid */
.showcase__grid--video {
  align-items: stretch;
}

.video-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}

.video-duo__cell {
  position: relative;
  overflow: hidden;
}

.video-duo__cell--video {
  border-radius: 12px;
  overflow: hidden;
}

.video-duo__cell--video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .showcase h2 {
    font-size: 48px;
  }
}

.showcase p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
  max-width: 640px;
}

.showcase .icon-feature-grid,
.showcase .icon-feature-list {
  margin-top: 32px;
}

.section-dark .icon-feature__icon {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .icon-feature__text {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* Logos strip */
.logos-strip {
  padding-block: 64px;
  text-align: center;
}

.logos-strip h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.logos-strip__viewport {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logos-strip__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  animation: logos-strip-scroll 60s linear infinite;
}

.logos-strip__track img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

@keyframes logos-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Stats counter cards */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.stat-card {
  border-radius: 16px;
  background: #2e283d;
  color: #fff;
  padding: 32px;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--dw-green);
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 18px;
  margin-bottom: 20px;
}

.stat-card img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Simple stat row (company page) */
.simple-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--dw-border);
}

.simple-stat__number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .simple-stat__number {
    font-size: 40px;
  }
}

.simple-stat__label {
  font-size: 15px;
  color: var(--dw-text);
}

/* Photo grid (company page galleries) */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

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

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

.photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* Testimonials (Trustpilot-style) */
.testimonials {
  padding-block: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .testimonials__grid {
    grid-template-columns: 280px 1fr;
  }
}

.testimonials__summary {
  text-align: center;
}

@media (min-width: 992px) {
  .testimonials__summary {
    text-align: left;
  }
}

.testimonials__summary h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.testimonials__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  justify-content: center;
}

@media (min-width: 992px) {
  .testimonials__stars {
    justify-content: flex-start;
  }
}

.testimonials__stars span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dw-green);
  color: #fff;
}

.testimonials__summary a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.testimonials__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.testimonial-card {
  border-radius: 12px;
  background: #2e283d;
  padding: 20px;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--dw-green);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.testimonial-card__author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
}

/* Numbered process steps */
.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

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

.step-card {
  position: relative;
  padding-top: 16px;
}

.step-card__number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--dw-green);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  line-height: 24px;
}

/* Icon step grid (4-icon quy trình) */
.icon-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .icon-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.icon-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.icon-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.icon-step p {
  font-size: 14px;
  line-height: 22px;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.checklist li::before {
  content: "\2705";
}

/* FAQ accordion */
.faq {
  padding-block: 64px;
}

.faq .container {
  max-width: 900px;
  margin-inline: auto;
}

.faq__intro {
  max-width: 700px;
  margin-bottom: 32px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.faq-item__q svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

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

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a-inner {
  overflow: hidden;
}

.faq-item__a p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
}

/* Two-column text section (generic "why" copy blocks) */
.text-block {
  max-width: 720px;
}

.text-block p {
  margin-bottom: 16px;
}

.center-heading {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 8px;
}

.center-lead {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
}

/* Tab list (video formats) */
.tab-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .tab-showcase {
    grid-template-columns: 220px 1fr;
  }
}

.tab-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-showcase__list button {
  background: none;
  border: none;
  text-align: left;
  padding: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dw-text);
  border-bottom: 2px solid transparent;
  width: fit-content;
}

.tab-showcase__list button.is-active {
  color: var(--dw-dark);
  border-bottom-color: var(--dw-green);
}

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

.tab-showcase__grid img,
.tab-showcase__grid video {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* Stat diagram (video page "ADS số một" circle) */
.stat-diagram {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.stat-diagram__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed var(--dw-border);
  text-align: center;
  padding: 16px;
}

.stat-diagram__center strong {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--dw-dark);
}

.stat-diagram__center span {
  font-size: 12px;
  color: var(--dw-text);
  margin-top: 8px;
}

.stat-diagram__bubble {
  position: absolute;
  border: 1px solid var(--dw-border);
  border-radius: 12px;
  background: #fff;
  padding: 12px 16px;
  min-width: 140px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-diagram__bubble strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dw-dark);
}

.stat-diagram__bubble span {
  font-size: 12px;
  color: var(--dw-green);
}

.stat-diagram__bubble--tl { top: 0; left: 0; }
.stat-diagram__bubble--tr { top: 20%; right: 0; }
.stat-diagram__bubble--bl { bottom: 20%; left: 0; }
.stat-diagram__bubble--br { bottom: 0; right: 10%; }

@media (max-width: 767px) {
  .stat-diagram {
    min-height: 340px;
    transform: scale(0.8);
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.page-hero__grid--top {
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dw-dark);
}

.contact-info-item img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-info-item a {
  color: inherit;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dw-dark);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--dw-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--dw-dark);
  background: var(--dw-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--dw-green);
}

.contact-form__checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--dw-dark);
  cursor: pointer;
}

.contact-form__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--dw-green);
}

.contact-form__submit {
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

/* ==========================================================================
   Three-step process section
   ========================================================================== */

.three-step__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.three-step__intro {
  max-width: 700px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dw-text);
}

.three-step__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .three-step__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .three-step__card--offset {
    margin-top: 48px;
  }
}

.three-step__card {
  border: 1px solid var(--dw-border);
  border-radius: 16px;
  padding: 32px;
  background: var(--dw-white);
}

.three-step__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.three-step__icon img {
  width: 100%;
  height: 100%;
}

.three-step__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.three-step__card p {
  font-size: 15px;
  line-height: 24px;
  color: var(--dw-text);
}

.three-step__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Pricing package cards (AI Music Video) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

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

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dw-border);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--dw-white);
}

.pricing-card--featured {
  border-color: var(--dw-green);
  box-shadow: 0 12px 32px rgba(var(--dw-green-rgb), 0.16);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--dw-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dw-green);
  margin-bottom: 16px;
}

.pricing-card__fit {
  font-size: 14px;
  line-height: 22px;
  color: var(--dw-text);
  margin-bottom: 20px;
  min-height: 66px;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-card__list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
}

.pricing-card__list li::before {
  content: "\2713";
  color: var(--dw-green);
  font-weight: 700;
  flex-shrink: 0;
}
