:root {
  --blue: #1d40b6;
  --cyan: #3dbcd1;
  --cyan-soft: #d7eef6;
  --text: #333;
  --page: 2000px;
  --canvas: min(100vw, var(--page));
  --gutter: max(0px, calc((100vw - var(--page)) / 2));
  --inset: clamp(16px, calc(var(--canvas) * 0.0827), 149px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --device-w: min(calc(var(--canvas) * 0.2172), 391px);
  --device-h: calc(var(--device-w) * 639 / 391);
  --device-overlap: calc(var(--device-h) * 0.145);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  margin: 0 auto;
  width: 100%;
  max-width: var(--page);
  color: var(--text);
  font-family: Nunito, sans-serif;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--inset);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; line-height: 1; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s, filter .25s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(29, 64, 182, .22);
}
.btn:active { transform: translateY(0); }
.btn-cyan:hover { filter: brightness(1.06); }
.btn-blue:hover { background: #17349a; }
.btn-cyan {
  background: var(--cyan); color: #fff; border-color: var(--cyan);
  min-width: 173px; height: 48px; font-size: 18px;
}
.btn-blue {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.btn-ghost {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

/* ===== Hero (PSD 1800 × 1016 photo) ===== */
.hero {
  position: relative;
  z-index: 4;
  background: #111;
  overflow: visible;
}
.hero-stage {
  position: relative;
  width: 100%;
  min-height: calc(var(--canvas) * 1016 / 1800);
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .18) 0%,
    rgba(0, 0, 0, .28) 28%,
    rgba(0, 0, 0, .12) 62%,
    rgba(0, 0, 0, .05) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 5.8%, 72px) 16px calc(var(--device-h) - var(--device-overlap) + 24px);
  text-align: center;
  color: #fff;
}
.hero-content > * { animation: fadeUp .75s var(--ease) both; }
.hero-content h1 { animation-delay: .12s; }
.hero-lead { animation-delay: .22s; }
.hero-actions { animation-delay: .32s; }
.eyebrow {
  display: inline-block;
  margin: 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  font-size: clamp(11px, .9vw, 16px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 14px auto 12px;
  font-family: Fraunces, Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(26px, 2.78vw, 50px);
  line-height: 1.2;
  color: #fff;
}
.hero-lead {
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: clamp(13px, 1.33vw, 24px);
  line-height: 1.4;
  font-weight: 400;
}
.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-actions .btn {
  width: auto;
  min-width: min(280px, 100%);
  padding-inline: 22px;
  height: clamp(44px, 3.33vw, 60px);
  font-size: clamp(13px, 1vw, 18px);
  white-space: nowrap;
}

.hero-devices {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: calc(var(--device-overlap) * -1);
  width: var(--device-w);
  transform: translateX(-50%);
  animation: deviceIn .9s var(--ease) .25s both, deviceFloat 4.5s ease-in-out 1.3s infinite;
  pointer-events: none;
}
.hero-phone { width: 100%; height: auto; }
.notice {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  padding: 8px 10px 8px 12px;
  animation: noticePop .5s var(--ease) both;
}
.notice.n1 { animation-delay: .75s; }
.notice.n2 { animation-delay: .95s; }
.notice.n3 { animation-delay: 1.15s; }
.notice p {
  margin: 0;
  flex: 1;
  font-size: clamp(10px, .95vw, 17px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.notice .side { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.notice.n1 { left: -4.8%; top: 10.3%; width: 88%; }
.notice.n2 { left: -2.5%; top: 23.2%; width: 83%; }
.notice.n3 { left: 0; top: 34.4%; width: 78%; }

/* ===== Stats ===== */
.stats {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: calc(var(--device-overlap) + clamp(20px, 3vw, 50px)) 0 clamp(24px, 2.4vw, 48px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(11px, 4.33vw, 50px);
  align-items: start;
}
.stat {
  transition: transform .35s var(--ease);
  position: relative;
  min-width: 0;
}
.stat.stat-1 { text-align: right; }
.stat.stat-2 { text-align: right; }
.stat.stat-3 { text-align: left; }
.stat.stat-4 { text-align: left; }
.stat:hover { transform: translateY(-6px); }

.stat-icon {
  width: clamp(56px, 4.3vw, 80px);
  height: clamp(56px, 4.3vw, 80px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 64, 182, .14);
  display: grid; place-items: center;
  transition: transform .4s var(--ease), box-shadow .4s;
  position: absolute;
  top: -40px;
  left: 0;
}
.stat.stat-3 .stat-icon,.stat.stat-4 .stat-icon {
  left: auto;
  right: 0;
}
.stat:hover .stat-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(29, 64, 182, .22);
}
.stat-icon img { width: 50%; height: 50%; object-fit: contain; }
.stat-num {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 3vw, 70px);
  color: var(--blue); line-height: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.stat-num img { width: 34px; height: 32px; }
.stat-label {
  margin: 8px 0 4px;
  color: var(--cyan);
  font-size: clamp(16px, 1.22vw, 22px);
  font-weight: 700;
}
.stat-desc {font-size: clamp(14px, 0.9vw, 16px); }

/* ===== Banner photo (PSD Rectangle 8: 1503×503) ===== */
.banner-section { padding: 12px 0 36px; }
.banner-frame {
  width: 100%;
  aspect-ratio: 1503 / 503;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 20px;
}
.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 1.1s var(--ease);
}
.banner-frame:hover img { transform: scale(1.04); }

/* ===== 3 tầng heading ===== */
.layers-intro {
  padding: 0px 0 8px;
  text-align: center;
}
.layers-title {
  margin: 0 auto 28px;
  max-width: 1100px;
  font-family: Fraunces, Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1;
}
.layers-title .row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .18em;
  flex-wrap: wrap;
}
.layers-title .row.row-reverse-2{
  align-items: start;
}
.row-item-reverse{
  margin-top: 25px;
}
.layers-title .row.r3{
  align-items: start;
}
.rowmdText{
  font-family: Nunito, sans-serif;
  font-weight: 500;
}
.xl {
  font-size: clamp(42px, 5.5vw, 140px);
  letter-spacing: -0.03em;
}
.md {
  font-size: clamp(24px, 3.33vw, 60px);
  color: #111;
}
.cyan { color: var(--cyan); }
.blue { color: var(--blue); }

.quote {
  position: relative;
  max-width: 860px;
  margin: 0 auto 0px;
  padding: 0em 3.5em 0em;
  font-size: clamp(16px, 1.67vw, 28px);
  color: var(--text);
  z-index: 5;
  line-height: 1.2;
}
.quote::before,
.quote::after {
  position: absolute;
  font-family: Fraunces, serif;
  color: var(--blue);
  font-size: clamp(40px, 5.5vw, 100px);
  line-height: 1;
}
.quote::before { content: "“"; left: 0; top: 0; }
.quote::after { content: "”"; right: 0; top: 0; }

/* ===== Feature 1 ===== */
.feature { position: relative;}
.feature-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-bg-quote{
  z-index: 3;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
 
}
.feature--bp { background: #eaeaea;padding: 130px 0px 0px 50px;margin-top: -100px; }
.feature--bp .feature-bg {
  width: 66.666%;
  right: auto;
  left: 0;
  object-position: left center;
}
.feature--bp::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 66.666%;
  background: #1d40b6;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}

.bp-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 64vw, 1000px);
  padding: 100px 0px 40px 0px;
  overflow: hidden;
}
.bp-card {
  width: min(1324px, 100%);
  background: rgba(255, 255, 255, .94);
  border-radius: 40px;
  box-shadow: 0 18px 50px rgba(29, 64, 182, .1);
  padding: clamp(24px, 3vw, 48px) clamp(20px, 3vw, 56px) 60px;
  max-width: 74%;
  position: relative;
  overflow: visible;
}
.feature-bg-watch{
  position: absolute;
  top: -48px;
  width: clamp(140px, 13vw, 215px);
  z-index: 4;
  pointer-events: none;
  right: 8%;
  animation: duchv-zoom-in-out 3s ease-in-out infinite;
}
.feature-bg-chart{
  position: absolute;
  bottom: -36px;
  right: 12%;
  width: clamp(110px, 10vw, 169px);
  z-index: 4;
  pointer-events: none;
  animation: duchv-zoom-in-out 3s ease-in-out infinite;
}
.bp-card h2 {
  margin: 0 0 14px;
  max-width: 680px;
  color: var(--blue);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 2.22vw, 40px);
  line-height: 1.25;
}
.bp-card .lede {
  max-width: 680px;
  margin: 0 0 28px;
  padding-left: 0px;
}
.bp-card .lede.quote::before{
  display: none;
}
.bp-card .lede.quote::after{
  top: 2px
}
.cards-2x2 {
  --card-w: min(400px, calc(var(--canvas) * 365 / 1800));
  display: grid;
  grid-template-columns: repeat(2, var(--card-w));
  gap: 16px;
  max-width: 700px;
  align-items: stretch;
}
.cards-2x2 .f-card,
.cards-stagger .f-card,
.cards-3 .f-card {
  --title-size: min(18px, calc(var(--card-w, 280px) * 21 / 335));
  --body-size: min(14px, calc(var(--card-w, 280px) * 18 / 335));
  --card-motion: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(var(--card-w, 280px) * 176 / 335);
  min-height: 0;
  overflow: hidden;
  padding: calc(var(--card-w, 280px) * 18 / 335)
    calc(var(--card-w, 280px) * 76 / 335)
    calc(var(--card-w, 280px) * 18 / 335)
    calc(var(--card-w, 280px) * 22 / 335);
  transition:
    background var(--card-motion),
    color var(--card-motion),
    box-shadow var(--card-motion);
  cursor: pointer;
}
.cards-2x2 .f-card-copy,
.cards-stagger .f-card-copy,
.cards-3 .f-card-copy {
  margin-top: auto;
  width: 100%;
  padding-right: 10px;
  flex: 0 0 auto;
}
.cards-3 .f-card-copy{
  padding-right: 0px;
}
.cards-2x2 .f-card h3,
.cards-stagger .f-card h3,
.cards-3 .f-card h3 {
  margin: 0;
  font-size: var(--title-size);
  font-weight: 800;
  line-height: 1.25;
  max-height: calc(1.25em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: color var(--card-motion);
}
.cards-2x2 .f-card-desc,
.cards-stagger .f-card-desc,
.cards-3 .f-card-desc {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows var(--card-motion),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}
.cards-2x2 .f-card-desc > p,
.cards-stagger .f-card-desc > p,
.cards-3 .f-card-desc > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding-top: 0.45em;
  font-size: var(--body-size);
  line-height: 1.3;
  max-height: calc(0.45em + 1.3em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  transform: translateY(8px);
  transition:
    color var(--card-motion),
    transform var(--card-motion);
}
.cards-2x2 .f-card .ico,
.cards-stagger .f-card .ico,
.cards-3 .f-card .ico {
  top: calc(var(--card-w, 280px) * 18 / 335);
  right: calc(var(--card-w, 280px) * 16 / 335);
  transition: background var(--card-motion);
}
.cards-2x2 .f-card .ico img,
.cards-stagger .f-card .ico img,
.cards-3 .f-card .ico img {
  transition: filter var(--card-motion);
}
.cards-2x2 .f-card:hover,
.cards-stagger .f-card:hover,
.cards-3 .f-card:hover {
  background: var(--cyan);
  color: #fff;
}
.cards-2x2 .f-card:hover .f-card-desc,
.cards-stagger .f-card:hover .f-card-desc,
.cards-3 .f-card:hover .f-card-desc {
  grid-template-rows: 1fr;
  opacity: 1;
}
.cards-2x2 .f-card:hover .f-card-desc > p,
.cards-stagger .f-card:hover .f-card-desc > p,
.cards-3 .f-card:hover .f-card-desc > p {
  transform: translateY(0);
}
.cards-2x2 .f-card:hover .ico,
.cards-stagger .f-card:hover .ico,
.cards-3 .f-card:hover .ico {
  background: #fff;
}
.cards-2x2 .f-card:hover .ico img,
.cards-stagger .f-card:hover .ico img,
.cards-3 .f-card:hover .ico img {
  filter: url(#f-card-icon-cyan);
}
.cards-stagger .f-card .ico,
.cards-3 .f-card .ico {
  background: #fff;
}
.cards-stagger .f-card .ico img,
.cards-3 .f-card .ico img {
  filter: none;
}
.quote--safe{
  padding-right: 0px;
  padding-left: 50px;
}
.quote--safe::after {
  display: none;
}
.f-card {
  position: relative;
  min-height: 172px;
  padding: 22px 78px 18px 22px;
  border-radius: 18px;
  background: var(--cyan-soft);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.f-card:hover {
  box-shadow: 0 16px 32px rgba(29, 64, 182, .14);
}
.f-card h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
  font-size: 18px;
}
.f-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.3;
}
.f-card .ico {
  position: absolute; top: 18px; right: 16px;
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--blue);
  display: grid; place-items: center;
}
.f-card .ico img {
  width: 28px; height: 28px; object-fit: contain;
  filter: brightness(12);
}
.f-card.no-icon {
  padding-right: 22px;
}
.f-card.is-accent { background: var(--cyan); color: #fff; }
.f-card.is-accent .ico { background: #fff; }
.f-card.is-accent .ico img { filter: none; }

.bp-devices {
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(58%, 920px);
  pointer-events: none;
  transform: translateY(-50%);
  
}

/* ===== Feature 2 ===== */
.feature--safe {
  background: #fff;
  overflow: visible;
  z-index: 2;
}
.feature--safe .feature-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 33.333%;
  height: 100%;
  left: auto;
  right: 0;
  opacity: 1;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}
.feature--safe::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 33.333%;
  background: #1d40b6;
  opacity: .45;
  pointer-events: none;
  z-index: 1;
}
.safe-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  padding-bottom: 0;
  overflow: visible;
}
.camera {
  width: min(280px, 55%);
  z-index: 1;
  position: absolute;
  top: -5%;
  left: 0;
}
.safe-copy-inner {
    position: relative;
    z-index: 2;
    width: 53.667%;
    box-sizing: border-box;
    padding: 60px var(--inset) 8px;
    left: 13%;
}
.safe-copy-inner h2 {
  margin: 0 0 12px;
  max-width: none;
  color: var(--blue);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 2.22vw, 40px);
  line-height: 1.25;
}
.device-pair {
  --phone-w: min(340px, calc(var(--canvas) * 340 / 1800));
  --watch-w: calc(var(--phone-w) * 196 / 359);
  --watch-out: calc(var(--watch-w) * 0.42);
  position: relative;
  display: block;
  width: calc(var(--phone-w) + var(--watch-out));
  margin-top: 8px;
  z-index: 2;
}
.device-pair .phone {
  width: var(--phone-w);
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--phone-w) * 726 / 359 * -0.25);
}
.device-pair .watch {
  position: absolute;
  z-index: 2;
  width: var(--watch-w);
  margin: 0;
  right: 0;
  bottom: 0;
  transform: translate(-10%, 60%);
}

