/* ============================================================
   QueueBee  Homepage styles
   Palette: main #2d7a94 � text #1C2541 � muted #6a6f7a
   ============================================================ */

:root {
  --main: #2d7a94;
  --main-dark: #256377;
  --main-light: #3a93b0;
  --accent-light: #7fc4d8;
  --text: #2d2d2d;
  --muted: #6a6f7a;
  --bg-light: #f8fcfd;
  --tint: #eaf4f7;
  --border: #e9ecf1;
  --line: #dde1e7;
  --radius: 16px;
  --shell: 1366px;
  --font-head: 'Red Hat Display', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

/* @media (min-width: 1366px) {
  :root {
    --shell: 1280px;
  }
}

@media (min-width: 1920px) {
  :root {
    --shell: 1600px;
  }
} */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fffeff;
  background-image: radial-gradient(ellipse 760px 720px at 95% 10%, rgba(96, 205, 255, 0.2), transparent 60%), radial-gradient(ellipse 620px 460px at 4% 15%, rgba(45, 122, 148, 0.25), transparent 58%), radial-gradient(ellipse 700px 600px at 60% 42%, rgba(58, 147, 176, 0.1), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--main);
  color: #fff;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}

.center {
  text-align: center;
}

.center img {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  transition: all .18s ease;
}

.btn-pill {
  border-radius: 999px;
  padding: 11px 20px;
  line-height: normal;
}

.btn-lg {
  font-size: 15px;
  padding: 10px 28px;
}

.btn .arrow {
  transition: transform .18s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--main);
  background-image: radial-gradient(circle 40px at 10% -10%,
  rgba(255, 255, 255, 0.1) 0%,
  rgba(255, 255, 255, 0.1) 99.9%, transparent 100%), 
  radial-gradient(circle 30px at 80% 120%,
  rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 99.9%, transparent 100%), 
  radial-gradient(circle 30px at 0% 0%, rgba(127, 196, 216, 0.9) 0%, transparent 100%), 
  radial-gradient(circle 50px at 100% 100%, rgba(58, 147, 176, 0.9) 0%, transparent 100%), 
  linear-gradient(25deg, var(--main-dark) 0%, var(--main) 100%);
  color: #fff;
}

/* 
.btn-primary:hover {
  background: var(--main-dark);
} */

.btn-outline {
  background: #fff;
  color: var(--main);
  font-weight: 700;
  border: 1px solid var(--main);
}

.btn-outline:hover {
  background: var(--main);
  border-color: var(--main);
  color: #fff;
}


.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 43, 53, .25);
}

.btn-dark:hover {
  background: var(--main);
}

/* ---------- Tags & chips ---------- */
.tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #ff9e2c;
  /* background: var(--main); */
  /* padding: 6px 13px; */
  /* border-radius: 10px; */
}

.accent {
  color: var(--main);
}

/* ---------- Topbar ---------- */
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.topbar-inner a {
  transition: color .18s ease;
  color: var(--muted);
  font-size: 10px;
}

.topbar-inner a:hover {
  color: var(--main);
}

/* ---------- Header ---------- */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eceef2;
  transition: 0.2s all ease;
}

.is-sticky .site-header .header-inner {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.2s ease;
}

.brand img {
  max-height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
}

.site-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 14.5px;
}

.site-nav a:hover {
  color: var(--main);
}

.caret {
  font-size: 9px;
  color: #9aa0ae;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions .btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 8px 15px;
}

.login-link {
  display: flex;
  padding: 8px;
  transition: 0.2s all ease;
  border-radius: 999px;
}

.login-link:hover {
  background: var(--tint);
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 7px 15px;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 999px;
  transition: 0.2s all ease;
}

.lang-pill:hover {
  background: var(--tint);
}

