:root {
  --body-font: "Inter", sans-serif;
  --title-font: "Inter", sans-serif;
  --primary: #ff5b4f;
  --primary-dark: #ef4337;
  --accent-gold: #ff9b3a;
  --secondary: #111111;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.3);
  --focus: #ff6e63;
  --container: 1320px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  background: #000;
  background-image:
    radial-gradient(circle at 18% -6%, rgba(255, 91, 79, 0.2), transparent 42%),
    radial-gradient(circle at 86% -8%, rgba(255, 151, 70, 0.14), transparent 44%),
    linear-gradient(180deg, #050507 0%, #08080c 100%);
  line-height: 1.55;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #1b1b1f;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(6, 6, 8, 0.82) 100%);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-sticky {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(241, 79, 68, 0.3);
}

.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  width: 176px;
  height: auto;
  display: block;
}

.header-right {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.menu-area {
  display: flex;
  justify-content: center;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
}

.menu-list li + li::before {
  content: "·";
  position: absolute;
  left: -11px;
  color: rgba(255, 255, 255, 0.34);
}

.menu-list a,
.header-actions a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.menu-list a:hover,
.menu-list a.is-active,
.header-actions a:hover {
  color: #fff;
}

.menu-list a.is-active {
  position: relative;
}

.menu-list a.is-active::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 12px;
}

.primary-btn,
.outline-btn {
  border-radius: 30px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-weight: 600;
  transition: color 220ms ease, border-color 220ms ease, transform 180ms ease;
  z-index: 1;
}

.primary-btn::before,
.outline-btn::before {
  content: "";
  width: 0;
  height: 400%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 300ms ease;
  z-index: -1;
}

.primary-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.primary-btn::before {
  background: #fff;
}

.primary-btn:hover {
  color: #101010;
  transform: translateY(-1px);
}

.primary-btn:hover::before {
  width: 160%;
}

.outline-btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
}

.outline-btn::before {
  background: var(--primary);
}

.outline-btn:hover {
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.outline-btn:hover::before {
  width: 160%;
}

.small-btn {
  padding: 10px 18px;
  border-radius: 26px;
  font-size: 0.92rem;
}

.hero-shell {
  padding: clamp(14px, 2.4vh, 28px) 0 clamp(26px, 4.6vh, 52px);
}

.ai-banner {
  padding-left: 32px;
  padding-right: 32px;
}

.hero-swiper {
  border-radius: 30px;
  overflow: hidden;
}

.ai-banner .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: clamp(560px, calc(100vh - 210px), 760px);
  overflow: hidden;
  text-align: center;
}

.ai-banner .swiper-slide .img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.ai-banner .swiper-slide .img-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 2, 37, 0.78), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.ai-banner .img-gif img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: 0;
  object-fit: cover;
}

.slide-layout {
  width: 100%;
  padding: 0 26px;
}

.content-box {
  max-width: 100%;
  padding:
    clamp(130px, 24vh, 250px)
    0
    clamp(24px, 6vh, 50px)
    clamp(24px, 6.2vw, 110px);
}

.top-bar-inner,
.bottom-bar-inner,
.banner-btn-area,
.bottom-title-style,
.title-style,
.sub-title-style {
  text-align: left;
}

.ai-banner .banner-heading,
.ai-banner .banner-desc,
.ai-banner .banner-btn-area {
  opacity: 0;
  transform: translateY(50px);
}

.ai-banner .banner-heading {
  transition: opacity 1s ease-out 0.45s, transform 1s ease-out 0.45s;
}

.ai-banner .banner-desc {
  transition: opacity 1s ease-out 0.62s, transform 1s ease-out 0.78s;
}

.ai-banner .banner-btn-area {
  transition: opacity 1s ease-out 0.74s, transform 1s ease-out 0.92s;
}