.cards-stagger {
  --card-w: min(335px, calc(var(--canvas) * 335 / 1800));
  --card-gap: min(16px, calc(var(--canvas) * 16 / 1800));
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, var(--card-w));
  grid-template-rows: auto auto auto;
  gap: var(--card-gap);
  padding-bottom: 90px;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
}
.cards-stagger .f-card {
  width: var(--card-w);
  max-width: 100%;
}
.cards-stagger .c1 { grid-column: 1; grid-row: 2; }
.cards-stagger .c2 { grid-column: 1; grid-row: 3; }
.cards-stagger .c3 { grid-column: 2; grid-row: 2; }
.cards-stagger .c4 { grid-column: 2; grid-row: 3; }
.cards-stagger .c5 { grid-column: 3; grid-row: 1; }
.cards-stagger .c6 { grid-column: 3; grid-row: 2; }
.cards-stagger .c7 { grid-column: 3; grid-row: 3; }

/* ===== Feature 3 ===== */
.feature--eco {
  color: #fff;
  background: #fff;
  z-index: 1;
  overflow: visible;
}
.feature--eco .feature-bg {
  width: 66.667%;
  left: 0;
  right: auto;
  opacity: 1;
  object-position: center;
}
.feature--eco::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 66.667%;
  background: #1d40b6;
  opacity: .58;
  pointer-events: none;
  z-index: 0;
}
.eco-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 66.667% 33.333%;
  grid-template-areas:
    "copy devices"
    "cards devices";
  align-items: center;
  min-height: clamp(640px, 42vw, 780px);
  padding: 72px 0 0px;
  column-gap: 0;
}
.eco-stage.wrap {
  padding-inline: 0;
}
.eco-copy {
  grid-area: copy;
  width: 60%;
  max-width: 60%;
  margin: 0 110px 0 auto;
  justify-self: end;
  text-align: right;
  padding: 8px 0 0;
  box-sizing: border-box;
}
.eco-copy h2 {
  margin: 0 0 16px;
  width: 100%;
  max-width: none;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 2.22vw, 40px);
  line-height: 1.25;
  text-align: right;
}
.eco-copy .quote {
  color: #fff;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0 auto;
  text-align: right;
  padding: 0em 0 0em 2.8em;
}
.eco-copy .quote::before,
.eco-copy .quote::after { color: #fff; }
.eco-copy .quote::after { display: none; }
.cards-3 {
  grid-area: cards;
  --card-w: 280px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  width: 100%;
  text-align: left;
  padding: 0 16px 0 var(--inset);
  box-sizing: border-box;
}
.cards-3 .f-card {
  --title-size: 18px;
  --body-size: 14px;
  background: #fff;
  color: var(--blue);
  height: 168px;
  min-height: 168px;
  width: 100%;
  max-width: none;
  padding: 18px 76px 18px 22px;
}
.cards-3 .f-card h3 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.25;
}
.cards-3 .f-card p,
.cards-3 .f-card-desc > p {
  color: var(--text);
  font-size: 14px;
}
.cards-3 .f-card:hover,
.cards-3 .f-card:hover h3,
.cards-3 .f-card:hover p,
.cards-3 .f-card:hover .f-card-desc > p {
  color: #fff;
}
.cards-3 .f-card .ico {
  background: var(--cyan-soft);
  top: 18px;
  right: 16px;
}
.cards-3 .f-card:hover .ico {
  background: #fff;
}
.heart-shot {
  grid-area: devices;
  width: min(560px, 118%);
  max-width: none;
  margin-left: -12%;
  padding-top: 0;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
}

