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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* navbar + offset */
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: #302f25;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(to top, #727ae8 5.769%, #4457ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 34, 34, 0.9);
  color: #fffefa;
  border: none;
  border-radius: 72px;
  padding: 10px 20px 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.7px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-dark:hover { opacity: 0.85; }

.btn-dark img,
.btn-white img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffefa;
  color: #302f25;
  border: none;
  border-radius: 72px;
  padding: 10px 20px 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.7px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn-white:hover { opacity: 0.9; }

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #302f25;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 88px 32px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

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

.mobile-menu__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.mobile-menu__logo img {
  width: 140px;
  height: auto;
  display: block;
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu__links li a {
  display: block;
  padding: 18px 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #302f25;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: opacity 0.2s;
}
.mobile-menu__links li:first-child a {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.mobile-menu__links li a:hover { opacity: 0.6; }

.mobile-menu__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

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

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top img {
  width: 56px;
  height: 56px;
  display: block;
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .back-to-top img { width: 48px; height: 48px; }
}

.navbar.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar__logo {
  width: 180px;
  height: 38px;
  flex-shrink: 0;
  display: block;
}

.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 37px;
  list-style: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.7px;
  color: #302f25;
}

.navbar__links a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.navbar__links a:hover { opacity: 0.7; }

/* Page wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding-top: 96px;
  position: relative;
  z-index: 2;
}

/* Fixed bottom bg */
.page-bg-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url('images/background.png') center top / cover no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-bg-bottom.is-visible {
  opacity: 0.3;
  transform: translateY(0);
}

/* Text focus animation */
.anim-text-focus .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.5s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-i) * 0.045s);
}

.anim-text-focus.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

/* Hero image entrance */
@keyframes hero-img-in {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(48px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
  }
}

/* Scroll animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.45s; }
.anim-delay-5 { transition-delay: 0.65s; }
.anim-delay-6 { transition-delay: 0.85s; }
.anim-delay-7 { transition-delay: 1.2s; }

/* Features area */
.features-area {
  position: relative;
  width: 100%;
}

