/*
Theme Name: TVTC Landing Page
Description: CSS tổng thể cho landing page trang chủ tranvachthachcao.net
Version: 1.0
Author: OpenAI
*/

/* =========================================================
   1. DESIGN TOKENS
========================================================= */
:root {
  --tvtc-primary: #ff6a00;
  --tvtc-primary-hover: #e85f00;
  --tvtc-primary-soft: #fff2e8;

  --tvtc-navy: #0d1b2a;
  --tvtc-navy-2: #15263a;
  --tvtc-text: #1f2937;
  --tvtc-muted: #667085;

  --tvtc-white: #ffffff;
  --tvtc-light: #f7f8fa;
  --tvtc-border: #e5e7eb;
  --tvtc-success: #1f9d55;
  --tvtc-zalo: #0877ff;

  --tvtc-container: 1200px;
  --tvtc-radius-sm: 8px;
  --tvtc-radius-md: 14px;
  --tvtc-radius-lg: 22px;

  --tvtc-shadow-sm: 0 4px 14px rgba(13, 27, 42, 0.06);
  --tvtc-shadow-md: 0 10px 30px rgba(13, 27, 42, 0.10);
  --tvtc-shadow-lg: 0 18px 50px rgba(13, 27, 42, 0.15);

  --tvtc-section-space: 80px;
  --tvtc-transition: 0.25s ease;
}

/* =========================================================
   2. BASE / RESET
========================================================= */
.tvtc-landing,
.tvtc-landing * {
  box-sizing: border-box;
}

.tvtc-landing {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--tvtc-text);
  background: var(--tvtc-white);
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.tvtc-landing a {
  color: inherit;
  text-decoration: none;
}

.tvtc-landing p {
  margin: 0 0 18px;
}

.tvtc-landing ul {
  margin: 0;
  padding-left: 20px;
}

.tvtc-landing h1,
.tvtc-landing h2,
.tvtc-landing h3,
.tvtc-landing h4 {
  margin: 0 0 18px;
  color: var(--tvtc-navy);
  line-height: 1.25;
  font-weight: 800;
}

.tvtc-landing h1 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.tvtc-landing h2 {
  font-size: clamp(28px, 3.3vw, 40px);
}

.tvtc-landing h3 {
  font-size: clamp(20px, 2vw, 25px);
}

.tvtc-container {
  width: min(100% - 32px, var(--tvtc-container));
  margin-inline: auto;
}

.tvtc-section {
  padding: var(--tvtc-section-space) 0;
}

.tvtc-section--light {
  background: var(--tvtc-light);
}

.tvtc-section--dark {
  color: var(--tvtc-white);
  background: var(--tvtc-navy);
}

.tvtc-section--dark h2,
.tvtc-section--dark h3,
.tvtc-section--dark p {
  color: var(--tvtc-white);
}

.tvtc-section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.tvtc-section-head__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--tvtc-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tvtc-section-head p {
  color: var(--tvtc-muted);
  font-size: 18px;
}

/* =========================================================
   3. GRID SYSTEM
========================================================= */
.tvtc-grid {
  display: grid;
  gap: 24px;
}

.tvtc-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tvtc-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tvtc-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   4. BUTTONS
========================================================= */
.tvtc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--tvtc-radius-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--tvtc-transition),
    box-shadow var(--tvtc-transition),
    background var(--tvtc-transition),
    border-color var(--tvtc-transition);
}

.tvtc-btn:hover {
  transform: translateY(-2px);
}

.tvtc-btn--primary {
  color: var(--tvtc-white);
  background: var(--tvtc-primary);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.24);
}

.tvtc-btn--primary:hover {
  background: var(--tvtc-primary-hover);
}

.tvtc-btn--outline {
  color: var(--tvtc-primary);
  border-color: var(--tvtc-primary);
  background: var(--tvtc-white);
}

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

.tvtc-btn--zalo {
  color: var(--tvtc-white);
  background: var(--tvtc-zalo);
}

.tvtc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   5. HEADER
========================================================= */
.tvtc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--tvtc-transition);
}

.tvtc-header.is-scrolled {
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.tvtc-logo img {
  width: auto;
  max-height: 48px;
}

.tvtc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tvtc-nav a {
  color: var(--tvtc-navy);
  font-size: 14px;
  font-weight: 700;
}

.tvtc-nav a:hover,
.tvtc-nav a.is-active {
  color: var(--tvtc-primary);
}

.tvtc-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tvtc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tvtc-border);
  border-radius: 8px;
  background: var(--tvtc-white);
}