.lang-pill .flag {
  font-size: 16px;
  line-height: 1;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcf5c, #ff9f43);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 4.6;
  box-shadow: rgba(35, 31, 32, 0.45) 0px 30px 70px -28px;
  width: 90%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.photo-hint svg {
  width: 30px;
  height: 30px;
}

.photo-hint-light {
  color: #9aa0ae;
}

.hero-dashboard {
  position: absolute;
  top: 3%;
  right: -4%;
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  animation: none;
  z-index: 2;
}

.hero-dashboard img {
  width: 90%;
  display: block;
}

.hero-phone {
  position: absolute;
  width: 17%;
  border-radius: 18px;
  overflow: hidden;
  animation: none;
  z-index: 3;
}

.hero-phone img {
  width: 100%;
  display: block;
}

.hero-phone-support {
  top: 20%;
  box-shadow: none;
  right: -12%;
  animation-duration: 4.7s;
  animation-delay: -3.6s;
}

.hero-phone-support img {
  width: 80%;
}

.hero-phone-whatsapp {
  bottom: 4%;
  right: 2%;
  animation: float 5s ease-in-out infinite;
  animation-duration: 5.3s;
  animation-delay: -0.9s;
}

.badge {
  position: absolute;
  padding: 9px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(28, 37, 65, .16);
  animation: float 5s ease-in-out infinite;
}

.badge-confirmed {
  top: 50%;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  animation-duration: 4.6s;
  animation-delay: -1.2s;
}

.badge-tick {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #caf0f8;
  display: grid;
  place-items: center;
}

.badge-tick svg {
  width: 18px;
  height: 18px;
}

.badge-score {
  top: 16px;
  right: 14px;
  background: var(--text);
  color: #fff;
  padding: 8px 13px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(28, 37, 65, .2);
}

.score-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.score-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

.badge-serving {
  height: auto;
  top: 50px;
  left: 27%;
  background: var(--main);
  color: #fff;
  animation: none;
}

.serving-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
}

.serving-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.serving-sub {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}

.badge-nps {
  top: 24.5%;
  left: -5px;
  animation: none;
  z-index: 2;
}

.nps-label {
  font-size: 10px;
  letter-spacing: .12em;
  color: #9aa3a6;
  font-weight: 700;
}

.nps-value {
  font-size: 16px;
  font-weight: 800;
  color: #231F20;
  line-height: 1;
}

.nps-bar {
  margin-top: 6px;
  height: 4px;
  width: 74px;
  border-radius: 4px;
  background: #eef3f4;
  overflow: hidden;
}

.nps-bar-fill {
  height: 100%;
  width: 78%;
  background: #2d7a94;
  border-radius: 4px;
}

.badge-feedback {
  top: 15%;
  left: -50px;
  animation: none;
}

.fb-q {
  font-size: 9px;
  font-weight: 600;
  color: #9aa0ae;
  margin-bottom: 4px;
}

.fb-emojis {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Plan cards ---------- */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
  max-width: 900px;
}

.plan {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: 18px;
  padding: 24px 26px;
  cursor: pointer;
}

.plan-ic {
  width: 65px;
  height: 65px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
}

/* ---------- Plan cards: speech-bubble style ---------- */
#solution-models {
  padding: 0 0 78px;
}

.plan-bubble {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(28, 37, 65, .05);
  position: relative;
  margin-bottom: 18px;
  overflow: visible;
}

.plan-bubble::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -8px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0 0 0 5px;
  transform: rotate(45deg);
  z-index: -1;
}

.plan-bubble .plan-ic {
  background: var(--tint);
  color: var(--main);
}

.plan-bubble .plan-ic svg {
  width: 50px;
  height: 50px;
}

.plan-bubble .plan-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-bubble .plan-tag {
  color: var(--main);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.50px;
  margin-bottom: 5px;
}

.plan-bubble .plan-title {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 5px;
}

.plan-bubble .plan-desc {
  line-height: 1.5;
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}

.plan-bubble.is-active {
  background: var(--main);
  border-color: var(--main);
  box-shadow: 0 16px 34px rgba(45, 122, 148, .28);
}

