
/* SF Pro Display Fonts */
@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Đã sửa URL cho weight 900 (Black) */
@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYBLACK.OTF?v=1') format('opentype'); 
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://nhanhoa.com/templates/fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
}

:root {
  --primary: #4abab9;
  --text: #1e232d;
  --cta: #00172e;
  --section: #f0f6ff;
  --white: #ffffff;
  --shadow-soft: 0 0 38px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 0 30px rgba(121, 201, 248, 0.2);
  --container: 1440px;
  --header-height: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--white);
  color: var(--text);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.section-container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}
a.pill-cta.industry-cta span {
    color: #fff;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 7.5px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(1400px, calc(100% - 64px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 184px;
  flex: 0 0 184px;
}

.brand img {
  width: 184px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.header-cta) {
  padding: 12px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-cta,
.outline-cta,
.pill-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.header-cta {
  padding: 0 32px;
  background: var(--cta);
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(74, 186, 185, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--cta);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--white);
}

.hero-section {
  padding: 70px 0;
  background: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 730px);
  align-items: center;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-height: 683px;
  min-width: 0;
}

.hero-heading {
  display: grid;
  gap: 8px;
}

.hero-kicker {
  margin: 0;
  color: var(--primary);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
}

.hero-heading h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: break-word;
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.hero-list {
  min-height: 152px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
}

.hero-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.hero-list img {
  width: 16px;
  height: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill-cta {
  width: 240px;
  min-height: 54px;
  padding: 4px 4px 4px 16px;
  justify-content: space-between;
  background: var(--cta);
  color: var(--white);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pill-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pill-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--cta);
  border-right: 2px solid var(--cta);
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}

.pill-icon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--cta);
  transform: translateX(-1px);
  transition: background-color 0.25s ease;
}

.pill-cta:hover,
.pill-cta:focus-visible {
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(74, 186, 185, 0.28);
  transform: translateY(-2px);
}

.pill-cta:hover .pill-icon,
.pill-cta:focus-visible .pill-icon {
  background: var(--cta);
  box-shadow: 0 8px 18px rgba(0, 23, 46, 0.22);
  transform: translateX(2px);
}

.pill-cta:hover .pill-icon::before,
.pill-cta:focus-visible .pill-icon::before {
  border-color: var(--white);
}

.pill-cta:hover .pill-icon::after,
.pill-cta:focus-visible .pill-icon::after {
  background: var(--white);
}

.outline-cta {
  width: 240px;
  border: 1px solid var(--primary);
  color: var(--text);
}

.outline-cta:hover,
.outline-cta:focus-visible {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(74, 186, 185, 0.22);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  width: min(100%, 730px);
  aspect-ratio: 730 / 683;
  justify-self: end;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 116%;
  aspect-ratio: 1;
  right: -2%;
  top: 2%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(74, 186, 185, 0) 0 86px,
      rgba(74, 186, 185, 0.28) 87px 88px,
      rgba(74, 186, 185, 0) 89px 168px
    );
  opacity: 0.95;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 78%;
  aspect-ratio: 1;
  right: 9%;
  top: 10%;
  border-radius: 50%;
  background: rgba(74, 186, 185, 0.08);
  filter: blur(24px);
}

.hero-visual img {
  position: absolute;
  pointer-events: none;
}

.hero-orbit {
  width: 89.8%;
  left: 8.5%;
  top: 2.8%;
  z-index: 1;
  opacity: 0.9;
}

.hero-glow {
  width: 68.5%;
  left: 15.8%;
  top: 16.8%;
  z-index: 1;
}

.hero-wave {
  width: 46.9%;
  left: 10.5%;
  bottom: 0;
  z-index: 4;
}

.hero-person {
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 3;
}

.hero-dots {
  width: 25.2%;
  right: 10.3%;
  bottom: 6.8%;
  z-index: 4;
}

.features-section {
  border: 2px solid var(--section);
  background: var(--section);
}

.features-wrap {
  padding: 96px 0;
  display: grid;
  justify-items: center;
  gap: 64px;
}

.section-heading {
  position: relative;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.heading-badge {
  position: absolute;
  width: 64px;
  right: -74px;
  top: -34px;
  transform: rotate(-13.58deg);
}

.feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 390px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.feature-card > img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-radius: 16px;
}

.feature-card.image-wide > img {
  object-position: left center;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
}

.pricing-cta {
  scroll-margin-top: 96px;
}

.benefits-section {
  background: var(--white);
  overflow: hidden;
}

.benefits-wrap {
  position: relative;
  padding: 128px 0;
  display: grid;
  gap: 80px;
}

.benefit-heading h2 {
  max-width: 1160px;
  margin: 0 auto;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
}