/* =========================================================
   6. HERO
========================================================= */
.tvtc-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--tvtc-white);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.90) 0%, rgba(13, 27, 42, 0.68) 48%, rgba(13, 27, 42, 0.16) 100%),
    var(--tvtc-hero-image, none) center/cover no-repeat;
}

.tvtc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.28), transparent);
  pointer-events: none;
}

.tvtc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}

.tvtc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--tvtc-white);
  background: rgba(255, 106, 0, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tvtc-hero h1,
.tvtc-hero p {
  color: var(--tvtc-white);
}

.tvtc-hero h1 span {
  color: var(--tvtc-primary);
}

.tvtc-hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.90);
}

.tvtc-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.tvtc-hero__points li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.tvtc-hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tvtc-primary);
  font-weight: 900;
}

/* =========================================================
   7. USP BAR
========================================================= */
.tvtc-usp {
  position: relative;
  z-index: 10;
  margin-top: -44px;
}

.tvtc-usp__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-md);
}

.tvtc-usp__item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid var(--tvtc-border);
}

.tvtc-usp__item:last-child {
  border-right: 0;
}

.tvtc-usp__icon {
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--tvtc-primary);
  background: var(--tvtc-primary-soft);
  border-radius: 50%;
}

.tvtc-usp__item strong {
  display: block;
  color: var(--tvtc-navy);
}

.tvtc-usp__item span {
  display: block;
  color: var(--tvtc-muted);
  font-size: 13px;
}

/* =========================================================
   8. SERVICE CARDS
========================================================= */
.tvtc-card {
  overflow: hidden;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
  transition:
    transform var(--tvtc-transition),
    box-shadow var(--tvtc-transition);
}

.tvtc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tvtc-shadow-md);
}

.tvtc-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.tvtc-card:hover .tvtc-card__media img {
  transform: scale(1.045);
}

.tvtc-card__body {
  padding: 22px;
}

.tvtc-card__body p {
  color: var(--tvtc-muted);
}

.tvtc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tvtc-primary);
  font-weight: 800;
}

/* =========================================================
   9. INTRO / SPLIT CONTENT
========================================================= */
.tvtc-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.tvtc-split__media {
  position: relative;
}

.tvtc-split__media img {
  width: 100%;
  border-radius: var(--tvtc-radius-lg);
  box-shadow: var(--tvtc-shadow-md);
}

.tvtc-split__badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px;
  color: var(--tvtc-white);
  background: var(--tvtc-primary);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-md);
}

.tvtc-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tvtc-check-list li {
  position: relative;
  padding-left: 30px;
}

.tvtc-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--tvtc-white);
  background: var(--tvtc-primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

/* =========================================================
   10. PRICE TABLE
========================================================= */
.tvtc-price-wrap {
  overflow-x: auto;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.tvtc-price-table th,
.tvtc-price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--tvtc-border);
  text-align: left;
  vertical-align: middle;
}

.tvtc-price-table th {
  color: var(--tvtc-white);
  background: var(--tvtc-primary);
  font-size: 14px;
}

.tvtc-price-table tr:last-child td {
  border-bottom: 0;
}

.tvtc-price-table tbody tr:hover {
  background: var(--tvtc-primary-soft);
}

.tvtc-price-note {
  margin-top: 18px;
  padding: 18px;
  color: var(--tvtc-muted);
  background: var(--tvtc-primary-soft);
  border-left: 4px solid var(--tvtc-primary);
  border-radius: var(--tvtc-radius-sm);
}

/* =========================================================
   11. PROJECTS
========================================================= */
.tvtc-project {
  position: relative;
  overflow: hidden;
  border-radius: var(--tvtc-radius-md);
  min-height: 330px;
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvtc-project__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 46px 22px 22px;
  color: var(--tvtc-white);
  background: linear-gradient(to top, rgba(13, 27, 42, 0.95), transparent);
}

.tvtc-project__overlay h3,
.tvtc-project__overlay p {
  color: var(--tvtc-white);
}

/* =========================================================
   12. FEATURE / WHY CHOOSE US
========================================================= */
.tvtc-feature {
  padding: 26px;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--tvtc-primary);
  background: var(--tvtc-primary-soft);
  border-radius: 14px;
}

/* =========================================================
   13. PROCESS
========================================================= */
.tvtc-process {
  counter-reset: tvtc-step;
}