.ai-banner .swiper-slide-active .banner-heading,
.ai-banner .swiper-slide-active .banner-desc,
.ai-banner .swiper-slide-active .banner-btn-area {
  opacity: 1;
  transform: translateY(0);
}

.title-style {
  color: #fff;
  font-size: clamp(2.8rem, 10.2vw, 10rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  padding-bottom: 12px;
}

.bottom-content {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  align-items: end;
  gap: 20px;
}

.sub-title-style {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 320px;
  padding-bottom: 0;
}

.bottom-title-style {
  color: #fff;
  font-size: clamp(2rem, 6.2vw, 5.8rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.banner-btn-area {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-banner .swiper-button-next,
.ai-banner .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  min-width: 70px;
  min-height: 95px;
  background: #fff;
  color: #111;
  border: 0;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.ai-banner .swiper-button-prev {
  border-radius: 0 25px 25px 0;
  margin-left: -10px;
}

.ai-banner .swiper-button-next {
  border-radius: 25px 0 0 25px;
  right: 0;
}

.ai-banner .swiper-button-prev::before,
.ai-banner .swiper-button-next::before,
.ai-banner .swiper-button-prev::after,
.ai-banner .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 40px;
  background: transparent;
}

.ai-banner .swiper-button-prev::before {
  top: -40px;
  left: 0;
  border-bottom-left-radius: 20px;
  box-shadow: 0 20px 0 0 #fff;
}

.ai-banner .swiper-button-prev::after {
  bottom: -40px;
  left: 0;
  border-top-left-radius: 20px;
  box-shadow: 0 -20px 0 0 #fff;
}

.ai-banner .swiper-button-next::before {
  top: -40px;
  left: 40px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 20px 0 0 #fff;
}

.ai-banner .swiper-button-next::after {
  bottom: -40px;
  right: 0;
  border-top-right-radius: 20px;
  box-shadow: 0 -20px 0 0 #fff;
}

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.products-section {
  padding-top: 72px;
}

.section-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 10px;
  width: min(100%, 920px);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.1;
}

.lead {
  margin-top: 18px;
  width: min(100%, 860px);
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.trust-strip {
  padding-top: 30px;
  padding-bottom: 36px;
  border-top: 0;
}

.trust-strip-inner {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 89% 8%, rgba(255, 91, 79, 0.24), transparent 40%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.trust-strip-title {
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.trust-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.trust-inline-cta {
  padding: 10px 18px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-metric {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.26);
  border-radius: 14px;
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.trust-metric:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.trust-metric strong {
  display: block;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.trust-metric span {
  margin-top: 4px;
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-guardrails {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
}

.trust-guardrails h3 {
  font-size: 1.02rem;
}

.trust-guardrails ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 6px;
}

.how-section {
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.95), rgba(8, 8, 10, 0.98));
}

.how-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.how-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.how-step {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.how-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
}

.how-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.capabilities-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 91, 79, 0.18), transparent 45%),
    radial-gradient(circle at 88% 88%, rgba(255, 155, 58, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(7, 7, 9, 0.98));
}

.capabilities-intro {
  width: min(100%, 980px);
}

.capability-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.capability-card h3 {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.3;
}

.capability-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}

.capability-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  gap: 6px;
}

.capability-card-wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 91, 79, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.capability-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.capability-shell {
  margin-top: 44px;
}

.presentation-section {
  padding-top: 56px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 155, 58, 0.12), transparent 45%);
}

.presentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: start;
}

.benefit-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 4px rgba(255, 91, 79, 0.9);
}

.presentation-stage {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(140deg, rgba(20, 20, 24, 0.95), rgba(10, 10, 12, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.keyword-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-links a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  transition: border-color 160ms ease, color 160ms ease;
}

.keyword-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.app-gallery-swiper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.34);
}

.gallery-shot {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  display: block;
}

.gallery-shot img {
  width: 100%;
  height: min(52vw, 420px);
  object-fit: cover;
  display: block;
}