.plan-bubble.is-active::after {
  background: var(--main);
  border-bottom-color: var(--main);
  border-right-color: var(--main);
}

.plan-bubble.is-active .plan-ic {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.plan-bubble.is-active .plan-tag {
  color: #fff;
}

.plan-bubble.is-active .plan-title {
  color: #fff;
}

.plan-bubble.is-active .plan-desc {
  color: rgba(255, 255, 255, .82);
}

#how-to-get-started .cap-panel img {
    width: 470px;
    max-width: 100%;
    margin-top: -28px;
}

#how-to-get-started .cap-panel img[src*="QB20-server-based-queue-system-queuebee"] {
    width: 500px;
}

.ai-assisted-features {
    color: #2d7a94;
}

#how-to-get-started .cap-check {
    color: var(--muted);
}

/* ---------- Sections ---------- */
.section {
  padding: 78px 0;
}

.big-head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 5px 0 20px;
}

.section-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 1100px;
  margin: 0 auto 30px;
}

/* ---------- Pills (tabs) ---------- */
.pill-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 5px;
}

.pill-row-center {
  justify-content: center;
  margin-bottom: 0;
}

.pill {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  /* background: rgba(255, 255, 255, .05); */
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: all .18s ease;
}

.pill:hover {
  color: #ff9e2c;
}

.pill.is-active {
  color: #ff9e2c;
  font-weight: 600;
}

@media (max-width: 700px) {
  #capTabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--main) #eaf4f7;
    -webkit-overflow-scrolling: touch;
  }

  #capTabs .pill {
    flex: 0 0 auto;
  }

  #capTabs::-webkit-scrollbar {
    height: 6px;
  }

  #capTabs::-webkit-scrollbar-track {
    background: #eaf4f7;
  }

  #capTabs::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 999px;
  }
}

/* ---------- AI panel ---------- */
.ai-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  align-items: start;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--main);
  display: grid;
  place-items: center;
}

.chat-avatar svg {
  width: 18px;
  height: 18px;
}

.chat-bubble {
  background: var(--main);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #fff;
  align-self: flex-start;
  max-width: 80%;
}

.chat-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 14px;
}

.chat-input span:first-child {
  font-size: 13px;
  color: var(--text);
  flex: 1;
}

.chat-send {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--main);
  display: grid;
  place-items: center;
}

.chat-send svg {
  width: 15px;
  height: 15px;
}

.ai-feature {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
}

.ai-feat-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--tint);
  color: var(--main);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
}

.ai-feat-ic svg {
  width: 16px;
  height: 16px;
}

.ai-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
  /* color: #fff; */
  color: var(--text);
}

.ai-feature p {
  font-size: 13.5px;
  line-height: 1.55;
  /* color: rgba(255, 255, 255, .6); */
  color: var(--muted);
  margin: 0;
}

.ai-content .btn {
  margin-top: 6px;
}

/* ---------- Journey ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(28, 37, 65, .16);
  aspect-ratio: 16 / 10;
  background: #0c1116;
}

.video-thumb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1d2733, #10161d);
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 0, 0, .9);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.video-play svg {
  width: 24px;
  height: 24px;
}

.video-title {
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
  padding-right: 16px;
}

.journey-copy h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 5px 0 20px;
}

.journey-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip-outline {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Solutions cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.s-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  background: #ffff;
}

.s-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--tint);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--main);
}

.s-ic svg {
  width: 22px;
  height: 22px;
}

.s-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 9px;
}

.s-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ---------- Capabilities ---------- */
.cap-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: start;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cap-panel img {
  height: auto;
  max-width: 400px;
}

.cap-copy h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 14px;
}

.cap-copy>p {
  font-size: 16px;
  line-height: 1.65;
  /* color: rgba(255, 255, 255, .62); */
  color: var(--muted);
  margin: 0 0 22px;
}

.cap-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 16px;
}
p#capCheck1Desc, p#capCheck2Desc {
  color: var(--muted);
  padding-bottom: 20px;
}

.check-ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--main);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
}