/* Features BG SVG */
.features-bg-svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(-1);
  top: 140px;
  width: 1160px;
  height: calc(100% - 140px);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.features-bg-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.anim-blur-in {
  opacity: 0;
  filter: blur(16px);
  transform: scale(0.96);
  transition:
    opacity  1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter   1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-blur-in.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Clip reveal: wipes in left to right */
.anim-clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-clip-reveal.is-visible {
  clip-path: inset(0 0% 0 0);
}

/* Zoom fade: scales down from above into position */
.anim-zoom-fade {
  opacity: 0;
  transform: scale(1.12) translateY(-20px);
  transition:
    opacity   1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-zoom-fade.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Glow rise: fades in, then briefly glows */
@keyframes glow-rise-in {
  0%   { opacity: 0; transform: translateY(20px); filter: brightness(1); }
  60%  { opacity: 1; transform: translateY(0);    filter: brightness(1.6); }
  100% { opacity: 1; transform: translateY(0);    filter: brightness(1); }
}
.anim-glow-rise {
  opacity: 0;
}
.anim-glow-rise.is-visible {
  animation: glow-rise-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.anim-glow-rise.anim-delay-7.is-visible {
  animation-delay: 1.2s;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .anim-slide-left,
  .anim-slide-right,
  .anim-blur-in,
  .anim-clip-reveal,
  .anim-zoom-fade,
  .anim-glow-rise {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
    transition: none;
    animation: none;
  }
  .hero__image-wrap {
    animation: none;
  }
}

.section-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 32px;
}

.hero__radar-bg {
  position: absolute;
  left: -112px;
  top: 8px;
  width: 492px;
  height: 492px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__radar-bg img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__ellipse-bg {
  position: absolute;
  left: 850px;
  top: -100px;
  width: 563px;
  height: 563px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 50%;
}

.hero__ellipse-bg img {
  width: 175.32%;
  height: 175.32%;
  position: absolute;
  top: -37.66%;
  left: -37.66%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 540px;
  min-width: 0;
}

.hero__heading {
  font-weight: 700;
  font-size: 47px;
  line-height: 67.2px;
  color: #302f25;
}

.hero__heading-sub,
.hero__heading-key {
  display: block;
}

.hero__description {
  font-weight: 700;
  font-size: 15px;
  line-height: 25.6px;
  color: #302f25;
}

.hero__image-wrap {
  flex: 1;
  min-width: 0;
  max-width: 808px;
  position: relative;
  cursor: none;
  animation: hero-img-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Radar magnifier */
.hero__magnifier {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-image: url('images/hero-image.png');
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 10;
  box-shadow:
    0 0 0 3px rgba(69, 104, 220, 0.87),
    0 10px 36px rgba(69, 104, 220, 0.35);
}

.hero__image-wrap:hover .hero__magnifier,
.hero__magnifier.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Scan overlay */
.hero__magnifier-scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: radar-spin 2.4s linear infinite;
  pointer-events: none;
}

/* Rings */
.hero__magnifier-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero__magnifier-rings span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(69, 104, 220, 0.45);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.hero__magnifier-rings span:nth-child(1) { width: 44%; height: 44%; }
.hero__magnifier-rings span:nth-child(2) { width: 78%; height: 78%; }

/* Crosshair */
.hero__magnifier-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__magnifier-cross span {
  position: absolute;
  background: rgba(69, 104, 220, 0.55);
  border-radius: 2px;
}

.hero__magnifier-cross .h {
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  transform: translateY(-50%);
}

.hero__magnifier-cross .v {
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 2px;
  transform: translateX(-50%);
}

/* Center dot */
.hero__magnifier-cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(69, 104, 220, 0.87);
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hide magnifier on touch devices */
@media (hover: none) {
  .hero__magnifier { display: none; }
  .hero__image-wrap { cursor: auto; }
}

/* Section header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-header h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 50.4px;
  color: #302f25;
  text-align: center;
  white-space: nowrap;
}

.section-header__sub {
  padding-top: 11.25px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-header__sub span {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22.4px;
  text-align: center;
}

/* Features */
.features-main {
  width: 100%;
}

.features-main__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 8px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.features-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow: visible;
}

.features-bg {
  position: absolute;
  left: 0;
  top: 89.75px;
  width: 1160px;
  height: 1311px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.features-bg img {
  width: 106.72%;
  height: 105.96%;
  position: absolute;
  top: -2.97%;
  left: -3.36%;
}

.feature-card-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}

.feature-card-row--right {
  justify-content: flex-end;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px 0 rgba(68, 87, 255, 0.1);
  overflow: hidden;
  width: 1000px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1px;
  padding: 24px 24px 24px 48px;
  justify-content: center;
  min-width: 0;
}

.feature-card__badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.feature-card__badge img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-card__badge-label {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 19.6px;
  text-align: center;
  white-space: nowrap;
}

.feature-card__title-wrap { padding-top: 12px; }

.feature-card__title {
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  color: #302f25;
}

.feature-card__desc-wrap { padding-top: 12px; }

.feature-card__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #302f25;
}

.feature-card__example {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.feature-card__example-label {
  font-family: 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.feature-card__example-box {
  background: #fafafa;
  border-radius: 12px;
  padding: 8px 16px 8px 8px;
}

.feature-card__example-list {
  list-style: disc;
  font-size: 13px;
  line-height: 21px;
  color: #2d3748;
  padding-left: 19.5px;
}

.feature-card__example-list li { margin-bottom: 0; }

.feature-card__image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 24px 40px;
  min-width: 0;
}

.feature-card__image-wrap--right {
  justify-content: flex-end;
}

.feature-card__image {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* Other features */
.features-other__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 8px;
  width: 1200px;
  max-width: 100%;
  margin: 80px auto;
}

.features-other__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: 1184px;
  max-width: 100%;
}

.other-card {
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.other-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.1px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px 24px;
}

.other-card__title-wrap {
  padding-top: 12px;
  width: 100%;
}

.other-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #302f25;
  text-align: center;
}