.app-gallery-prev,
.app-gallery-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.app-gallery-prev::after,
.app-gallery-next::after {
  font-size: 15px;
}

.app-gallery-pagination {
  bottom: 12px !important;
}

.app-gallery-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.app-gallery-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.gallery-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  display: block;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.gallery-hint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.demo-flow-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-flow-visual,
.demo-usecase {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.demo-flow-visual h3,
.demo-usecase h3 {
  font-size: 1.2rem;
}

.demo-flow-visual img {
  margin-top: 12px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 180px;
  object-fit: cover;
}

.demo-usecase p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.demo-usecase ol {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.demo-usecase .primary-btn {
  margin-top: 16px;
}

.video-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 155, 58, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(7, 7, 9, 0.98));
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
}

.video-frame-wrap {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.behavior-section {
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.95), rgba(7, 7, 9, 0.96));
}

.behavior-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.behavior-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  transition: transform 180ms ease, border-color 180ms ease;
}

.behavior-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.behavior-card h3 {
  font-size: 1.24rem;
}

.behavior-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.security-modes-section .lead {
  width: min(100%, 760px);
}

.mode-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mode-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 91, 79, 0.19), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: transform 180ms ease, border-color 180ms ease;
}

.mode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.requirements-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 155, 58, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.95), rgba(8, 8, 10, 0.98));
}

.requirements-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.requirements-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.requirements-card h3 {
  font-size: 1.2rem;
}

.requirements-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
}

.requirements-notes {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.requirements-notes article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.requirements-notes h3 {
  font-size: 1rem;
}

.requirements-notes p {
  margin-top: 7px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.requirements-checker {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(241, 79, 68, 0.35);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% -30%, rgba(241, 79, 68, 0.16), transparent 38%),
    linear-gradient(150deg, rgba(22, 22, 24, 0.95), rgba(10, 10, 12, 0.95));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.requirements-checker h3 {
  font-size: 1.12rem;
}

.requirements-checker p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.requirements-checker-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.requirements-checker .primary-btn {
  white-space: nowrap;
}

.mode-index {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.mode-card h3 {
  font-size: 1.45rem;
}

.mode-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.modern-pricing-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.92) 0%, rgba(13, 13, 15, 0.98) 100%),
    url("../img/ai-bg-about.png") center / cover no-repeat;
}

.modern-pricing-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.billing-switch {
  margin-top: 20px;
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.billing-switch button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.billing-switch button.is-active {
  background: var(--primary);
  color: #fff;
}

.modern-price-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(26, 26, 29, 0.95), rgba(11, 11, 13, 0.96));
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.modern-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.modern-price-card.is-featured {
  border-color: rgba(255, 91, 79, 0.62);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--primary);
}

.modern-price-card h3 {
  font-size: 1.45rem;
}

.price-amount {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-amount span {
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.modern-price-card ul {
  margin: 18px 0 20px;
  padding: 0 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  gap: 8px;
}

.modern-price-card .primary-btn,
.modern-price-card .outline-btn {
  width: 100%;
}

.compare-wrap {
  margin-top: 26px;
}

.compare-wrap h3 {
  font-size: 1.2rem;
}

.compare-table-wrap {
  margin-top: 10px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: rgba(255, 255, 255, 0.01);
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 0.92rem;
}

.compare-table th {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.modern-resources-section .resource-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 16px;
}

.ai-icon-box-section,
.ai-icon-box-counter {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-icon-box-section {
  min-height: 300px;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.55)), url("../img/03-2.png");
}

.card-two {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.58)), url("../img/02-1.png");
}