.check-ic svg {
  width: 13px;
  height: 13px;
}

#capCheck1Title,
#capCheck2Title {
  margin: 0;
}

/* ---------------- Features Split Layout ---------------- */
.features-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
  justify-items: center;
}

.features-accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--line-2);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 20px 12px 0;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.accordion-header .f-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--main);
  margin-right: 20px;
  min-width: 32px;
}

.accordion-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  flex-grow: 1;
}

.accordion-header .arrow {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-header .arrow::before,
.accordion-header .arrow::after {
  content: '';
  position: absolute;
  background-color: var(--text);
  transition: background-color 0.2s ease;
}

.accordion-header .arrow::before {
  width: 10px;
  height: 2px;
  top: 8px;
  left: 2px;
  transform: rotate(45deg);
}

.accordion-header .arrow::after {
  width: 10px;
  height: 2px;
  top: 8px;
  left: 8px;
  transform: rotate(-45deg);
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-header .arrow::before,
.accordion-item.active .accordion-header .arrow::after {
  background-color: var(--main);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.accordion-content p {
  margin: 0;
  padding: 0 0 16px 52px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: left;

}

.features-media img {
  max-width: 85%;
}


/* ---------- Solution Models ---------- */
.chat-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#modelImage {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
}

#modelTitle {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 14px;
}

#modelDesc {
  font-size: 16px;
  line-height: 1.65;
  /* color: rgba(255, 255, 255, .62); */
  color: var(--muted);
  margin: 0 0 22px;
}

.model-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  margin-bottom: 24px;
}

/* ---------- Industries ---------- */
.ind-carousel-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.carousel-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: calc(50% - 50px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--main);
  color: var(--main);
}

.carousel-btn.prev {
  left: 4px;
}

.carousel-btn.next {
  right: 4px;
}

.ind-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  text-align: left;
  margin-bottom: 40px;
  scrollbar-width: none;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 4px;
  padding-right: 4px;
  scroll-padding-left: 4px;
}

.ind-grid::-webkit-scrollbar {
  display: none;
}

.ind-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 5px);
  min-width: 310px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.ind-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ind-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.ind-tag {
    left: 12px;
    color: var(--main);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 0;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.05em;
}

#who-we-help .ind-body .ind-tag {
  position: static;
  display: inline-block;
}

.ind-body {
  padding: 20px 22px;
}

.ind-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin: 0 0 8px;
}

.ind-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 14px;
}

.link-more {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--main);
}



/* ---------- Integrations ---------- */
.integrations-section {
  padding: 72px 0;
}

.int-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
  justify-items: center;
}

/* ---------- CTA ---------- */

.cta-card {
  background: var(--main);
  background-image:
    radial-gradient(circle 400px at 10% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 99.9%, transparent 100%),
    radial-gradient(circle 500px at 80% 120%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 99.9%, transparent 100%),
    radial-gradient(circle 300px at 0% 0%, rgba(127, 196, 216, 0.9) 0%, transparent 100%),
    radial-gradient(circle 500px at 100% 100%, rgba(58, 147, 176, 0.9) 0%, transparent 100%),
    linear-gradient(25deg, var(--main-dark) 0%, var(--main) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(37, 99, 119, 0.15);
}

.cta-card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 auto 18px;
  max-width: 760px;
  color: #fff;
}

.cta-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 40px;
  max-width: 820px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  background: #fff;
  color: var(--main);
  border: 1px solid #fff;
}

.btn-white:hover {
  background: #f4f4f4;
  color: var(--main-dark);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}


/* Client */
.client-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.client-list img:not(:first-child) {
  max-height: 60px;
}

/* ---------- ISO ---------- */
.iso-section {
  padding: 78px 0 156px;
}

.iso-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.iso-badges {
  display: flex;
}

.iso-badges img {
  height: 180px;
  width: auto;
}

.iso-text {
  font-family: var(--font-head);
}