.other-card__desc-wrap {
  padding-top: 12px;
  width: 100%;
}

.other-card__desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.6px;
  color: #302f25;
}

/* How to use */
.how-to-use {
  background: linear-gradient(135deg, #4568dcde, #b16ab3fa);
  border-radius: 0px;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
  margin-top: 0 !important;
}

.how-to-use__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 8px;
  width: 1200px;
  max-width: 100%;
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 482px;
}

.step-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

/* White text overrides */
.how-to-use .section-header h2 { color: #fff; }
.how-to-use .section-header__sub .gradient-text {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}
.how-to-use .steps-arrow img { filter: brightness(0) invert(1); }

.step-label {
  font-family: 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  display: block;
}

.step-label__step { font-size: 17px; }
.step-label__num  { font-size: 26px; }

.step-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}

.step-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 30.6px;
  color: #fff;
}

.steps-arrow {
  flex-shrink: 0;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-arrow img {
  width: 37px;
  height: auto;
  display: block;
}

.step-info--2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.step2-image-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 100%;
}

.step2-image {
  aspect-ratio: 549 / 351;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0,0,0,0.05);
}

.step2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step2-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 30.6px;
  color: #fff;
}

/* FAQ */
.faq {
  background: #fafbfe;
  padding: 60px 0;
  width: 100%;
  margin-top: -100px !important;
}

.faq__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 8px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.faq__header { flex: 1; min-width: 0; }

.faq__heading {
  font-weight: 700;
  font-size: 35px;
  line-height: 50.4px;
  color: #302f25;
  text-align: center;
  white-space: nowrap;
}

.faq__sub {
  padding-top: 11.25px;
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.faq__sub span {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22.4px;
  text-align: center;
  white-space: nowrap;
}

.faq__list {
  display: flex;
  flex-direction: column;
  width: 782px;
  flex-shrink: 0;
}

.faq__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 17px 24px 17px 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

.faq__item:first-child { border-top: 1px solid rgba(0, 0, 0, 0.08); }
.faq__item:hover { background: rgba(68, 87, 255, 0.02); }

.faq__item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.faq__item-left img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__item-left span {
  font-weight: 700;
  font-size: 15px;
  line-height: 22.4px;
  color: #302f25;
  flex: 1;
}

.faq__item-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item.is-open .faq__item-chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px 0 52px;
  font-size: 14.5px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5a5952;
  background: #fafbfe;
  border-bottom: 0px solid rgba(0, 0, 0, 0.08);
  transition: max-height 0.4s ease, padding 0.4s ease, border-width 0.4s ease;
}

.faq__answer.is-open {
  max-height: 400px;
  padding: 12px 32px 20px 52px;
  border-bottom-width: 1px;
}