.feature--eco .explore-bar {
  margin: -8px auto 0;
}
.explore-bar {
  display: flex; align-items: center; justify-content: space-between;
  width: min(921px, calc(100% - 32px));
  margin: 0 auto;
  background: var(--cyan);
  color: #fff;
  border-radius: 20px;
  padding: 10px 16px 10px 36px;
  position: relative; z-index: 4;
  transition: transform .3s var(--ease), box-shadow .3s;
  top: 35px;
}
.explore-bar:hover {
  box-shadow: 0 16px 32px rgba(61, 188, 209, .35);
}
.explore-bar:hover .explore-icon { transform: translateX(6px); }
.explore-bar p {
  margin: 0;
  font-size: clamp(16px, 1.67vw, 23px);
  font-weight: 700;
}
.explore-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: #fff; display: grid; place-items: center; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.explore-icon img { width: 25px; height: 20px; object-fit: contain; }

/* ===== Feedback ===== */
.feedback {
  background: #fff;
  padding: 50px 0 0px;
  overflow-x: clip;
  overflow-y: visible;
}
.feedback-inner {
  position: relative;
  padding-bottom: 28px;
}
.feedback-title { margin-bottom: 8px; }
.fb-box {
  width: 100%;
  margin: 28px auto 0;
  position: relative;
}
.fb-slider {
  position: relative;
  padding-top: 8px;
  overflow: hidden;
}
.fb-slider .owl-stage-outer {
  overflow: hidden;
  padding: 0px 0px 32px 0px;
  margin: 0;
}
.fb-slider .owl-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: visible;
  opacity: .88;
  transform: translate3d(0, var(--fb-sink, 48px), 0) scale(1);
  transform-origin: center top;
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.fb-slider .owl-item.is-featured {
  opacity: 1;
  z-index: 3;
  transform: translate3d(0, 0, 0) scale(1.04);
}
.fb-card {
  position: relative;
  z-index: 1;
  width: 90%;
  background: #fff;
  border-radius: 24px;
  border-style: solid;
  border-color: var(--blue);
  border-width: 0 0 6px 6px;
  padding: 20px 22px 26px 16px;
  height: auto;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  color: var(--text);
  box-shadow: 0px 7px 10px rgba(29, 64, 182, .2);
}