.iso-text h3 {
  font-size: 50px;
  font-weight: 800;
  /* color: #16306b; */
  color: #1a478c;
  letter-spacing: -0.01em;
  line-height: 33px;
  margin: 0px;
}

.iso-we,
.iso-text .amp,
.iso-cert {
  color: var(--muted);
  font-weight: 500;
  font-size: 26px;
}

.iso-tags {
  font-size: 18px;
  color: var(--muted);
}

@media (max-width: 460px) {
  .iso-badges img {
    height: 125px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #eaf4f7;
  padding: 50px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr 1fr 1.5fr;
  gap: 32px;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-badge img {
  max-width: 150px;
}

.app-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.qr {
  flex-shrink: 0;
  width: 100px;
}

.fcol h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
}

.fcol a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
}

.fcol a:hover {
  color: #ff9e2c;
}

.fcol-twin {
  display: flex;
  gap: 30px;
}

.foot-bottom {
  border-top: 1px solid #dddddd;
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.foot-links {
  display: flex;
  gap: 5px;
}

.foot-links a:hover {
  color: #ff9e2c;
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 65px 0 auto;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px 26px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 49;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  font-weight: 700;
  font-size: 17px;
  padding: 12px 8px;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: #f4f5fa;
  color: var(--main);
}

.mobile-nav .btn {
  margin-top: 10px;
  justify-content: center;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 36px;
  }

  .features-split-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features-split-layout > .features-media {
    display: none;
  }

  .features-accordion .accordion-content .features-media {
    width: calc(100% - 52px);
    margin: 0 0 12px 52px;
  }

  .features-accordion .accordion-content .features-media img {
    width: 100%;
    max-width: 440px;
    margin: 0;
  }

  .hero-visual {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding-left: 40px;
  }

  .hero-photo {
    width: 100%;
  }

  .hero-dashboard {
    right: 0;
    top: -40px;
  }

  .badge-confirmed,
  .badge-feedback {
    left: 0;
  }

  .badge-nps {
    left: 0;
     top: -8px;
  }
  .iso-text {
    text-align: center;
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .journey-grid,
  .int-grid,
  .ai-panel,
  .cap-panel {
    grid-template-columns: 1fr;
  }

  .ai-panel,
  .cap-panel {
    gap: 28px;
    padding: 0;
  }

  .card-grid,
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .plan-cards {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .login-link,
  .lang-pill,
  .avatar,
  .header-actions .btn {
    display: none;
  }

  .card-grid,
  .ind-grid,
  .int-logos,
  .ind-chips,
  .cust-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .big-head,
  .cta-section h2,
  #modelTitle,
  .compare-head h2 {
    font-size: 28px !important;
  }

  .section {
    padding: 56px 0;
  }

  .hero-visual {
    padding-left: 24px;
  }

  .badge {
    padding: 7px 9px;
  }

  .badge-serving {
    top: 28px;
  }

  .badge-feedback {
    top: 11%;
  }

  .hero-dashboard {
    width: 43%;
  }

  .hero-phone {
    width: 20%;
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .ind-card {
    min-width: 215px;
  }
}

@media (max-width: 375px) {
  .ind-card {
    min-width: 275px;
  }
}

@media (max-width: 460px) {
  .hero-copy {
    margin-bottom: 40px;
  }
  .cap-panel img {
    max-width: 100%;
    margin-top: 30px;
  }
  #how-to-get-started .cap-panel img {
    width: 100%;
    margin-top: 0;
  }
  .card-grid,
  .ind-grid,
  .cust-wall {
    grid-template-columns: 1fr;
  }

  .int-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-chips {
    grid-template-columns: repeat(3, 1fr);
  }

  .foot-brand p {
    max-width: unset;
    margin: 10px 0 0;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .accordion-header h3 {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 36px 0 24px;
  }

  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .foot-grid .fcol {
    min-width: 0;
  }

  .fcol-twin {
    flex-direction: column;
    gap: 0;
  }

  .fcol a {
    overflow-wrap: anywhere;
  }

  .foot-grid > .fcol:last-child {
    grid-column: 1 / -1;
  }

  .foot-bottom {
    align-items: center;
    text-align: center;
  }
}

/* ---------------- CTA FAB ---------------- */
.cta-fab {
  position: fixed;
  right: 20px;
  bottom: 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 50;
}

.cta-fab a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  color: #fff;
}

.cta-fab svg {
  width: 26px;
  height: 26px;
}

.fab-wa {
  background: #25d366;
}

.fab-mail {
  background: #f5a623;
}

.fab-up {
  background: #2f6df0;
}

/* ============ LIVE QUEUE STATUS WIDGET ============ */
.queue-status-widget {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
  text-align: left;
}

.widget-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -.02em;
}

.widget-search-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.widget-search-input {
  flex-grow: 1;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.widget-search-input:focus {
  border-color: var(--main);
}

.widget-clear-btn {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.widget-clear-btn:hover {
  border-color: var(--main);
}

.widget-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.widget-last-update {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 14px;
}

.widget-filters::-webkit-scrollbar {
  display: none;
}

.filter-tag {
  border: 1px solid transparent;
  color: #4b5563;
  padding: 5px 20px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-tag.active {
  background: var(--button-hover);
  color: var(--text);
  border-color: var(--main);
}

.widget-list {
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
  margin-bottom: 20px;
}

.widget-list::-webkit-scrollbar {
  width: 5px;
}

.widget-list::-webkit-scrollbar-track {
  background: transparent;
}

.widget-list::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 99px;
}

.widget-card {
  background: #ffffff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.widget-card:hover {
  border-color: var(--main);
  box-shadow: 0 4px 12px rgba(79, 31, 216, 0.04);
  cursor: pointer;
}

.card-info h5 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.card-info .location-text {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.card-stats {
  display: flex;
  gap: 6px;
}

.card-stat-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--main);
  background: #f1eeff;
  padding: 4px 10px;
  border-radius: 99px;
}

.card-status-badge {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  min-width: 60px;
}

.card-status-badge.open {
  background: #def7ec;
  color: #03543f;
}

.card-status-badge.busy {
  background: #fde8e8;
  color: #9b1c1c;
}

.card-status-badge.live {
  background: #e1effe;
  color: #1e429f;
}

.widget-footer-btn {
  width: 100%;
  height: 48px;
  background: var(--main);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.widget-footer-btn:hover {
  background: var(--button-hover);
  color: var(--text);
}

/* ============ FLOATING WIDGET DRAWER ============ */
.sidebar-drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
  overflow: hidden;
}

.sidebar-drawer.open {
  right: 0;
}

/* Branch detail drawer — layered on top of the main "Live Queue Status" drawer (higher
   z-index, same slide-in mechanics and width as .sidebar-drawer) when a card is clicked.
   Overlay kept transparent (no blur/dim) — it's only there to catch a click-outside-to-close,
   not to haze the drawer underneath, which is what .sidebar-drawer-overlay's blur would do
   here since it now sits on top of that drawer instead of the page. */
.detail-drawer-overlay {
  z-index: 1002;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.detail-drawer {
  z-index: 1003;
}

.detail-drawer-icon {
  display: flex;
  justify-content: center;
  padding-top: 4px;
  padding-bottom: 16px;
}

.detail-drawer-icon img {
  width: 150px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line-2);
}

.detail-drawer-row {
  padding: 10px 0;
}

.detail-drawer-row .detail-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 4px;
}

.detail-drawer-row .detail-value {
  font-size: 14px;
  color: var(--text);
  white-space: pre-line;
}

.detail-drawer-name {
  font-size: 20px;
  font-weight: 700;
}

.detail-drawer-opshour-item {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 4px 0;
}

.detail-drawer-opshour-item .day {
  font-weight: 400;
  color: var(--text);
}

.detail-drawer-opshour-item .hours {
  color: var(--muted);
}

.detail-drawer-opshour-item.is-today .day,
.detail-drawer-opshour-item.is-today .hours {
  font-weight: 700;
  color: var(--text);
}

/* Matches b2c's shared drawer header (b2c/web/.../shared/components/drawer) — full-width
   border-bottom via negative margin to escape .sidebar-drawer's own 24px padding, so it spans
   edge-to-edge the way b2c's does (there the header has its own padding instead of inheriting
   the panel's). */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.drawer-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.drawer-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.2s;
}