/* CTA */
.cta {
  position: relative;
  z-index: 2;
  background: #001b34;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px 32px;
  width: 100%;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cta__heading {
  font-weight: 700;
  font-size: 31px;
  line-height: 50.4px;
  color: #fffefa;
  text-align: center;
  white-space: nowrap;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  background: #001b34;
  padding-top: 40px;
  width: 100%;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
  width: 100%;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: -3px;
}

.footer__logo {
  width: 180px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.footer__powered {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  line-height: 14px;
  color: #388e3c;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin-top: -4px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer__social a {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__social img {
  width: 24px;
  height: 24px;
  display: block;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.footer__link-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 24px;
}

.footer__link-col-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 22.4px;
  color: #fff;
  margin-bottom: 10px;
}

.footer__link-col-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link-item a {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.6px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer__link-item a:hover { opacity: 0.7; }

.footer__bg-image {
  width: 100%;
  height: 382px;
  object-fit: cover;
  object-position: left top;
  display: block;
  margin-top: 8px;
}

/* Wide tablet */
@media (max-width: 1200px) {
  .hero__text { flex: 0 0 440px; }
  .hero__heading { font-size: 38px; line-height: 58px; }
  .hero__heading-sub br { display: none; }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero__text { flex: 0 0 320px; }
  .hero__heading { font-size: 30px; line-height: 44px; }
  .feature-card { width: 100%; }
  .feature-card-row, .feature-card-row--right { justify-content: center; }
  .features-bg { display: none; }
  .features-bg-svg { display: none; }
  .faq__list { width: 100%; flex: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
  .page-wrapper { gap: 60px; padding-top: 80px; }

  /* Navbar */
  .navbar { padding: 0 16px; height: 64px; justify-content: flex-end; }
  .navbar__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .navbar__right { display: none; }
  .navbar__hamburger { display: flex; }
  .btn-dark { padding: 8px 14px 8px 16px; font-size: 12px; }
  .btn-dark img, .btn-white img { width: 18px; height: 18px; }

  /* Hero */
  .hero__inner { padding: 16px; }
  .hero__radar-bg, .hero__ellipse-bg { display: none; }
  .hero__content { flex-direction: column; gap: 32px; align-items: center; }
  .hero__text { flex: none; width: 100%; gap: 20px; align-items: center; text-align: center; }
  .hero__heading { font-size: 28px; line-height: 42px; text-align: center; }
  .hero__description { font-size: 14px; text-align: center; }
  .hero__image-wrap { max-width: 100%; }

  /* Section headers */
  .section-header h2 { font-size: 26px; line-height: 38px; white-space: normal; text-align: center; }

  /* Features */
  .features-main__inner { padding: 16px; }
  .feature-card { flex-direction: column; }
  .feature-card__text { padding: 24px 20px; align-items: center; text-align: center; }
  .feature-card__badge { justify-content: center; }
  .feature-card__title { font-size: 18px; text-align: center; }
  .feature-card__desc { font-size: 14px; text-align: left; }
  .feature-card__example { align-items: center; }
  .feature-card__example-list { text-align: left; }
  .feature-card__image-wrap { padding: 0 20px 24px; justify-content: center; }
  .feature-card__image-wrap--right { justify-content: center; }

  /* Other features */
  .features-other__inner { padding: 16px; margin: 32px auto; }
  .features-other__list { flex-direction: column; width: 100%; }
  .other-card__title { text-align: center; }
  .other-card__desc { text-align: center; }

  /* How to use */
  .how-to-use { border-radius: 40px 40px 0 0; padding: 40px 16px; }
  .how-to-use__inner { padding: 8px; }
  .steps-container { flex-direction: column; min-height: unset; gap: 32px; align-items: center; }
  .step-info, .step-info--2 { gap: 16px; align-items: center; text-align: center; }
  .step-label { text-align: center; }
  .step-desc, .step2-desc { font-size: 16px; line-height: 26px; text-align: left; }
  .steps-arrow { display: none; }

  /* FAQ */
  .faq { padding: 40px 0; margin-top: -60px !important; }
  .faq__inner { flex-direction: column; gap: 24px; padding: 16px; width: 100%; align-items: center; }
  .faq__header { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .faq__heading { font-size: 26px; white-space: normal; text-align: center; }
  .faq__list { width: 100%; }
  .faq__item-left span { text-align: left; }

  /* CTA */
  .cta { padding: 40px 20px; }
  .cta__heading { font-size: 24px; white-space: normal; text-align: center; }

  /* Footer */
  .footer__content { flex-direction: column; gap: 32px; padding: 0 20px; align-items: center; text-align: center; }
  .footer__logo-col { align-items: center; }
  .footer__logo-wrap { align-items: end; }
  .footer__links { justify-content: center; gap: 24px; }
  .footer__link-col { align-items: center; }
  .footer__link-col-items { align-items: center; }
  .footer__bg-image { height: 200px; }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 24px; line-height: 36px; }
  .section-header h2 { font-size: 22px; line-height: 33px; }
  .cta__heading { font-size: 22px; }
}