.fb-slider .owl-item.is-featured .fb-card {
  background: #3dbcd1;
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0px 7px 10px rgba(29, 64, 182, .2);
  /* Chiều cao = nội dung dài nhất (JS set --fb-active-h) */
  height: var(--fb-active-h, auto);
  min-height: var(--fb-active-h, auto);
}
.fb-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}
.fb-avatar {
  position: relative;
  z-index: 2;
  width: 107px;
  height: 107px;
  flex-shrink: 0;
  margin-left: -36px;
}
.fb-avatar img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  display: block;
  width: 80px !important;
    height: 80px !important;
    border-radius: 100%;
    object-fit: cover;
    border: 6px solid;
    border-color: var(--blue);
}
.fb-avatar::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 67px;
  height: 27px;
  background: var(--fl-bg-icon-avatar) center / contain no-repeat;
}

.fb-info {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 10px;
  position: relative;
  z-index: -1;
  left: -25px;
  top: -10px;
}
.fb-card h3 {
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  font-family: Fraunces, Georgia, serif;
  position: relative;
  z-index: 1;
}
.fb-slider .owl-item.is-featured .fb-card h3 { color: #fff; }
.fb-tag {
  display: inline-block;
  margin: 0 0 2px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e6f2ff;
  color: var(--cyan);
  font-size: 13px;
  position: relative;
  left: -30px;
  padding-left: 30px;
}
.fb-slider .owl-item.is-featured .fb-tag {
  background: #fff;
  color: #3dbcd1;
}
.fb-meta {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.fb-slider .owl-item.is-featured .fb-meta { color: rgba(255, 255, 255, .92); }
.fb-quote {
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
  color: var(--text);
  padding: 0 20px;
  overflow: hidden;
  max-height: calc(1.55em * 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.fb-more {
  display: inline-block;
  margin-top: 8px;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 15px;
  padding: 0px 20px;
}
.fb-slider .owl-item:not(.is-featured) .fb-quote {
  max-height: calc(1.55em * 4);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.fb-slider .owl-item:not(.is-featured) .fb-more {
  display: inline-block;
}
.fb-slider .owl-item.is-featured .fb-quote {
  color: #fff;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
  overflow: visible;
  flex: 1 1 auto;
}
.fb-slider .owl-item.is-featured .fb-more {
  display: none !important;
}
.fb-slider .owl-nav,
.fb-slider .owl-dots { display: none !important; }
.fb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 0px;
}
.fb-arrow {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  line-height: 0;
  cursor: pointer;
  transition: transform .25s var(--ease);
  margin-bottom: 0px;
  margin: 0px;
}
.fb-arrow.fb-next{
  transform: rotate(180deg);
}
.fb-arrow img {
  width: 58px;
  height: 58px;
  display: block;
}
/* .fb-arrow:hover { transform: scale(1.08); } */
.fb-arrow:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.fb-badge {
  position: absolute;
  right: 8px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 15px 18px 15px 18px;
  box-shadow: 0 8px 24px rgba(29, 64, 182, .16);
  animation: badgePulse 2.8s ease-in-out infinite;
  transition: transform .25s;
}
.fb-badge:hover { transform: translateY(-3px); }
.fb-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: absolute;
  top: -25px;
  right: 5px;
  box-shadow: 0 8px 24px rgba(29, 64, 182, .16);
}
.fb-badge-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ===== 90 ngày ===== */
.improve {
  position: relative;
  overflow: hidden;
  padding: 48px 0 50px;
}
.improve  .row-reverse-2{
  justify-content: end;
  flex: 1;
}
.improve-inner .quote{
  text-align: center;
}
.improve-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.improve-inner { position: relative; z-index: 1; }
.improve-title { margin-bottom: 30px; }
.improve-info {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.update-pill {
  display: inline-block;
  padding: 15px 18px 15px 45px;
  border-radius: 25px;
  background: #deefff;
  font-size: 16px;
  margin: 0px;
  font-family: Nunito, sans-serif;
  font-weight: normal;
  position: relative;
}
.update-pill::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
  background: var(--fl-bg-icon-date) center / contain no-repeat;
}
.improve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 64px;
  margin: 50px 0 60px;
}
.im-card {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}
.im-card:hover {
  transform: none;
  box-shadow: none;
}
.im-card:hover .im-body {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29, 64, 182, .14);
}
.im-num {
  position: relative;
  left: 0;
  top: 8px;
  z-index: 3;
  width: 84px;
  height: 84px;
  margin: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, #3dbcd1 0%, #1d40b6 78%);
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(29, 64, 182, .3);
}
.im-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}
.im-card h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue);
}
.im-body {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px 15px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(29, 64, 182, .08);
  transition: transform .35s var(--ease), box-shadow .35s;
  overflow: hidden;
}
.im-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  align-items: center;
}
.im-stat {
  position: static;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(40px, 4vw, 80px) !important;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  white-space: nowrap;
  align-self: center;
}
.im-stat span {
  font-size: .42em;
  font-weight: 700;
}
.im-desc {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 24px) !important;
  line-height: 1.2;
  color: var(--text);
  max-width: none;
  padding-top: 0;
}
.im-note {
  margin: 0;
  margin-top: auto;
  padding-right: 110px;
  font-size: 11px;
  line-height: 1.4;
  color: #9aa0a6;
  max-width: 320px;
}
.im-chart {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: auto;
  min-width: 160px;
  height: 48px;
  padding: 0 26px;
  background: var(--cyan);
  color: #fff;
  border-radius: 14px 0 18px 0;
  font-weight: 800;
  font-size: 15px;
  transition: filter .25s, letter-spacing .25s;
}
.im-chart:hover { filter: brightness(1.08); letter-spacing: .02em; }
.improve-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .78);
  border-radius: 16px;
  padding: 22px 28px;
  position: relative;
}
.improve-foot::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 34px;
  background: var(--fl-bg-icon-improve-foot) center / contain no-repeat;
}
.improve-foot p {
  margin: 0;
  max-width: 900px;
  padding-left: 65px;
}
.improve-foot .btn {
  min-width: 280px;
  height: 56px;
  font-size: 18px;
  flex-shrink: 0;
  border-radius: 10px;
}