.tvtc-process__item {
  position: relative;
  padding: 28px 24px 24px 78px;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-process__item::before {
  counter-increment: tvtc-step;
  content: counter(tvtc-step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--tvtc-primary);
  font-size: 26px;
  font-weight: 900;
}

/* =========================================================
   14. LOCATION CHIPS
========================================================= */
.tvtc-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tvtc-location {
  padding: 10px 15px;
  color: var(--tvtc-navy);
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--tvtc-transition);
}

.tvtc-location:hover {
  color: var(--tvtc-white);
  background: var(--tvtc-primary);
  border-color: var(--tvtc-primary);
}

/* =========================================================
   15. TESTIMONIALS
========================================================= */
.tvtc-testimonial {
  position: relative;
  padding: 28px;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-testimonial::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 18px;
  color: var(--tvtc-primary-soft);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.tvtc-stars {
  margin-bottom: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.tvtc-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.tvtc-person img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

/* =========================================================
   16. BLOG / KNOWLEDGE
========================================================= */
.tvtc-post {
  overflow: hidden;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-md);
  box-shadow: var(--tvtc-shadow-sm);
}

.tvtc-post__image {
  aspect-ratio: 16 / 9;
}

.tvtc-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvtc-post__body {
  padding: 22px;
}

.tvtc-post__meta {
  margin-bottom: 8px;
  color: var(--tvtc-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================================================
   17. FAQ
========================================================= */
.tvtc-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.tvtc-faq details {
  overflow: hidden;
  background: var(--tvtc-white);
  border: 1px solid var(--tvtc-border);
  border-radius: var(--tvtc-radius-sm);
}

.tvtc-faq summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--tvtc-navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.tvtc-faq summary::-webkit-details-marker {
  display: none;
}

.tvtc-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--tvtc-primary);
  font-size: 24px;
  font-weight: 500;
}

.tvtc-faq details[open] summary::after {
  content: "−";
}

.tvtc-faq__answer {
  padding: 0 20px 20px;
  color: var(--tvtc-muted);
}

/* =========================================================
   18. FINAL CTA
========================================================= */
.tvtc-final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: var(--tvtc-white);
  background:
    linear-gradient(
357deg, rgb(58 60 63 / 51%), rgb(239 239 239 / 24%)), var(--tvtc-cta-image, none)
 center / cover no-repeat;
}

.tvtc-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.tvtc-final-cta h2,
.tvtc-final-cta p {
  color: var(--tvtc-white);
}

.tvtc-final-cta__content {
  max-width: 720px;
}

/* =========================================================
   19. FOOTER
========================================================= */
.tvtc-footer {
  padding: 58px 0 20px;
  color: rgba(255, 255, 255, 0.76);
  background: #0a111c;
}

.tvtc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.tvtc-footer h3,
.tvtc-footer h4 {
  color: var(--tvtc-white);
}

.tvtc-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.tvtc-footer a:hover {
  color: var(--tvtc-primary);
}

.tvtc-footer__list {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.tvtc-footer__bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  text-align: center;
}

/* =========================================================
   20. MOBILE STICKY CTA
========================================================= */
.tvtc-mobile-cta {
  display: none;
}

/* =========================================================
   21. WORDPRESS / GUTENBERG HELPERS
========================================================= */
.tvtc-landing .alignwide {
  width: min(100% - 32px, var(--tvtc-container));
  max-width: none;
  margin-inline: auto;
}