.drawer-close-btn:hover {
  color: var(--text);
}

.floating-status-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2d2d2d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  box-sizing: border-box;
  text-align: left;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-status-btn:hover {
  transform: translateY(-2px);
  background: #231448;
}

.floating-marquee-container {
  flex: 1;
  height: 34px;
  overflow: hidden;
  position: relative;
}

.floating-marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-marquee-item {
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.floating-marquee-item.active {
  opacity: 1;
  transform: translateY(0);
}

.floating-marquee-item.exit {
  opacity: 0;
  transform: translateY(-10px);
}

.floating-marquee-item h5 {
  margin: 0;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-marquee-item span {
  font-size: 10px;
  color: #b0b6c4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Sidebar Drawer Specific Layout Adjustments */
.sidebar-drawer .queue-status-widget {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: calc(100% - 60px);
  overflow: hidden;
}

.drawer-body {
  padding: 15px;
}

.sidebar-drawer .widget-list {
  max-height: none;
  flex: 1;
  overflow-y: auto;
}

/* hero section */
.pricing-hero {
  padding: 80px 0 40px;
}

.pricing-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-family: var(--font-head);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.65;
}



/* billing toggle */
.billing-toggle-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  position: relative;
}

.billing-toggle button {
  background: none;
  border: none;
  padding: 6px 15px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: var(--text);
  transition: color .2s ease;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.billing-toggle button.active {
  color: #fff;
}

.toggle-badge {
  background: var(--tint);
  color: #ff0000;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
}

.billing-toggle .slider-bg {
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: calc(50% - 6px);
  background: var(--main);
  background-image: radial-gradient(circle 50px at 10% -10%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 99.9%, transparent 100%), radial-gradient(circle 40px at 80% 120%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 99.9%, transparent 100%), radial-gradient(circle 10px at 0% 0%, rgba(127, 196, 216, 0.9) 0%, transparent 100%), radial-gradient(circle 500px at 100% 100%, rgba(58, 147, 176, 0.9) 0%, transparent 100%), linear-gradient(25deg, var(--main-dark) 0%, var(--main) 100%);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 1;
}

.billing-toggle.is-annual .slider-bg {
  transform: translateX(100%);
}

/* plans section */
.plans-section {
  padding: 0 0 30px;
}

/* plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(22, 48, 107, 0.12);
  border-color: var(--main);
}

.plan-card.featured {
  border-color: var(--main);
  box-shadow: 0 24px 60px rgba(65, 84, 241, 0.18);
}

.plan-card.featured:hover {
  box-shadow: 0 30px 70px rgba(65, 84, 241, 0.28);
}

.plan-card.featured .plan-features li {
    color: var(--text);
}

.plan-card.featured .plan-features li::before{
  color: #fff;
  width: 15px;
  height: 15px;
  background-color: var(--main-light);
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main);
  color: #fff;
  font-weight: 800;
  font-size: 11.5px;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.plan-card h3 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 0;
  text-align: left;
}

.plan-desc {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 5px;
  text-align: left;
}

.plan-card.enterprise {
    background: var(--main);
    background-image:
    radial-gradient(circle 100px at 10% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 99.9%, transparent 100%),
    radial-gradient(circle 200px at 80% 120%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 99.9%, transparent 100%),
    radial-gradient(circle 100px at 0% 0%, rgba(127, 196, 216, 0.9) 0%, transparent 100%),
    radial-gradient(circle 200px at 100% 100%, rgba(58, 147, 176, 0.9) 0%, transparent 100%),
    linear-gradient(25deg, var(--main-dark) 0%, var(--main) 100%);
    color: #fff;
}

.plan-card.enterprise .plan-features li,
.plan-card.enterprise .plan-desc {
    color: #fff;
}

.price-block {
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  line-height: normal;
  text-align: left;
}

.price-block .currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}

.price-block .amount {
  font-size: 35px;
  font-weight: 700;
  color: var(--text);
}

.price-block .period {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}

.plan-sub {
  font-size: 12px;
  color: var(--muted);
  min-height: 18px;
  margin: -9px 0 10px;
  text-align: left;
}

.plan-cta {
  border-radius: 16px;
  padding: 6px 20px;
  font-weight: 700;
  display: block;
}

.plan-features {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 15px;
  text-align: left;
}

.plan-features li:last-child {
  margin-bottom: 0;
}

.plan-features li::before {
  content: "\2713";
  flex: none;
  font-weight: 800;
  margin-top: 2px;
  color: var(--main);
  width: 15px;
  height: 15px;
  background-color: var(--tint);
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  font-size: 8px;
}

/* compare section */
.compare-section {
  padding: 80px 0;
}

.compare {
  margin-top: 60px;
}

.compare-head {
  text-align: center;
  margin-bottom: 40px;
}

.compare-head h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text);
}