/* ===== 4 bước ===== */
.steps {
  padding: 40px 0px;
  background: #fff;
}
.steps-title {
  text-align: center;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 36px);
  margin: 0 0 50px;
  color: #333;
  line-height: 1.25;
}
.steps-title span {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 64px);
  line-height: 1.1;
}
.steps-stage {
  position: relative;
  padding-bottom: 28px;
}
.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: end;
  width: 90%;
  margin: 0px auto -23px
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  min-height: 280px;
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(29, 64, 182, .12);
  transition:
    transform .35s var(--ease),
    box-shadow .35s,
    background .35s,
    min-height .35s;
  cursor: pointer;
}
.step-card:hover {
  box-shadow: 0 18px 40px rgba(29, 64, 182, .16);
}
.step-card.is-open,
.step-card:hover {
  background: linear-gradient(180deg, #eef7fc 0%, #ffffff 55%);
  min-height: 340px;
  padding: 36px 18px 22px;
}
.step-pill {
  display: none;
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--cyan);
  color: #fff;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(61, 188, 209, .35);
}
.step-card.is-open .step-pill,
.step-card:hover .step-pill {
  display: block;
}
.step-media {
  display: none;
  width: 160px;
  height: 177px;
  max-width: 70%;
  margin: 8px auto 16px;
  object-fit: contain;
  object-position: center;
}
.step-card.is-open .step-media,
.step-card:hover .step-media {
  display: block;
}
.step-card.is-open .step-mark,
.step-card:hover .step-mark {
  display: none;
}
.step-card p {
  margin: 0;
  margin-top: auto;
  font-size: 15px;
  line-height: 1.45;
  color: #333;
  text-align: left;
}

.step-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 20px;
  min-height: 120px;
}
.step-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  position: relative;
  left: -16px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 67px;
}
.step-big {
  flex: 1;
  display: grid;
  place-items: center start;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(64px, 6.5vw, 92px);
  font-weight: 700;
  line-height: .85;
  background: linear-gradient(0deg, #3dbcd1 0%, #d7eef6 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.simple-bar {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 45px 24px 28px;
  color: #fff;
  text-align: center;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  background:
    var(--fl-bg-congnghe) center / 100% 100% no-repeat;
}

/* ===== Công nghệ ===== */
.tech {
  background: #fff;
  padding: 0px 0 32px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.tech-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .78fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.tech-title {
  text-align: left;
  margin: 0 0 18px;
  max-width: none;
  line-height: 1.2;
}
.tech-title .row {
  justify-content: center;
}
.tech-title .xl {
  font-size: clamp(36px, 4.2vw, 72px);
}
.tech-title .md {
  font-size: clamp(22px, 2.4vw, 40px);
  font-weight: 500;
  color: #222;
}
.tech-quote {
  max-width: 640px;
  text-align: center;
  color: #666;
  padding: 0 2.6em;
}
.tech  .tech-quote{
  max-width: 100%;

}
.tech-quote::before,
.tech-quote::after {
  font-size: clamp(48px, 4vw, 72px);
  color: var(--blue);
}
.tech-about {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}
.tech-about h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  font-family: Fraunces, Georgia, serif;
}
.tech-about p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}
.tech-hero-photo {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 14px;
}
.tech-thumbs {
  position: relative;
  padding-top: 44px;
}
.thumbs-nav {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 8px;
  margin: 0;
  z-index: 2;
}
.thumbs-nav .fb-arrow {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin: 0px !important;
}
.thumbs-nav .fb-arrow.thumbs-next {
  transform: none;
}
.thumbs-nav .fb-arrow img {
  width: 36px;
  height: 36px;
}
.thumbs-nav .fb-arrow.thumbs-next img {
  transform: rotate(180deg);
}
.thumbs-carousel {
  width: 100%;
}
.thumbs-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.thumbs-item {
  line-height: 0;
}
.thumbs-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .5s var(--ease), filter .5s;
}
.thumbs-item img:hover {
  transform: scale(1.03);
  filter: saturate(1.06);
}
.tech-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
  margin-bottom: -140px;
  position: relative;
  z-index: 3;
  justify-content: end;
    align-items: end;
}
.trust-card {
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  min-height: 168px;
  position: relative;
  margin-top: -36px;
  box-shadow: 0 14px 32px rgba(16, 40, 100, .16);
  transition: transform .35s var(--ease), box-shadow .35s;
  max-width: 327px;
  text-align: right;
  padding-bottom: 70px;
}
.trust-card.t-mid {
  text-align: left;
}
.trust-card:hover {
  transform: translateX(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.trust-card:first-child { margin-top: 0; }
.trust-card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  font-family: Fraunces, Georgia, serif;
  padding-left: 25px;
  height: 47px;
  color: #fff;
}
.trust-card.t-mid h3 {
  padding-left: 0;
  padding-right: 30px;
}
.trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  opacity: .95;
}
.t-cyan { background: var(--cyan); z-index: 1; }
.t-mid { background: #2f7f93; z-index: 2; }
.t-navy { background: var(--blue); z-index: 3; }
.trust-check {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
.trust-check img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.trust-check--end {
  left: auto;
  right: 22px;
}


/* ===== Form tư vấn ===== */
.consult-stage {
  position: relative;
  overflow: visible;
}
.consult-building {
  position: absolute;
    right: 0;
    top: -40px;
    bottom: -271px;
    height: auto;
    width: auto;
    max-width: 62%;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
    z-index: 2;
}
.consult {
  position: relative;
  overflow: visible;
  padding: 140px 0 0;
    margin-top: -120px;
    margin-bottom: -280px;
  z-index: 5; /* trên footer */
}
.consult-panel {
  position: relative;
  z-index: 5;
  width: 58%;
  margin: 0;
  padding: 52px 50px 44px 0;
  background: linear-gradient(
    90deg,
    var(--cyan) 0%,
    #2f6ad6 48%,
    var(--blue) 100%
  );
  border-radius: 0 40px 40px 0;
  box-sizing: border-box;
}
.consult-inner.wrap {
  position: relative;
  min-height: 0;
  overflow: visible;
  width: 100%;
  margin: 0;
  padding: 0 16px 0 var(--inset);
  box-sizing: border-box;
}
.consult-form {
  width: 100%;
  margin: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.consult-form h2 {
  margin: 0 0 26px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #fff;
}
.consult-form label {
  display: block;
}
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100% !important;
  border: 1.5px solid rgba(255, 255, 255, .7) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font: inherit;
  margin-bottom: 14px !important;
  background: rgba(13, 42, 110, .18) !important;
  color: #fff !important;
  transition: border-color .25s, box-shadow .25s !important;
  appearance: none !important;
  height: auto !important;
}
.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(255, 255, 255, .78) !important;
}
.consult-form select {
  color: rgba(255, 255, 255, .85) !important;
  background-color: rgba(13, 42, 110, .18) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}
.consult-form select option {
  color: #222 !important;
  background: #fff !important;
}
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none !important;
  border-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .22) !important;
  transform: none !important;
}
.consult-form textarea {
  resize: vertical !important;
  min-height: 110px !important;
}
.select-wrap { position: relative; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn-white {
  width: 100% !important;
  height: 52px !important;
  background: #fff !important;
  color: var(--blue) !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-top: 6px !important;
  cursor: pointer !important;
  transition: transform .25s var(--ease), box-shadow .25s !important;
  margin: 0 !important;
}
.btn-white:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16) !important;
}
.form-hint {
  margin: 14px 0 0 !important;
  font-size: 13px !important;
  text-align: center !important;
  opacity: .92 !important;
}