.tvtc-landing .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tvtc-landing .wp-block-group {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* =========================================================
   22. RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  :root {
    --tvtc-section-space: 64px;
  }

  .tvtc-nav {
    gap: 16px;
  }

  .tvtc-header__actions .tvtc-btn {
    padding-inline: 15px;
  }

  .tvtc-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvtc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --tvtc-section-space: 48px;
  }

  body {
    padding-bottom: 66px;
  }

  .tvtc-container {
    width: min(100% - 24px, var(--tvtc-container));
  }

  .tvtc-header__inner {
    min-height: 64px;
  }

  .tvtc-logo img {
    max-height: 40px;
  }

  .tvtc-nav,
  .tvtc-header__actions .tvtc-btn {
    display: none;
  }

  .tvtc-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .tvtc-hero {
    min-height: 560px;
    text-align: center;
    background: linear-gradient(200deg, rgb(13 27 42 / 16%) 0%, rgb(13 27 42 / 27%) 48%, rgb(13 27 42 / 62%) 100%), var(--tvtc-hero-image, none) center / cover no-repeat;
  }

  .tvtc-hero__content {
    max-width: 100%;
    padding: 72px 0 86px;
  }

  .tvtc-hero__lead {
    margin-inline: auto;
    font-size: 17px;
  }

  .tvtc-hero .tvtc-btn-group,
  .tvtc-final-cta .tvtc-btn-group {
    justify-content: center;
  }

  .tvtc-hero__points {
    justify-content: center;
    gap: 10px 18px;
  }

  .tvtc-usp {
    margin-top: -34px;
  }

  .tvtc-usp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvtc-usp__item {
    min-height: 84px;
    padding: 15px;
  }

  .tvtc-usp__item:nth-child(2) {
    border-right: 0;
  }

  .tvtc-usp__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--tvtc-border);
  }

  .tvtc-grid--2,
  .tvtc-grid--3,
  .tvtc-grid--4,
  .tvtc-split,
  .tvtc-footer__grid {
    grid-template-columns: 1fr;
  }

  .tvtc-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .tvtc-card__body {
    padding: 16px;
  }

  .tvtc-card__body p {
    display: none;
  }

  .tvtc-split {
    gap: 30px;
  }

  .tvtc-split__badge {
    position: static;
    max-width: 100%;
    margin-top: 14px;
  }

  .tvtc-final-cta {
    text-align: center;
  }

  .tvtc-final-cta__inner {
    flex-direction: column;
  }

  .tvtc-mobile-cta {
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 62px;
    background: var(--tvtc-white);
    border-top: 1px solid var(--tvtc-border);
    box-shadow: 0 -8px 24px rgba(13, 27, 42, 0.12);
  }

  .tvtc-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--tvtc-white);
    font-size: 13px;
    font-weight: 800;
  }

  .tvtc-mobile-cta__call {
    background: var(--tvtc-primary);
  }

  .tvtc-mobile-cta__zalo {
    background: var(--tvtc-zalo);
  }

  .tvtc-mobile-cta__quote {
    background: var(--tvtc-navy);
  }
}

@media (max-width: 480px) {
  .tvtc-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .tvtc-btn {
    width: 100%;
  }

  .tvtc-hero__points {
    display: grid;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .tvtc-usp__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .tvtc-usp__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .tvtc-section-head {
    margin-bottom: 30px;
  }

  .tvtc-price-table th,
  .tvtc-price-table td {
    padding: 13px 14px;
  }
}

/* =========================================================
   23. ACCESSIBILITY & PERFORMANCE
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .tvtc-landing *,
  .tvtc-landing *::before,
  .tvtc-landing *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.tvtc-landing :focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.35);
  outline-offset: 3px;
}
/* =========================================================
   NEWSPAPER THEME – FULL WIDTH LANDING PAGE
========================================================= */

/* Khối landing page vượt khỏi container mặc định của theme */
.tvtc-landing {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

/* Không để Gutenberg giới hạn chiều rộng */
.tvtc-landing.alignfull {
    width: 100vw;
    max-width: 100vw;
}

/* Từng section được phép phủ toàn màn hình */
.tvtc-landing > .alignfull,
.tvtc-landing .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Nội dung bên trong vẫn nằm trong container 1200px */
.tvtc-landing .tvtc-container {
    width: min(calc(100% - 32px), 1200px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Chống xuất hiện thanh cuộn ngang */
html,
body {
    overflow-x: clip;
}
/* ===== FULL WIDTH FIX FOR NEWSPAPER LANDING PAGE ===== */

.tvtc-landing {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.tvtc-landing .tvtc-container {
    width: min(calc(100% - 32px), 1200px);
    max-width: 1200px;
    margin-inline: auto;
}

body.page-id-1303 .td-main-content-wrap {
    padding: 0;
}

body.page-id-1303 .td-main-content-wrap .td-container,
body.page-id-1303 .td-main-content-wrap .td-pb-row,
body.page-id-1303 .td-main-content-wrap .td-pb-span8,
body.page-id-1303 .td-main-content-wrap .td-pb-span12,
body.page-id-1303 .td-main-content,
body.page-id-1303 .td-ss-main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-id-1303 .td-page-header,
body.page-id-1303 .td-crumb-container {
    display: none;
}

body.page-id-1303 .entry-content,
body.page-id-1303 .td-page-content,
body.page-id-1303 .td-post-content {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: clip;
}

@media (max-width: 768px) {
    .tvtc-landing .tvtc-container {
        width: min(calc(100% - 24px), 1200px);
    }
}