.benefit-orbit-bg,
.benefit-glow-left,
.benefit-glow-center {
  position: absolute;
  pointer-events: none;
}

.benefit-orbit-bg {
  width: 680px;
  left: 50%;
  top: 205px;
  transform: translateX(-50%);
  opacity: 0.85;
}

.benefit-glow-left {
  width: 400px;
  left: -12px;
  top: 192px;
}

.benefit-glow-center {
  width: 400px;
  left: 50%;
  top: 270px;
  transform: translateX(-50%);
}

.benefit-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(360px, 489px) minmax(320px, 460px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.benefit-column {
  display: grid;
  gap: 72px;
}

.benefit-card {
  min-height: 224px;
  padding: 24px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.benefit-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.benefit-card h3 {
  min-height: 60px;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.benefit-card p {
  margin: 0;
}

.corner-right {
  border-radius: 32px 32px 8px 32px;
}

.corner-top-right {
  border-radius: 32px 8px 32px 32px;
}

.corner-left {
  border-radius: 32px 32px 32px 8px;
}

.corner-top-left {
  border-radius: 8px 32px 32px 32px;
}

.chat-visual {
  position: relative;
  width: min(100%, 489px);
  aspect-ratio: 489 / 490;
  justify-self: center;
  isolation: isolate;
}

.chat-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 96%;
  aspect-ratio: 1;
  left: 2%;
  top: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(74, 186, 185, 0.14) 0 35%, rgba(74, 186, 185, 0) 36%),
    repeating-radial-gradient(
      circle,
      rgba(74, 186, 185, 0) 0 82px,
      rgba(74, 186, 185, 0.24) 83px 84px,
      rgba(74, 186, 185, 0) 85px 154px
    );
}

.chat-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 74%;
  aspect-ratio: 1;
  left: 13%;
  top: 14%;
  border-radius: 50%;
  background: rgba(74, 186, 185, 0.12);
  filter: blur(26px);
}

.chat-logo {
  position: absolute;
  z-index: 2;
  width: 82%;
  left: 9%;
  top: 2%;
}

.bubble,
.chat-bubble {
  position: absolute;
  z-index: 4;
}

.bubble-88 {
  width: 18%;
  right: 9.5%;
  top: 3.2%;
}

.bubble-53-a {
  width: 10.8%;
  right: 7.7%;
  top: 71.4%;
}

.bubble-53-b {
  width: 10.8%;
  left: 0.5%;
  top: 39.2%;
}

.bubble-24 {
  width: 4.9%;
  left: 31.4%;
  top: 12.2%;
}

.bubble-29 {
  width: 5.9%;
  left: 21.8%;
  bottom: 0;
}

.bubble-15-a {
  width: 10.1%;
  right: 5.3%;
  top: 17.1%;
}

.bubble-15-b {
  width: 10.1%;
  left: 10.7%;
  top: 12.2%;
}

.bubble-15-c {
  width: 3.1%;
  left: 7.7%;
  top: 57.3%;
}

.bubble-15-d {
  width: 10.1%;
  right: 12.1%;
  top: 60.3%;
}