.compare-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.66;
  margin: 0 0 16px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  padding: 15px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  background: #fff;
}

.compare-table th.plan-col {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.compare-table th.plan-col.feat {
  color: var(--main);
}

.compare-table th small {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.compare-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  color: var(--text);
  text-align: center;
}

.compare-table td:last-child {
  border-right: none;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.compare-table tr.grp td {
  background: #eef4f8;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-align: left;
  padding: 10px 18px;
}

.compare-table .tick {
  color: var(--green);
  font-weight: 800;
}

.compare-table .cross {
  color: #c9cad4;
  font-weight: 700;
}

.compare-table .cell-text {
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
}

.compare-sticky-head {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.compare-sticky-head.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feat-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #adb1bd;
  color: #adb1bd;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
  cursor: default;
  margin-left: 7px;
  vertical-align: middle;
  flex-shrink: 0;
  user-select: none;
}

#feat-tooltip {
  position: fixed;
  background: #1a1f36;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 6px;
  width: 220px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 9999;
  text-align: left;
}

#feat-tooltip.visible {
  opacity: 1;
}

#feat-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border: 5px solid transparent;
  border-top: 6px solid #1a1f36;
}

/* faq section */
.faq-section {
  padding: 78px 0;
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.faq-head h2 {
  font-family: var(--font-head);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

.faq-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.faq-grid-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.faq-grid-accordion .accordion-item {
  border-bottom: 1px solid var(--line-2);
  border: 1px solid var(--line);
  margin: 15px 10px;
  padding: 0 20px;
  border-radius: 15px;
}

.faq-grid-accordion .accordion-header {
  padding: 20px 0;
}

.faq-grid-accordion .accordion-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.faq-grid-accordion .accordion-content p {
  padding: 0 0 20px 0;
  font-size: 14.5px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .faq-grid-accordion {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.cta-section {
  padding: 78px 0;
}

/* mobile */
@media (max-width:1080px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1240px) {
  .pricing-hero {
    padding: 60px 0 80px;
  }

  .pricing-hero h1 {
    font-size: 46px;
  }

  .plan-card {
    padding: 32px 24px;
  }

  .site-nav,
  .login-link,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    gap: 18px;
  }
}

@media (max-width:600px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .pricing-hero h1 {
    font-size: 38px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-header .arrow {
  position: relative;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-header .arrow::before,
.accordion-header .arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--text);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.accordion-header .arrow::before {
  width: 14px;
  height: 2px;
}

.accordion-header .arrow::after {
  width: 2px;
  height: 14px;
}

.icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  flex-wrap: nowrap;
  color: var(--muted);
  justify-content: center;
  line-height: 14px;
}

.icon-row img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