.purchase-toast {
  position: fixed;
  left: calc(var(--gutter) + 24px); bottom: 24px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 10px;
  width: min(340px, calc(100% - 32px));
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  font-size: 13px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  animation: none;
}
.purchase-toast.show {
  display: flex;
  opacity: 1;
  transform: none;
}
.purchase-toast.is-out {
  animation: toastOut .35s ease forwards;
}
.purchase-toast img {     width: 50px;
  height: 50px;
  object-fit: cover; }
.purchase-toast p { margin: 0; }
.toast-close {
  border: 0; background: 0;
  font-size: 22px; color: var(--cyan);
  margin-left: auto;
  cursor: pointer;
}


/* ===== Tablet / Mobile ===== */
@media (max-width: 1100px) {
  :root {
    --device-w: min(32vw, 280px);
    --device-overlap: calc(var(--device-h) * 0.22);
    --inset: clamp(16px, 4.5vw, 40px);
  }

  html,
  body {
    overflow-x: clip;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .stat.stat-1,
  .stat.stat-2,
  .stat.stat-3,
  .stat.stat-4 { text-align: left; }
  .stat-icon {
    left: auto;
        right: 0px;
        top: 5px;
        width: 40px;
        height: 40px;
  }
  .stat.stat-3 .stat-icon,
  .stat.stat-4 .stat-icon {
    left: auto;
        right: 0px;
        top: 5px;
        width: 40px;
        height: 40px;
  }
  .stat:hover .stat-icon { transform: translateX(-50%) scale(1.08); }
  .stat-desc { margin-inline: auto; }

  .feature--bp {
    padding: 72px 0 0;
    margin-top: -48px;
  }
  .feature--bp .feature-bg,
  .feature--bp::after { width: 100%; }
  .bp-card {
    max-width: 100%;
    border-radius: 28px;
    padding: 28px 22px 48px;
  }
  .bp-devices {
    position: relative;
    right: auto;
    top: auto;
    width: min(640px, 100%);
    margin: 16px auto 0;
    transform: none;
  }
  .bp-stage {
    min-height: 0;
    padding: 48px 0 28px;
    overflow: visible;
  }
  .feature-bg-watch {
    top: -28px;
    right: 4%;
    width: clamp(100px, 18vw, 160px);
  }
  .feature-bg-chart {
    bottom: -20px;
    right: 6%;
    width: clamp(88px, 14vw, 130px);
  }
  .cards-2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    --card-w: 50%;
  }

  .safe-stage,
  .eco-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .eco-stage {
    grid-template-areas:
      "copy"
      "devices"
      "cards";
    padding: 40px 0 24px;
  }
  .eco-stage.wrap { padding-inline: var(--inset); }
  .safe-copy-inner {
    width: 100%;
    left: 0;
    padding: 40px var(--inset) 8px;
  }
  .quote--safe {
    padding-left: 2.4em;
    padding-right: 0;
  }
  .feature--safe .feature-bg,
  .feature--safe::after {
    width: 42%;
    opacity: .85;
  }
  .feature--safe::after { opacity: .4; }
  .feature--eco .feature-bg,
  .feature--eco::after { width: 100%; }
  .device-pair {
    --phone-w: min(220px, 48vw);
    margin-inline: auto;
  }
  .device-pair .phone { margin-bottom: calc(var(--phone-w) * 726 / 359 * -0.12); }
  .cards-stagger {
    padding-top: 0;
    padding-bottom: 40px;
    margin-inline: auto;
    width: 100%;
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --card-w: 50%;
  }
  .cards-stagger .c1,
  .cards-stagger .c2,
  .cards-stagger .c3,
  .cards-stagger .c4,
  .cards-stagger .c5,
  .cards-stagger .c6,
  .cards-stagger .c7 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }
  .cards-stagger .f-card,
  .cards-2x2 .f-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 148px;
    --title-size: 18px;
    --body-size: 14px;
  }
  .cards-3 {
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --card-w: 50%;
  }
  .cards-3 .f-card {
    height: auto;
    min-height: 148px;
    min-width: 0;
    --title-size: 18px;
    --body-size: 14px;
  }
  .eco-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    text-align: left;
    padding: 16px 0 0;
  }
  .eco-copy h2 { text-align: left; margin-left: 0; }
  .eco-copy .quote {
    text-align: left;
    margin: 0;
    padding: 0 0 0 2.4em;
  }
  .heart-shot {
    margin: 12px auto 0;
    padding-top: 0;
    width: min(420px, 92%);
    justify-self: center;
  }
  .camera {
    position: relative;
    top: auto;
    left: auto;
    width: min(200px, 42%);
    margin: 0 0 8px;
  }
  .explore-bar {
    margin: 20px auto 0;
    width: calc(100% - 32px);
    padding: 12px 14px 12px 20px;
    gap: 12px;
  }
  .explore-bar p { font-size: clamp(15px, 2.4vw, 22px); }
  .feedback { padding: 50px 0 0; }
  .fb-box { padding: 0; max-width: 100%; }
  .fb-card { min-height: 0; border-width: 0 0 5px 5px; border-radius: 20px; }
  .fb-badge { position: static; margin: 20px auto 0; width: fit-content; }
  .fb-info { left: -12px; }
  .improve { padding: 20px 0 40px;background-size: cover !important; }
  .improve-title { margin-bottom: 20px; }
  .improve-info {
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
  }
  .improve-grid { grid-template-columns: 1fr; gap: 28px; margin: 36px 0 40px; }
  .update-pill { margin-left: 0; }
  .improve-foot {
    align-items: stretch;
    padding: 20px 18px;
    gap: 16px;
  }
  .improve-foot::before { left: 18px; }
  .improve-foot p { padding-left: 56px; }
  .improve-foot .btn {
    width: auto;
        min-width: 0;
        font-size: 16px;
        padding: 20px 10px;
  }

  .steps { padding: 48px 0; }
  .steps-title { margin-bottom: 36px; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: -36px;
    gap: 14px;
  }
  .step-card.is-open,
  .step-card:hover { min-height: 300px; }
  .simple-bar {
    min-height: 100px;
    padding: 52px 20px 22px;
    font-size: clamp(16px, 3.2vw, 22px);
  }

  .tech {
    padding: 8px 0 24px;
    overflow-x: clip;
    overflow-y: visible;
  }
  .tech-inner,
  .tech-about {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }
  .tech-copy,
  .tech-cards,
  .tech-thumbs,
  .thumbs-carousel {
    min-width: 0;
    max-width: 100%;
  }
  .thumbs-carousel .owl-stage-outer {
    overflow: hidden;
  }
  .tech-title .row {
    justify-content: flex-start;
    text-align: left;
  }
  .tech-quote {
    max-width: none;
    margin-inline: 0;
    text-align: left;
    padding: 0 0 0 1.8em;
  }
  .tech-cards {
    margin-bottom: 0;
    margin-top: 8px;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
  }
  .trust-card {
    margin-top: 12px;
    max-width: none;
    width: 100%;
    text-align: left;
    padding: 24px 24px 28px 72px;
    min-height: 0;
  }
  .trust-card.t-mid { text-align: left; }
  .trust-card h3 {
    height: auto;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .trust-card.t-mid h3 { padding-right: 0; }
  .trust-check {
    left: 22px;
    right: auto;
  }
  .trust-check--end {
    left: 22px;
    right: auto;
  }
  .trust-card:hover { transform: translateY(-4px); }

  .consult {
    padding: 32px 0 48px;
    margin-top: 24px;
    margin-bottom: 0;
    z-index: 2;
  }
  .consult-panel {
    width: 100%;
    border-radius: 0 36px 36px 0;
    padding: 36px var(--inset) 32px;
  }
  .consult-inner.wrap {
    padding-inline: 0;
  }
  .consult-building {
    opacity: .22;
    max-width: 55%;
    top: auto;
    bottom: -40px;
  }
  .consult-form { width: 100%; }
  .purchase-toast {
    left: max(16px, var(--inset));
    bottom: 16px;
  }
}