.ai-icon-box-counter {
  min-height: 300px;
  padding: 0;
  background-image: linear-gradient(150deg, #ff5d53 0%, #d73636 100%), url("../img/white-shape.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.products-section .content {
  position: relative;
  padding: 25px;
  min-height: 100%;
}

.products-section .buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.products-section .button {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.ai-icon-box-section .title,
.ai-icon-box-counter .title {
  font-size: clamp(1.22rem, 1.9vw, 1.7rem);
  line-height: 1.3;
  font-weight: 400;
}

.ai-icon-box-section .title a,
.ai-icon-box-counter .title a {
  color: #fff;
  text-decoration: none;
}

.ai-icon-box-section .title a:hover,
.ai-icon-box-counter .title a:hover {
  color: var(--primary);
}

.ai-icon-box-section .desc,
.ai-icon-box-counter .desc {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.counter-box {
  margin-top: 30px;
  display: inline-grid;
  gap: 12px;
}

.counter-container {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.counter-count {
  font-size: clamp(3.4rem, 6vw, 5.1rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px #d35454;
  text-stroke: 1px #d35454;
}

.plus-icon {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #d35454;
  text-stroke: 1px #d35454;
}

.service-item-icon {
  position: absolute;
  bottom: -8px;
  right: 0;
}

.service-item-icon .service-item-icon-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 20px 0 0 20px;
}

.service-item-icon .service-item-icon-wrapper::before,
.service-item-icon .service-item-icon-wrapper::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 0;
  width: 20px;
  height: 40px;
  box-shadow: 0 20px 0 0 #121212;
}

.service-item-icon .service-item-icon-wrapper::before {
  right: 0;
  left: initial;
  top: -20px;
  bottom: initial;
  border-radius: 0 0 20px 0;
}

.service-item-icon .service-item-icon-wrapper::after {
  left: 0;
  right: initial;
  top: initial;
  bottom: 0;
  border-radius: 0 0 20px 0;
}

.service-item-icon .service-item-icon-inner {
  background-color: #121212;
  padding: 12px 12px 0 12px;
  border-radius: 35px 1px 30px 0;
}

.service-item-icon .service-item-icon-link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  background: var(--primary);
  transition: transform 160ms ease, background-color 160ms ease;
}

.service-item-icon .service-item-icon-link:hover {
  transform: translateX(2px);
  background: var(--primary-dark);
}

.service-item-icon .service-item-icon-link span {
  display: inline-block;
  transform: translateX(1px);
}

.card-three .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-three .desc {
  margin-top: 0;
}

.service-listing-wrapper.service-list-listing {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.service-listing-wrapper .service-item {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.service-listing-wrapper .service-post-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  text-decoration: none;
}

.service-post-title-counter {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 600;
  min-width: 48px;
}

.service-post-inner,
.service-post-inner-alt {
  font-size: clamp(1.7rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.service-post-inner-alt {
  display: none;
}

.service-item:hover .service-post-inner {
  display: none;
}

.service-item:hover .service-post-inner-alt {
  display: block;
  color: var(--primary);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.94) 0%, rgba(14, 14, 14, 0.98) 100%),
    url("../img/ai-bg-about.png") center / cover no-repeat;
}

.pricing-heading-wrap {
  width: min(100%, 760px);
}

.pricing-title {
  width: min(100%, 720px);
}

.pricing-list {
  margin-top: 38px;
  display: grid;
  gap: 16px;
}

/********** Price Item Widget (NovaAI-like) **********/
.novaai-price-item-widget.novaai-price-item-style-alt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.novaai-price-item-widget .price-item {
  position: relative;
  cursor: default;
  margin: 0 auto;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  background:
    linear-gradient(140deg, rgba(24, 24, 28, 0.93) 0%, rgba(8, 8, 10, 0.95) 100%),
    radial-gradient(circle at 86% -25%, rgba(241, 79, 68, 0.2), transparent 36%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.novaai-price-item-widget .price-item.active {
  border-color: rgba(241, 79, 68, 0.5);
}

.novaai-price-item-widget .price-item .price-item-title {
  font-size: 40px;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.novaai-price-item-widget .price-item .price-item-title:not(:last-child) {
  margin-bottom: 14px;
}

.novaai-price-item-widget .price-item .price-item-custom-fields .price-item-custom-field {
  position: relative;
  padding: 0 0 0 1em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.5;
}

.novaai-price-item-widget .price-item .price-item-custom-fields .price-item-custom-field:not(:first-child) {
  margin: 10px 0 0;
}

.novaai-price-item-widget .price-item .price-item-custom-fields .price-item-custom-field::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  background-color: currentColor;
  position: absolute;
  left: 2px;
  top: 0.8em;
  border-radius: 50%;
}

.novaai-price-item-widget .price-item .price-item-container {
  font-size: 0;
  line-height: 1;
  font-weight: 600;
}

.novaai-price-item-widget .price-item .price-item-container:not(:last-child) {
  margin-bottom: 20px;
}

.novaai-price-item-widget .price-item .price-item-button-container {
  font-size: 0;
  line-height: 1;
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 34px 11px 43px;
  transition:
    padding 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button:hover {
  padding: 10px 43px 11px 34px;
  border-color: var(--primary);
  background: var(--primary);
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button .icon-button-arrow {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button .icon-button-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button .icon-button-arrow.left {
  left: 18px;
  opacity: 0;
  transform: translate(-8px, -50%);
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button .icon-button-arrow.right {
  right: 18px;
  opacity: 1;
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button:hover .icon-button-arrow.left {
  opacity: 1;
  transform: translate(0, -50%);
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button:hover .icon-button-arrow.right {
  opacity: 0;
  transform: translate(8px, -50%);
}

.novaai-price-item-widget .price-item .price-item-button-container .novaai-button .button-inner {
  display: none;
}

.novaai-price-item-widget .price-item .price-wrapper {
  display: inline-block;
}

.novaai-price-item-widget .price-item .price-wrapper .price,
.novaai-price-item-widget .price-item .price-wrapper .currency {
  font-size: 60px;
  line-height: 1em;
}

.novaai-price-item-widget .price-item .price-item-period {
  display: inline-block;
  vertical-align: baseline;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.novaai-price-item-widget .price-item .price-item-label-wrapper {
  position: absolute;
  top: -1px;
  left: 5.7%;
  padding: 0 20px;
  overflow: hidden;
}

.novaai-price-item-widget .price-item .price-item-label-wrapper::before,
.novaai-price-item-widget .price-item .price-item-label-wrapper::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0;
  height: 40px;
  width: 20px;
  box-shadow: 0 -20px 0 0 #000;
}

.novaai-price-item-widget .price-item .price-item-label-wrapper::before {
  left: 0;
  border-top-right-radius: 20px;
}

.novaai-price-item-widget .price-item .price-item-label-wrapper::after {
  right: 0;
  border-top-left-radius: 20px;
}

.novaai-price-item-widget .price-item .price-item-label-wrapper .price-item-label {
  line-height: 1.5em;
  letter-spacing: -0.03em;
  padding: 8px 43px 6px 37px;
  border-radius: 0 0 25px 25px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.novaai-price-item-widget .price-item.price-item-type-wide .price-item-inner {
  padding: 50px 35px;
  text-align: left;
}

.novaai-price-item-widget .price-item.price-item-type-wide .price-item-custom-fields:not(:last-child),
.novaai-price-item-widget .price-item.price-item-type-wide .price-item-title-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

.novaai-price-item-widget .price-item.price-item-type-wide .price-item-container:not(:last-child) {
  margin-bottom: 25px;
}

.novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .price,
.novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .currency {
  font-size: 32px;
  line-height: 1em;
}

.novaai-price-item-widget .price-item.price-item-type-wide .price-item-price-wrapper {
  flex-shrink: 0;
}

@media only screen and (min-width: 768px) {
  .novaai-price-item-widget .price-item.price-item-type-wide.price-item-style-alt .price-item-inner {
    padding: 50px 50px 55px 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide.price-item-style-alt .price-item-title-wrapper {
    min-width: 33%;
    padding: 0 30px 0 0;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide.price-item-style-alt .price-item-custom-fields {
    width: auto;
    min-width: 35%;
    margin-right: auto;
    padding: 0 30px 0 0;
    column-count: 2;
    column-gap: 24px;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-label-wrapper {
    left: 6%;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-custom-fields:not(:last-child),
  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-title-wrapper:not(:last-child) {
    margin-bottom: 0;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-container {
    white-space: nowrap;
  }
}

@media only screen and (min-width: 992px) {
  .novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .price,
  .novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .currency {
    font-size: 60px;
  }
}

.resource-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource-card {
  display: block;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: #fff;
  font-size: 1.02rem;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.resource-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.modern-faq-section {
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(7, 7, 8, 0.98));
}

.faq-accordion {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.modern-faq-section .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.modern-faq-section .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
}

.modern-faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.modern-faq-section .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
}

.modern-faq-section .faq-item[open] summary::after {
  content: "−";
}

.modern-faq-section .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.78);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 20px;
  align-items: center;
}

.company-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.company-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.cta-panel {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 56px 36px;
  background:
    linear-gradient(130deg, rgba(16, 16, 18, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%),
    url("../img/ai-bg-about.png") center / cover no-repeat;
}

.cta-panel h2 {
  width: min(100%, 780px);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.cta-sub {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 24px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.lead-form label {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.form-feedback {
  min-height: 1.2em;
  font-size: 0.8rem;
  color: #9dffbb;
}

.cta-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.site-footer {
  margin-top: 74px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.95), rgba(4, 4, 4, 1)),
    url("../img/Waves-1.svg") top center / cover no-repeat;
}

.footer-grid {
  padding: 38px 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-meta {
  padding: 0 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta p {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
}

.lightbox-dialog {
  position: relative;
  width: min(94vw, 1160px);
  margin: 30px auto;
  height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.lightbox-figure {
  margin: 0;
  background: rgba(8, 8, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.lightbox-figure img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  display: block;
  background: #0b0b0d;
}

.lightbox-figure figcaption {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.lightbox-nav,
.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-nav {
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 1.7rem;
  line-height: 1;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 120;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff8d3a);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .menu-list li + li::before {
    display: none;
  }

  .menu-list {
    gap: 14px;
  }

  .content-box {
    padding-left: 60px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-right {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(12, 12, 14, 0.98);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.nav-open .header-right {
    display: grid;
  }

  .menu-area {
    justify-content: flex-start;
  }

  .menu-list,
  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .menu-list a.is-active::after {
    bottom: -8px;
  }

  .ai-banner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ai-banner .swiper-slide {
    min-height: clamp(520px, calc(100vh - 190px), 650px);
  }

  .content-box {
    padding:
      clamp(112px, 18vh, 160px)
      0
      clamp(22px, 5vh, 40px)
      28px;
  }

  .title-style {
    font-size: clamp(2.2rem, 9.4vw, 5.2rem);
  }

  .bottom-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bottom-title-style {
    font-size: clamp(1.8rem, 7.4vw, 3.5rem);
  }

  .presentation-grid,
  .video-layout,
  .company-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .trust-metrics,
  .how-grid,
  .capability-grid,
  .demo-flow-grid,
  .behavior-grid,
  .mode-grid,
  .requirements-grid,
  .requirements-notes,
  .modern-pricing-grid,
  .company-highlights {
    grid-template-columns: 1fr;
  }

  .requirements-checker {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .requirements-checker .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .trust-topline {
    grid-template-columns: 1fr;
  }

  .capability-card-wide {
    grid-column: auto;
  }

  .gallery-shot img {
    height: min(58vw, 360px);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-inner {
    padding: 38px 24px 34px;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-item-custom-fields {
    column-count: 1;
    min-width: 100%;
    margin-right: 0;
    padding: 0;
  }

  .novaai-price-item-widget .price-item .price-item-title {
    font-size: 2rem;
  }

  .modern-resources-section .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .billing-switch {
    width: 100%;
    justify-content: center;
  }

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

  .service-post-inner,
  .service-post-inner-alt {
    font-size: clamp(1.45rem, 5vw, 2.6rem);
  }
}

@media (max-width: 767px) {
  .brand-logo img {
    width: 144px;
  }

  .ai-banner .swiper-button-prev,
  .ai-banner .swiper-button-next {
    min-width: 42px;
    min-height: 66px;
  }

  .ai-banner .swiper-button-prev {
    border-radius: 0 22px 22px 0;
  }

  .ai-banner .swiper-button-next {
    border-radius: 22px 0 0 22px;
  }

  .ai-banner .swiper-button-prev::before,
  .ai-banner .swiper-button-prev::after,
  .ai-banner .swiper-button-next::before,
  .ai-banner .swiper-button-next::after {
    height: 40px;
  }

  .ai-banner .swiper-button-prev::before {
    top: -36px;
  }

  .ai-banner .swiper-button-prev::after {
    bottom: -36px;
  }

  .ai-banner .swiper-button-next::before {
    top: -36px;
    left: 13px;
  }

  .ai-banner .swiper-button-next::after {
    bottom: -36px;
    right: -3px;
  }

  .ai-banner .swiper-slide {
    min-height: clamp(460px, calc(100vh - 170px), 560px);
  }

  .content-box {
    padding:
      clamp(90px, 14vh, 128px)
      0
      24px
      16px;
  }

  .sub-title-style {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .trust-strip {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .trust-strip-inner {
    padding: 16px;
    gap: 14px;
  }

  .trust-strip-title {
    font-size: 0.96rem;
  }

  .trust-metric {
    padding: 12px;
  }

  .how-card,
  .demo-flow-visual,
  .demo-usecase,
  .requirements-card {
    padding: 14px;
  }

  .gallery-shot img {
    height: 230px;
  }

  .capability-card {
    padding: 16px;
  }

  .capability-card p,
  .capability-card ul {
    font-size: 0.94rem;
  }

  .video-frame-wrap {
    padding: 10px;
  }

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

  .gallery-thumb img {
    height: 62px;
  }

  .app-gallery-prev,
  .app-gallery-next {
    width: 42px;
    height: 42px;
  }

  .lightbox-dialog {
    width: min(96vw, 980px);
    margin: 16px auto;
    height: calc(100vh - 32px);
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 110px);
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .modern-resources-section .resource-grid {
    grid-template-columns: 1fr;
  }

  .billing-switch {
    gap: 4px;
    padding: 5px;
  }

  .billing-switch button {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .pricing-list {
    gap: 14px;
  }

  .pricing-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .novaai-price-item-widget .price-item .price-item-label-wrapper {
    left: 14px;
    padding: 0 12px;
  }

  .novaai-price-item-widget .price-item .price-item-label-wrapper .price-item-label {
    padding: 7px 22px 5px;
    font-size: 0.9rem;
  }

  .novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .price,
  .novaai-price-item-widget .price-item.price-item-type-wide .price-wrapper .currency {
    font-size: 2.2rem;
  }

  .novaai-price-item-widget .price-item .price-item-period {
    font-size: 1rem;
  }

  .novaai-price-item-widget .price-item .price-item-button-container .novaai-button {
    width: 100%;
    justify-content: center;
  }

  .lead-form {
    padding: 14px;
  }

  .modern-faq-section .faq-item summary {
    padding: 16px 40px 16px 16px;
    font-size: 0.98rem;
  }

  .modern-faq-section .faq-item p {
    padding: 0 16px 14px;
    font-size: 0.92rem;
  }

  .banner-btn-area,
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  .ai-banner .banner-heading,
  .ai-banner .banner-desc,
  .ai-banner .banner-btn-area {
    opacity: 1 !important;
    transform: none !important;
  }
}