.chat-bubble {
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.user-bubble {
  background: rgba(255, 255, 255, 0.5);
  border-bottom-right-radius: 8px;
}

.bot-bubble {
  background: rgba(74, 186, 185, 0.4);
}

.hello {
  right: 3.4%;
  top: 40.6%;
}

.xin-chao {
  left: 3.6%;
  top: 55.1%;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 8px;
}

.help {
  left: 3.6%;
  top: 69.6%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 24px;
}

.question {
  left: 32.6%;
  top: 84.1%;
}

.conversion-section {
  position: relative;
  overflow: hidden;
  background: #8edde5;
}

.conversion-bg {
  position: absolute;
  width: min(87%, 1671px);
  left: 50%;
  top: -208px;
  transform: translateX(-50%);
  pointer-events: none;
}

.conversion-wrap {
  position: relative;
  z-index: 1;
  min-height: 298px;
  padding: 56px 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 48px;
}

.conversion-heading {
  display: grid;
  gap: 8px;
  text-align: center;
}

.conversion-heading h2,
.pricing-heading h2,
.power-heading h2,
.industries-heading h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.conversion-heading p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.conversion-cta {
  width: auto;
  min-width: 206px;
}

.pricing-section {
  scroll-margin-top: 92px;
  background: var(--white);
  overflow: hidden;
}

.pricing-wrap {
  padding: 128px 0;
  display: grid;
  gap: 64px;
}

.pricing-heading {
  width: min(100%, 1280px);
  justify-self: center;
}

.pricing-heading h2 {
  max-width: 996px;
  margin: 0 auto;
}

.pricing-heading p,
.power-heading p {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.pricing-table-wrap {
  position: relative;
  width: min(100%, 1280px);
  justify-self: center;
}

.pricing-logo {
  position: absolute;
  z-index: 2;
  width: 175px;
  left: -36px;
  top: -40px;
  transform: rotate(-13.6deg);
  pointer-events: none;
}

.pricing-table {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.pricing-feature-head,
.plan-card,
.pricing-row-label,
.pricing-cell {
  background: var(--white);
}

.pricing-feature-head {
  display: flex;
  align-items: flex-end;
  min-height: 254px;
  padding: 24px 24px 36px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  border-right: 1px solid #e6ecf0;
}

.plan-card {
  min-height: 254px;
  padding: 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-left: 1px solid #e6ecf0;
}

.starter-plan {
  border-left: 2px solid #b3eaea;
  border-right: 2px solid #b3eaea;
}

.plan-card h3 {
  margin: 0;
  min-height: 58px;
  display: grid;
  place-items: center;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: #2d1e1e;
}

.plan-price strong {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.3;
}

.plan-price span {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.plan-price em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.plan-card p {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.plan-button {
  width: 100%;
  max-width: 360px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 57px;
  background: var(--cta);
  color: var(--white);
    font-family: "SF Pro Display", sans-serif;
  font-weight: 500;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.plan-button:hover,
.plan-button:focus-visible {
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(74, 186, 185, 0.28);
  transform: translateY(-2px);
}

.pricing-row-label,
.pricing-cell {
  min-height: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-top: 1px solid #e6ecf0;
  border-bottom: 1px solid #e6ecf0;
  font-size: 18px;
  line-height: 1.3;
}

.pricing-row-label {
  justify-content: flex-start;
  font-weight: 500;
  border-right: 1px solid #e6ecf0;
}

.pricing-cell {
  justify-content: center;
  text-align: center;
  font-weight: 700;
  border-left: 1px solid #e6ecf0;
}

.pricing-cell.highlight {
  color: #2d1e1e;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.tall-row {
  min-height: 62px;
}

.check-icon {
  width: 20px;
  height: 20px;
}

.power-section {
  position: relative;
  overflow: hidden;
  background: #effafd;
}

.power-ellipse {
  position: absolute;
  width: 852px;
  left: 50%;
  top: 289px;
  transform: translateX(-50%);
  pointer-events: none;
}

.power-wrap {
  position: relative;
  z-index: 1;
  padding: 128px 0;
  display: grid;
  gap: 64px;
}

.power-slider {
  width: 100%;
  height: 561px;
  overflow: hidden;
}

.power-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 2);
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 32px;
}

.power-track::-webkit-scrollbar {
  display: none;
}

.power-card {
  position: relative;
  height: 515px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 0 25px rgba(38, 183, 216, 0.2);
  text-align: center;
  scroll-snap-align: start;
}

.power-card.has-glow::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 172px;
  right: -64px;
  bottom: -80px;
  background: url("https://nhanhoa.com/images/ai/power-card-glow.svg") center / contain no-repeat;
  pointer-events: none;
}

.power-media {
  position: relative;
  z-index: 1;
  flex: 0 0 350px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
}

.power-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.power-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.power-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.5;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 29px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #e8e8ed;
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 50px;
  background: var(--primary);
}

.industries-section {
  background: var(--white);
  overflow: hidden;
}

.industries-wrap {
  padding: 96px 0;
  display: grid;
  justify-items: center;
  gap: 32px;
}

.industries-heading {
  width: min(100%, 1040px);
  margin-bottom: 33px;
}

.industry-tabs {
  width: min(100%, 997px);
  padding: 6px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  border: 2px solid var(--primary);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(119, 194, 255, 0.1);
  backdrop-filter: blur(10px);
  scrollbar-width: none;
}

.industry-tabs::-webkit-scrollbar {
  display: none;
}

.industry-tabs button {
  min-height: 56px;
  padding: 12px 22px;
  flex: 1 0 max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.industry-tabs button.is-active {
  background: #00172f;
  color: var(--white);
}

.industry-tabs img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.industry-panel {
  position: relative;
  width: min(100%, 1440px);
  min-height: 658px;
  padding: 48px 115px;
  display: grid;
  grid-template-columns: minmax(0, 629px) minmax(340px, 412px);
  justify-content: space-between;
  align-items: start;
  overflow: hidden;
  border-radius: 48px;
  background: #ecfeff;
  isolation: isolate;
}

.industry-copy {
  position: relative;
  z-index: 3;
  padding: 0;
  display: grid;
  gap: 16px;
}

.industry-copy span {
  color: #8b8b8b;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.industry-copy .pill-icon {
    margin-left: 9px;
}

.industry-copy h3 {
  margin: 0;
  font-size: 75px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industry-copy p {
  margin: 0;
  max-width: 629px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.industry-cta {
  margin-top: 4px;
  width: auto;
  min-width: 250px;
  justify-self: start;
}

.industry-orbit,
.industry-floating-logo,
.industry-screen,
.industry-logo-large,
.industry-people {
  position: absolute;
  pointer-events: none;
}

.industry-orbit {
  z-index: 1;
  width: 695px;
  right: 30px;
  top: -38px;
}

.industry-floating-logo {
  z-index: 2;
  width: 111px;
  right: 492px;
  top: 166px;
  transform: rotate(-21.95deg);
}

.industry-screen {
  z-index: 2;
  width: 653px;
  right: 24px;
  bottom: -316px;
  filter: drop-shadow(-1px 10px 18.8px rgba(0, 0, 0, 0.25));
}

.industry-logo-large {
  z-index: 4;
  width: 176px;
  right: 23px;
  bottom: 30px;
}

.industry-people {
  z-index: 2;
  width: 565px;
  left: 222px;
  bottom: 0;
}

.industry-chat {
  position: relative;
  z-index: 5;
  width: 388px;
  margin-top: -8px;
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px 32px 32px 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: -24px 34px 20px rgba(72, 104, 111, 0.1), 0 11px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.industry-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.industry-message.user {
  width: min(251px, 100%);
  justify-self: end;
  padding: 16px;
  border-radius: 24px 24px 4px 24px;
  background: #b3eaea;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.industry-message.bot span {
  flex: 1;
  max-width: 251px;
  padding: 16px;
  border-radius: 4px 24px 24px 24px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.industry-message.bot img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0.8px 6px rgba(97, 239, 237, 0.2);
}

.figma-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.figma-heading h2,
.services-contact-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.consult-section {
  position: relative;
  overflow: hidden;
  background: #c8f6ff;
}

.consult-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.consult-wrap {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 64px));
  min-height: 886px;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

.consult-heading p {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.consult-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.consult-visual {
  position: relative;
  width: 635px;
  height: 596px;
  flex: 0 0 635px;
  overflow: hidden;
}

.consult-visual img {
  position: absolute;
  left: -1.15%;
  top: -2.17%;
  width: 102.31%;
  height: 109%;
  max-width: none;
  object-fit: cover;
}

.consult-form {
  position: relative;
  width: 517px;
  flex: 0 0 517px;
  margin-bottom: 34px;
  padding: 32px;
  display: grid;
  gap: 32px;
  border: 0;
  border-radius: 48px;
  background: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.consult-form h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.consult-fields {
  display: grid;
  gap: 24px;
}

.consult-field {
  display: grid;
  gap: 4px;
}

.consult-field span {
  color: #515151;
  font-size: 16px;
  line-height: 1.5;
}

.consult-field strong {
  color: #ff0000;
  font-weight: 400;
}
.text-danger {
    color: red;
}
.consult-field input {
  width: 100%;
  height: 48px;
  padding: 12px 13px;
  border: 1px solid #e6ecf0;
  border-radius: 16px;
  outline: 0;
  background: #f0f6ff;
  color: var(--text);
  font: inherit;
}
.consult-field select {
  width: 100%;
  height: 48px;
  padding: 12px 13px;
  border: 1px solid #e6ecf0;
  border-radius: 16px;
  outline: 0;
  background: #f0f6ff;
  color: var(--text);
  font: inherit;
}

.consult-field input::placeholder {
  color: #8b8b8b;
}

.consult-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 186, 185, 0.16);
}

.consult-submit {
  width: max-content;
  height: 56px;
  padding: 0 4px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 65px;
  background: var(--cta);
  color: var(--white);
  font-family: "SF Pro Display", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
img.bubble.bubble-29 {
    display: none;
}

img.bubble.bubble-24 {
    display: none;
}

img.bubble.bubble-15-c {
    display: none;
}

img.hero-wave {
    display: none;
}

img.hero-dots {
    display: none;
}

img.hero-orbit {
    display: none;
}
.consult-submit-icon {
  width: 46px;
  height: 46px;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.consult-submit-icon img {
  width: 22px;
  height: 22px;
  transition: filter 0.25s ease;
}

.consult-submit:hover,
.consult-submit:focus-visible {
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(74, 186, 185, 0.28);
  transform: translateY(-2px);
}

.consult-submit:hover .consult-submit-icon,
.consult-submit:focus-visible .consult-submit-icon {
  background: var(--cta);
  box-shadow: 0 8px 18px rgba(0, 23, 46, 0.22);
  transform: translateX(2px);
}

.consult-submit:hover .consult-submit-icon img,
.consult-submit:focus-visible .consult-submit-icon img {
  filter: brightness(0) invert(1);
}

.consult-form-tail {
    position: absolute;
    left: 13px;
    bottom: -40px;
    width: 117px;
    height: 52px;
    max-width: none;
    pointer-events: none;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background-color: #effafd;
  background-image:
    linear-gradient(rgba(74, 186, 185, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 186, 185, 0.12) 1px, transparent 1px);
  background-size: 112px 112px;
}

.faq-wrap {
  position: relative;
  width: min(1280px, calc(100% - 64px));
  min-height: 792px;
  padding: 96px 0;
  display: grid;
  align-content: center;
  gap: 48px;
}

.faq-heading span {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 737px;
  align-items: center;
  gap: 24px;
}

.faq-visual {
  position: relative;
  justify-self: center;
  width: 525px;
  height: 445px;
}

.faq-people {
  position: absolute;
  left: 0;
  top: 18px;
  width: 425px;
  height: 409px;
  object-fit: contain;
  object-position: bottom;
}

.faq-bot {
  position: absolute;
  left: 262px;
  top: 166px;
  z-index: 2;
  width: 202px;
  height: 238px;
  object-fit: cover;
  filter: drop-shadow(-3px 2px 4px rgba(0, 0, 0, 0.25));
}

.faq-shadow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.faq-shadow-large {
  left: 321px;
  top: 391px;
  width: 81px;
  height: 7px;
}

.faq-shadow-small {
  left: 334px;
  top: 391px;
  width: 53px;
  height: 7px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(74, 186, 185, 0.5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.faq-item.is-open {
  background: var(--primary);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  flex: 1;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.faq-item.is-open .faq-question {
  color: var(--white);
}

.faq-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  border-radius: 50%;
  background: center / 24px 24px no-repeat url("https://nhanhoa.com/images/ai/faq-icon-plus.svg");
}

.faq-item.is-open .faq-icon {
  background-image: url("https://nhanhoa.com/images/ai/faq-icon-minus.svg");
}

.faq-answer {
  display: none;
  padding: 0 72px 16px 16px;
  color: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

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

.services-contact-section {
  background: var(--white);
  overflow: hidden;
}

.services-contact-wrap {
  width: min(1280px, calc(100% - 64px));
  min-height: 690px;
  padding-top: 96px;
  display: grid;
  align-content: center;
  gap: 56px;
}

.services-contact-heading {
  display: grid;
  gap: 24px;
  text-align: center;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.service-tags span {
  padding: 8px 16px;
  border-radius: 16px;
  background: #effafd;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.service-tags span:hover {
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.services-contact-layout {
  display: grid;
  grid-template-columns: 628px minmax(0, 590px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.office-card {
  width: 100%;
  padding: 24px;
  display: grid;
  gap: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
}

.office-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.office-tabs {
  height: 48px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 20px;
  background: #f0f6ff;
}

.office-tabs button {
  min-width: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
}

.office-tabs button.is-active {
  background: var(--primary);
  color: var(--white);
}

.office-info {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.office-info li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.office-info img {
  width: 32px;
  height: 32px;
  padding: 2px 4px;
  object-fit: contain;
}

.office-info strong {
  font-weight: 500;
}

.services-contact-visual {
  width: 590px;
  max-width: 100%;
}

.services-contact-visual img {
  width: 100%;
  height: auto;
}

/*bổ sung section mới*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Open+Sans:wght@600&family=Roboto:wght@500;700&display=swap");

:root {
  --primary: #4abab9;
  --text: #1e232d;
  --cta: #00172e;
  --background-2: #00172f;
  --section: #f0f6ff;
  --white: #ffffff;
  --text-secondary: #8b8b8b;
  --shadow-soft: 0px 0px 38px rgba(0, 0, 0, 0.08);
  --shadow-card: 0px 0px 30px rgba(121, 201, 248, 0.2);
  --container: 1440px;
  --header-height: 75px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

/* Header styling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--cta);
  letter-spacing: -0.5px;
}

.logo .highlight {
  color: var(--primary);
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Section styling */
.efficiency-section {
  padding: 96px 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--text);
  margin-bottom: 64px;
  letter-spacing: -0.5px;
}

/* Tab Bar styling */
.tab-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 32px;
}

.tabs-wrapper {
  display: flex;
  flex-direction: row;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 32px;
  box-shadow: 0px 0px 20px 0px rgba(119, 194, 255, 0.15);
  backdrop-filter: blur(10px);
}

.tab-item {
  display: flex;
  flex-direction: row;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 56px;
  border-radius: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.tab-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition);
}

.tab-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}

.tab-item:hover {
  background: rgba(74, 186, 185, 0.08);
}

.tab-item.active {
  background: var(--background-2);
}

.tab-item.active .tab-text {
  color: var(--white);
}

.tab-item.active .tab-icon {
  filter: brightness(0) invert(1);
}

/* Efficiency Content Layout */
.efficiency-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
}

/* Review Card (Left) */
.review-card {
  flex: 1;
  height: 446px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bg-vector {
  position: absolute;
  left: 0;
  bottom: -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.review-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.review-industry {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-top: 4px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.quote-icon {
  width: 46px;
  height: 33px;
  object-fit: contain;
}

.quote-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text);
}

.reviewer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
  margin-bottom: 2px;
}

.star-icon {
  width: 18px;
  height: 18px;
}

.reviewer-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.reviewer-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Stats Card (Right) */
.stats-card {
  width: 460px;
  height: 446px;
  background: var(--section);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}

.glow-bg {
  position: absolute;
  width: 237px;
  height: 169px;
  left: 330px;
  top: -61px;
  background: rgba(21, 185, 255, 0.3);
  filter: blur(80px);
  pointer-events: none;
}

.logo-chatai {
  position: absolute;
  width: 187px;
  height: 201px;
  left: 273px;
  top: 223px;
  pointer-events: none;
  object-fit: contain;
}

.stats-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
}

.stats-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.stats-number-wrapper {
  display: flex;
  flex-direction: column;
}

.stats-prefix {
  font-family: "SF Pro Display", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: -10px;
}

.stats-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cta);
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.94);
}

.stats-desc {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  white-space: pre-line;
}

/* Animations for Tab Transitions */
.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.fade-in-active {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.review-card-inner,
.stats-card-inner {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive Styling */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .efficiency-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 38px;
    margin-bottom: 48px;
  }

  .efficiency-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: 440px;
  }

  .stats-card {
    width: 100%;
    max-width: 600px;
    height: 380px;
  }

  .logo-chatai {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .glow-bg {
    left: auto;
    right: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
    --header-height: 60px;
  }

  .site-header {
    height: 60px;
  }

  .header-container {
    padding: 0 20px;
  }

  .container {
    padding: 0 16px;
  }

  .efficiency-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  /* Horizontal scroll for tabs on mobile */
  .tab-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px;
    margin-bottom: 24px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tab-container::-webkit-scrollbar {
    display: none;
  }

  .tabs-wrapper {
    flex-wrap: nowrap;
    border-radius: 20px;
    gap: 8px;
    padding: 4px;
  }

  .tab-item {
    padding: 8px 16px;
    height: 44px;
    gap: 8px;
    border-radius: 16px;
  }

  .tab-icon {
    width: 24px;
    height: 24px;
  }

  .tab-text {
    font-size: 14px;
  }

  .review-card-inner {
    padding: 24px;
  }

  .review-industry {
    font-size: 22px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .reviewer-avatar {
    width: 60px;
    height: 60px;
  }

  .reviewer-name {
    font-size: 18px;
  }

  .reviewer-title {
    font-size: 14px;
  }

  .stats-card {
    height: auto;
    min-height: 300px;
    max-width: 100%;
  }

  .stats-card-inner {
    padding: 24px;
  }

  .stats-prefix {
    font-size: 22px;
  }

  .stats-number {
    font-size: 72px;
  }

  .stats-desc {
    font-size: 18px;
    margin-top: 16px;
  }
}
/*end bổ sung section mới*/

@media (max-width: 1320px) {
  .main-nav {
    gap: 18px;
  }

  .header-cta {
    padding: 0 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  }

  .hero-kicker {
    font-size: 64px;
  }

  .hero-heading h1 {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

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

  .benefit-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .benefit-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .chat-visual {
    order: -1;
    max-width: 520px;
  }

  .pricing-table {
    grid-template-columns: 270px minmax(320px, 1fr) minmax(320px, 1fr);
    overflow-x: auto;
  }

  .power-track {
    grid-auto-columns: minmax(520px, 70%);
  }

  .industry-panel {
    padding: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industry-copy h3 {
    font-size: 58px;
  }

  .industry-chat {
    justify-self: end;
    margin-top: 28px;
  }

  .industry-people {
    left: 120px;
  }

  .consult-wrap,
  .faq-wrap,
  .services-contact-wrap {
    width: min(calc(100% - 64px), 1180px);
  }

  .consult-layout {
    gap: 40px;
  }

  .consult-visual {
    width: 560px;
    height: 525px;
    flex-basis: 560px;
  }

  .faq-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(520px, 650px);
  }

  .faq-visual {
    transform: scale(0.88);
    transform-origin: center;
  }

  .services-contact-layout {
    grid-template-columns: minmax(0, 560px) minmax(360px, 520px);
  }
}

@media (max-width: 1024px) {
  .section-container,
  .header-inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--white);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a:not(.header-cta) {
    padding: 14px 0;
  }

  .header-cta {
    width: max-content;
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-visual {
    justify-self: center;
    max-width: 620px;
  }

  .features-wrap,
  .benefits-wrap {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .section-heading p {
    font-size: 26px;
  }

  .benefit-heading h2 {
    font-size: 40px;
  }

  .conversion-heading h2,
  .pricing-heading h2,
  .power-heading h2,
  .industries-heading h2 {
    font-size: 40px;
  }

  .pricing-wrap,
  .power-wrap,
  .industries-wrap {
    padding: 80px 0;
  }

  .pricing-table-wrap {
    overflow-x: auto;
    padding: 36px 0 8px;
  }

  .pricing-table {
    width: 940px;
  }

  .pricing-logo {
    width: 120px;
    left: 6px;
    top: 0;
  }

  .industry-panel {
    min-height: 720px;
  }

  .industry-orbit {
    right: -170px;
  }

  .industry-screen {
    width: 560px;
    right: -70px;
    bottom: -270px;
  }

  .industry-people {
    width: 470px;
    left: 40px;
  }

  .figma-heading h2,
  .services-contact-heading h2 {
    font-size: 40px;
  }

  .consult-wrap,
  .faq-wrap,
  .services-contact-wrap {
    min-height: auto;
    padding: 80px 0;
  }

  .consult-layout,
  .faq-layout,
  .services-contact-layout {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: center;
  }

  .consult-layout {
    gap: 28px;
  }

  .consult-visual {
    width: min(100%, 600px);
    height: auto;
    aspect-ratio: 635 / 596;
    flex: none;
  }

  .consult-form {
    width: min(100%, 560px);
    flex: none;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-visual {
    order: 2;
    transform: scale(0.82);
    margin: -34px 0;
  }

  .faq-list {
    width: min(100%, 737px);
  }

  .services-contact-layout {
    gap: 36px;
  }

  .office-card {
    width: min(100%, 628px);
  }

  .services-contact-visual {
    width: min(100%, 590px);
  }
}

@media (max-width: 768px) {
  .section-container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand,
  .brand img {
    width: 154px;
  }

  .hero-section {
    padding: 24px 0 48px;
  }

  .hero-kicker {
    font-size: 46px;
  }

  .hero-heading h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pill-cta,
  .outline-cta {
    width: 100%;
  }

  .feature-grid,
  .benefit-column {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    border-radius: 24px;
  }

  .feature-card > img {
    height: auto;
    aspect-ratio: 362 / 215;
  }

  .heading-badge {
    width: 48px;
    right: -10px;
    top: -38px;
  }

  .benefit-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    border-radius: 24px;
  }

  .benefit-card img {
    width: 64px;
    height: 64px;
  }

  .benefit-card h3 {
    min-height: auto;
    font-size: 17px;
  }

  .chat-visual {
    max-width: 430px;
  }

  .chat-bubble {
    padding: 12px;
    font-size: 14px;
  }

  .conversion-wrap {
    min-height: 260px;
    gap: 32px;
  }

  .conversion-heading h2,
  .pricing-heading h2,
  .power-heading h2,
  .industries-heading h2 {
    font-size: 34px;
  }

  .conversion-heading p,
  .pricing-heading p,
  .power-heading p {
    font-size: 16px;
  }

  .pricing-table {
    width: 820px;
    grid-template-columns: 240px 290px 290px;
  }

  .pricing-feature-head,
  .plan-card {
    min-height: 235px;
  }

  .pricing-row-label,
  .pricing-cell {
    font-size: 16px;
  }

  .power-track {
    grid-auto-columns: minmax(282px, 86%);
    gap: 20px;
  }

  .power-slider {
    height: auto;
  }

  .power-card {
    height: 430px;
    border-radius: 24px;
  }

  .power-media {
    flex-basis: 235px;
    height: 235px;
  }

  .power-card h3 {
    font-size: 21px;
  }

  .industry-tabs {
    width: 100%;
    border-radius: 24px;
  }

  .industry-tabs button {
    padding: 10px 16px;
    gap: 10px;
    border-radius: 18px;
  }

  .industry-panel {
    min-height: auto;
    padding: 28px 20px;
    border-radius: 32px;
  }

  .industry-copy h3 {
    font-size: 42px;
  }

  .industry-copy span {
    font-size: 20px;
  }

  .industry-chat {
    width: 100%;
    margin-top: 132px;
    padding: 16px;
    border-width: 6px;
  }

  .industry-orbit {
    width: 520px;
    top: 170px;
    right: -250px;
  }

  .industry-floating-logo {
    width: 74px;
    top: 390px;
    right: 260px;
  }

  .industry-screen {
    width: 420px;
    right: -110px;
    bottom: 136px;
  }

  .industry-logo-large {
    width: 120px;
    right: -10px;
    bottom: 178px;
  }

  .industry-people {
    width: 360px;
    left: 10px;
    bottom: 190px;
  }

  .figma-heading h2,
  .services-contact-heading h2 {
    font-size: 34px;
  }

  .consult-wrap,
  .faq-wrap,
  .services-contact-wrap {
    width: min(calc(100% - 32px), var(--container));
    padding: 64px 0;
    gap: 36px;
  }

  .consult-heading p {
    font-size: 18px;
  }

  .consult-form {
    padding: 24px;
    border-radius: 32px;
  }

  .consult-form h3 {
    font-size: 24px;
  }

  .consult-submit {
    width: 100%;
    justify-content: space-between;
  }

  .consult-form-tail {
    display: none;
  }

  .faq-heading span {
    font-size: 26px;
  }

  .faq-visual {
    width: 420px;
    height: 356px;
    transform: none;
    margin: -8px 0 0;
  }

  .faq-people {
    width: 340px;
    height: 327px;
    top: 14px;
  }

  .faq-bot {
    left: 210px;
    top: 133px;
    width: 162px;
    height: 190px;
  }

  .faq-shadow-large {
    left: 257px;
    top: 313px;
    width: 65px;
  }

  .faq-shadow-small {
    left: 267px;
    top: 313px;
    width: 42px;
  }

  .faq-question span:first-child {
    font-size: 16px;
    line-height: 1.3;
  }

  .faq-answer {
    padding-right: 16px;
    font-size: 15px;
  }

  .services-contact-heading {
    gap: 18px;
  }

  .office-card {
    padding: 20px;
  }

  .office-tabs {
    height: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 18px;
  }

  .office-tabs button {
    min-height: 40px;
    font-size: 16px;
  }

  .office-info li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    font-size: 16px;
  }

  .office-info img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 520px) {
  .hero-kicker {
    font-size: 38px;
  }

  .hero-heading h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-list li {
    align-items: start;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .section-heading p {
    font-size: 21px;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-card h3 {
    font-size: 21px;
  }

  .benefit-heading h2 {
    font-size: 28px;
  }

  .benefits-wrap {
    gap: 48px;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

  .chat-visual {
    width: calc(100vw - 32px);
    margin-left: -6px;
  }

  .question {
    left: 20%;
    top: 84%;
  }

  .help {
    max-width: 72%;
    white-space: normal;
  }

  .conversion-heading h2,
  .pricing-heading h2,
  .power-heading h2,
  .industries-heading h2 {
    font-size: 28px;
  }

  .conversion-bg {
    width: 180%;
    top: -120px;
  }

  .pricing-wrap,
  .power-wrap,
  .industries-wrap {
    gap: 40px;
  }

  .pricing-table {
    width: 760px;
    grid-template-columns: 220px 270px 270px;
  }

  .plan-card {
    padding: 18px;
  }

  .plan-price strong {
    font-size: 24px;
  }

  .plan-price span {
    font-size: 20px;
  }

  .pricing-cell.highlight {
    font-size: 17px;
  }

  .power-card {
    height: auto;
    min-height: 390px;
    padding: 18px;
  }

  .power-media {
    flex-basis: 190px;
    height: 190px;
  }

  .industry-copy h3 {
    font-size: 34px;
  }

  .industry-cta {
    width: 100%;
  }

  .industry-message {
    font-size: 14px;
  }

  .industry-message.user,
  .industry-message.bot span {
    padding: 12px;
  }

  .industry-screen {
    width: 360px;
    right: -130px;
  }

  .industry-people {
    width: 310px;
    left: -16px;
  }

  .figma-heading h2,
  .services-contact-heading h2 {
    font-size: 27px;
  }

  .consult-wrap,
  .faq-wrap,
  .services-contact-wrap {
    padding: 56px 0;
  }

  .consult-visual {
    width: calc(100vw - 16px);
    margin-left: -8px;
  }

  .consult-form {
    padding: 20px;
  }

  .consult-fields {
    gap: 18px;
  }

  .faq-visual {
    width: 330px;
    height: 280px;
  }

  .faq-people {
    width: 267px;
    height: 257px;
    top: 11px;
  }

  .faq-bot {
    left: 165px;
    top: 104px;
    width: 127px;
    height: 149px;
  }

  .faq-shadow-large {
    left: 202px;
    top: 246px;
    width: 51px;
  }

  .faq-shadow-small {
    left: 210px;
    top: 246px;
    width: 33px;
  }

  .faq-question {
    min-height: 64px;
    padding: 14px;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    background-size: 20px 20px;
  }

  .service-tags span {
    padding: 7px 12px;
    font-size: 14px;
  }

  .office-card h3 {
    font-size: 18px;
  }

  .services-contact-wrap{
    padding-top: 56px;
    padding-bottom: 0px;
  }
}