@media (max-width: 860px) {
  :root {
    --device-w: min(72vw, 260px);
    --device-overlap: calc(var(--device-h) * 0.12);
    --inset: 16px;
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .hero,
  .feature,
  .feature--safe,
  .feature--eco,
  .feature--bp,
  .feedback,
  .tech,
  .consult-stage,
  .steps {
    overflow-x: clip;
  }

  .hero-stage {
    aspect-ratio: auto;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 8px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    object-position: center 36%;
  }
  .hero-stage::after { height: 100%; }
  .hero-content {
    padding: 24px 16px 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .eyebrow {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: .03em;
  }
  .hero-content h1 {
    font-size: clamp(24px, 7vw, 34px);
    margin: 12px auto 10px;
  }
  .hero-lead {
    font-size: clamp(14px, 3.6vw, 17px);
    margin-bottom: 18px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: min(100%, 320px);
    height: 52px;
    white-space: normal;
    font-size: 15px;
    padding-inline: 16px;
  }
  .hero-devices {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    width: min(260px, 68%);
    transform: none;
    margin: 20px auto 0;
    pointer-events: auto;
    animation: fadeUp .8s var(--ease) both;
  }
  .notice {
    padding: 6px 8px;
    gap: 6px;
    border-radius: 10px;
  }
  .notice p {
    font-size: 11px;
    white-space: normal;
  }
  .notice .side { width: 22px; height: 22px; }
  .notice.n1 { left: 0; top: 9%; width: 92%; }
  .notice.n2 { left: 2%; top: 22%; width: 88%; }
  .notice.n3 { left: 4%; top: 34%; width: 84%; }

  .stats {
    padding-top: clamp(28px, 8vw, 52px);
    padding-bottom: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 18px; }
  .stat-desc { font-size: 14px; max-width: 100%; }

  .banner-section { padding: 8px 0 24px; }
  .banner-frame { aspect-ratio: 16 / 9; border-radius: 16px; }

  .layers-intro { padding: 0px 0 4px; }
  .layers-title { margin-bottom: 18px; }
  .xl { font-size: clamp(34px, 11vw, 56px); }
  .md { font-size: clamp(18px, 5.5vw, 28px); }
  .quote {
    padding: 0 1.6em;
    font-size: clamp(15px, 4vw, 18px);
  }
  .quote::before,
  .quote::after { font-size: clamp(36px, 10vw, 56px); }

  .feature--bp {
    padding: 40px 0 0;
    margin-top: -24px;
  }
  .feature-bg-quote {
    max-width: min(100%, 420px);
    width: 90%;
    height: auto;
  }
  .bp-stage {
    padding: 36px 0 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .bp-card {
    border-radius: 22px;
    padding: 22px 16px 40px;
    max-width: 100%;
    width: 100%;
  }
  .bp-card h2 { font-size: clamp(22px, 6vw, 28px); }
  .bp-card .lede { font-size: 15px; margin-bottom: 20px; }
  .feature-bg-watch {
    top: -18px;
    right: 2%;
    width: min(112px, 28vw);
  }
  .feature-bg-chart {
    bottom: -14px;
    right: 4%;
    width: min(96px, 24vw);
  }
  .bp-devices { width: min(100%, 480px); }

  .cards-2x2,
  .cards-stagger,
  .cards-3 {
    grid-template-columns: minmax(0, 1fr);
    --card-w: 100%;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
  }
  .cards-3 {
    margin-top: 50px;
  }
  .cards-2x2 { gap: 12px; }

  .cards-stagger {
    width: 100%;
    padding-bottom: 28px;
    margin-top: 50px;
  }
  .cards-stagger .c1, .cards-stagger .c2, .cards-stagger .c3,
  .cards-stagger .c4, .cards-stagger .c5, .cards-stagger .c6, .cards-stagger .c7 {
    grid-column: auto;
    grid-row: auto;
  }
  .cards-2x2 .f-card,
  .cards-stagger .f-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 148px;
    --title-size: 18px;
    --body-size: 14px;
  }
  .cards-3 .f-card {
    height: auto;
    min-height: 148px;
    min-width: 0;
    padding: 16px 64px 16px 14px;
    --title-size: 18px;
    --body-size: 14px;
  }

  .feature--safe .feature-bg,
  .feature--safe::after {
    width: 100%;
    opacity: 1;
  }
  .feature--safe::after { opacity: .28; }
  .safe-copy-inner {
    width: 100%;
    left: 0;
    padding: 28px var(--inset) 0;
  }
  .safe-copy-inner h2 { font-size: clamp(22px, 6vw, 28px);color: #fff; }
  .quote--safe {
    padding-left: 1.8em;
    font-size: 15px;
    color: #fff;
  }
  .camera {
    display: none;
  }
  .device-pair {
    --phone-w: min(200px, 52vw);
    --watch-out: calc(var(--watch-w) * 0.2);
    width: min(100%, calc(var(--phone-w) + var(--watch-out)));
    margin: 12px auto 28px;
  }
  .device-pair .watch {
    transform: translate(0, 20%);
  }

  .eco-stage { padding: 28px 0 16px; }
  .eco-copy h2 { font-size: clamp(22px, 6vw, 28px); }
  .eco-copy .quote {
    padding-left: 1.8em;
    font-size: 15px;
  }
  .heart-shot {
    width: min(360px, 100%);
    margin-left: 0;
    justify-self: center;
  }
  .explore-bar {
    flex-direction: row;
    align-items: center;
    margin: 16px auto 0;
    padding: 12px 12px 12px 16px;
    border-radius: 16px;
    width: calc(100% - 32px);
    max-width: 100%;
    box-sizing: border-box;
  }
  .explore-bar p {
    font-size: 15px;
    line-height: 1.35;
    min-width: 0;
  }
  .explore-icon { width: 44px; height: 44px; border-radius: 12px; }

  .feedback { padding: 80px 0 0; }
  .fb-card {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px 20px 12px;
    box-sizing: border-box;
  }
  .fb-avatar {
    margin-left: 0;
    width: 72px;
    height: 72px;
  }
  .fb-avatar img {
    width: 64px !important;
    height: 64px !important;
    border-width: 4px;
  }
  .fb-avatar::after {
    right: 8px;
    bottom: 10px;
    width: 48px;
    height: 20px;
  }
  .fb-info {
    left: 0;
    top: 0;
    padding-top: 4px;
  }
  .fb-card h3 { font-size: 18px; }
  .fb-tag {
    left: 0;
    padding-left: 12px;
    font-size: 12px;
  }
  .fb-quote,
  .fb-more { padding: 0 8px; font-size: 14px; }
  .fb-arrow,
  .fb-arrow img { width: 48px; height: 48px; }
  .fb-badge {
    padding: 12px 14px;
    display: flex;
    margin-top: 60px;
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .improve-info { flex-direction: column; align-items: center; }
  .row-item-reverse { margin-top: 0; }
  .im-card {
    padding: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 10px;
    min-width: 0;
  }
  .im-num {
    left: 0;
    top: 4px;
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 12px;
  }
  .im-body { padding: 18px 14px 52px; min-height: 0; gap: 12px; min-width: 0; }
  .im-main { grid-template-columns: 1fr; gap: 6px; }
  .im-stat { font-size: 40px; }
  .im-desc { font-size: 14px; }
  .im-note {
    padding-right: 108px;
    max-width: none;
    font-size: 10px;
  }
  .im-chart {
    width: auto;
    min-width: 120px;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 12px 0 16px 0;
  }

  .steps { padding: 36px 0; }
  .steps-title { margin-bottom: 28px; font-size: 18px; }
  .steps-title span { font-size: clamp(28px, 9vw, 40px); }
  .form-row.two { grid-template-columns: 1fr; }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: -24px;
    gap: 12px;
    width: 100%;
  }
  .step-card {
    min-height: 220px;
    padding: 18px 14px 16px;
    min-width: 0;
  }
  .step-card.is-open,
  .step-card:hover {
    min-height: 260px;
    padding: 28px 14px 18px;
  }
  .step-vert { left: 0; }
  .step-big { font-size: clamp(48px, 14vw, 64px); }
  .step-media {
    width: 120px;
    height: 132px;
  }
  .simple-bar {
    min-height: 88px;
    padding: 40px 16px 18px;
    border-radius: 0;
    background-size: cover;
    font-size: clamp(15px, 4.2vw, 20px);
  }

  .tech {
    overflow-x: clip;
  }
  .tech-title {
    text-align: left;
  }
  .tech-title .row {
    justify-content: flex-start;
    align-items: baseline;
    gap: .12em .2em;
    flex-wrap: wrap;
  }
  .tech-title .xl { font-size: clamp(28px, 8.5vw, 40px); }
  .tech-title .md { font-size: clamp(16px, 4.8vw, 22px); }
  .tech-quote {
    padding: 0 0 0 1.5em;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
  }
  .tech-quote::before,
  .tech-quote::after {
    font-size: 36px;
  }
  .tech-about {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .tech-hero-photo { height: 180px; width: 100%; }
  .tech-thumbs {
    overflow: hidden;
    width: 100%;
  }
  .thumbs-carousel {
    width: 100%;
    overflow: hidden;
  }
  .thumbs-item img {
    width: 100%;
  }
  .trust-card {
    padding: 22px 20px 24px 68px;
    border-radius: 16px;
    margin-top: 10px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .trust-card h3 { font-size: 18px; }
  .trust-card p { font-size: 13px; }
  .trust-check {
    width: 32px;
    height: 32px;
    left: 18px;
    top: 22px;
  }

  .consult {
    padding: 24px 0 36px;
    margin-top: 8px;
    margin-bottom: -250px;
  }
  .consult-panel {
    border-radius: 0;
    padding: 28px var(--inset) 28px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 245px;
  }
  .consult-building { display: none; }
  .consult-form h2 {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 18px;
  }
  .consult-form input,
  .consult-form select,
  .consult-form textarea {
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 15px;
  }
  .btn-white {
    height: 48px;
    font-size: 16px;
  }

  .purchase-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: calc(100% - 24px);
  }

  .float-contact { right: 10px; top: auto; bottom: 96px; }
  .fc { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .improve-foot { flex-direction: column; }
  .eyebrow { max-width: 100%; }
  .hero-devices { width: min(220px, 72%); }
  .notice p { font-size: 10px; line-height: 1.15; }
  .bp-card { padding: 18px 14px 36px;        width: 95%;
    margin: 0px auto; }
  .feature-bg-watch,
  .feature-bg-chart { display: none; }

  .cards-2x2,
  .cards-stagger,
  .cards-3 {
    grid-template-columns: minmax(0, 1fr);
    --card-w: 100%;
    gap: 10px;
  }
  .cards-2x2 .f-card,
  .cards-stagger .f-card,
  .cards-3 .f-card {
    min-height: 132px;
    height: auto;
    --title-size: 18px;
    --body-size: 14px;
  }

  .im-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 4px;
  }
  .im-note { padding-right: 0; padding-bottom: 8px; }
  .im-body { padding: 16px 14px 48px; }

  .improve-foot::before {
    top: 18px;
    transform: none;
  }
  .steps-grid { grid-template-columns: minmax(0, 1fr); }
  .step-card { min-height: 200px; }
  .fb-slider .owl-item.is-featured { transform: translate3d(0, 0, 0) scale(1); }
  .xl { font-size: clamp(28px, 12vw, 40px); }
}

/* ===== Motion ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes deviceIn {
  from { opacity: 0; transform: translateX(-50%) translateY(36px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes deviceFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes noticePop {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: none; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(29, 64, 182, .16); }
  50% { box-shadow: 0 8px 24px rgba(29, 64, 182, .16), 0 0 0 8px rgba(61, 188, 209, .16); }
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 8px 18px rgba(0, 0, 0, .2); }
  50% { box-shadow: 0 8px 18px rgba(63, 179, 68, .35), 0 0 0 10px rgba(63, 179, 68, .16); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateY(16px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .wow { visibility: visible !important; }
  .hero-bg, .hero-devices, .hero-content > *, .notice { animation: none !important; }
}
@keyframes duchv-zoom-in-out {
  0% {
      transform: scale(1,1)
  }

  50% {
      transform: scale(0.8,0.8)
  }

  100% {
      transform: scale(1,1)
  }
}
/* FLATSOME child theme css */
.absolute-footer{
  display: none;
}
.header-button .button{
  justify-content: center;
    display: flex;
    align-items: center;
}
.purchase-toast button{
  margin: 0;
  padding: 0;
}
.sticky-shrink .stuck .header-main{
  background: #fff;
}
footer .button.icon.circle, footer .button.icon.circle>i:only-child{
  color: var(--blue);
}
@media (max-width: 768px) {
  #logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px;
  }
}
@media (max-width: 549px) {
  #logo img {
      max-height: 55px !important;
  }
}
header .button span{
  line-height: 2.5 !important;
}