:root {
  --blue: #1769ff;
  --blue-strong: #0057ff;
  --blue-soft: #eaf3ff;
  --blue-pale: #f4f8ff;
  --purple: #9b5cff;
  --pink: #ff4eb8;
  --cyan: #20c7ff;
  --ink: #172033;
  --muted: #607089;
  --line: #dce8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 85, 170, 0.15);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Rubik", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(220, 232, 251, 0.82);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.9rem;
}

.brand-mark i,
.feature-icon i,
.product-icon i {
  display: block;
  line-height: 1;
}

.brand-mark i {
  font-size: 1.15rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 8px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(46, 88, 150, 0.15);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: #f0f5ff;
}

.site-nav a,
.text-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--blue-strong);
}

.button-ghost:hover {
  background: #fff;
  background: rgba(229, 232, 237, 0.2);
  
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button-ghost {
  color: var(--blue);
  background: #fff;
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* CTA Download Button - standalone style for CTA panel */
.cta-download-btn {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.cta-download-btn:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-blue {
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 92, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(32, 199, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #dcecff 0%, #f7fbff 100%);
  height: 100%;
}

.section-blue-soft {
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.section-white {
  background: #fff;
}

.container,
.hero-inner,
.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  padding: 92px 0 86px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.2vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy p,
.section-heading p,
.ai-copy > p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: auto;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.window-mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.main-window {
  position: absolute;
  inset: 30px 0 auto auto;
  width: min(100%, 640px);
}

.window-bar {
  display: flex;
  gap: 8px;
  height: 42px;
  padding: 14px 18px;
  background: #f6f9ff;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a8c5;
}

.window-bar span:first-child {
  background: #ff6a8b;
}

.window-bar span:nth-child(2) {
  background: #ffc34d;
}

.window-bar span:nth-child(3) {
  background: #1fd68a;
}

.workspace-mockup {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 190px;
  gap: 16px;
  min-height: 360px;
  padding: 18px;
  background:
    linear-gradient(120deg, rgba(23, 105, 255, 0.08), rgba(155, 92, 255, 0.08)),
    #fff;
}

.workspace-mockup aside,
.assistant-panel,
.doc-preview {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.workspace-mockup aside {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
}

.tool {
  display: grid;
  place-items: center;
  height: 42px;
  border-radius: 10px;
  color: var(--muted);
  background: #f4f8ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.tool.active {
  color: #fff;
  background: var(--blue);
}

.doc-preview {
  padding: 26px;
  box-shadow: inset 0 0 0 10px rgba(244, 248, 255, 0.72);
}

.doc-title-line,
.doc-line,
.answer-line,
.chat-message span {
  display: block;
  border-radius: 999px;
  background: #dbe8ff;
}

.doc-title-line {
  width: 58%;
  height: 30px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.doc-line {
  height: 12px;
  margin-bottom: 12px;
}

.w-80 {
  width: 80%;
}

.w-65 {
  width: 65%;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.doc-grid span {
  height: 64px;
  border-radius: 12px;
  background: #eef5ff;
}

.assistant-panel {
  align-self: stretch;
  padding: 18px;
}

.assistant-panel p {
  color: var(--muted);
  font-size: 0.88rem;
}

.answer-line {
  width: 100%;
  height: 9px;
  margin-top: 12px;
}

.answer-line.short {
  width: 72%;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(43, 83, 150, 0.16);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 800;
}

.feature-icon i {
  font-size: 1.25rem;
}

.card-editor {
  top: 4px;
  left: 32px;
}

.card-ocr {
  right: 18px;
  bottom: 36px;
}

.card-sign {
  left: 8px;
  bottom: 84px;
}

.trust {
  padding: 64px 0 48px;
}

.trust h2 {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.trust-grid div {
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 34px rgba(46, 88, 150, 0.08);
}

.trust-grid strong {
  display: block;
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
}

.product-suite,
.feature-showcase,
.solutions,
.faq,
.final-cta {
  padding: 84px 0;
}

.why,
.ai-section,
.comparison {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 2;
  min-height: 268px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(46, 88, 150, 0.08);
}

.product-card-featured {
  grid-column: span 4;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.95), rgba(155, 92, 255, 0.94)),
    var(--blue);
}

.product-card p {
  color: var(--muted);
}

.product-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.product-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
}

.product-card-featured a {
  color: #fff;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
}

.product-icon i {
  font-size: 1.45rem;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-icon.blue {
  background: var(--blue);
}

.product-icon.cyan {
  background: var(--cyan);
}

.product-icon.purple {
  background: var(--purple);
}

.product-icon.violet {
  background: #6d5cff;
}

.product-icon.gradient {
  background: rgba(255, 255, 255, 0.18);
}

.why-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article {
  padding: 26px;
  border: 1px solid rgba(220, 232, 251, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(46, 88, 150, 0.08);
}

.why-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

.why-grid p,
.solution-card p,
.feature-row p,
.faq-item p {
  color: var(--muted);
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(46, 88, 150, 0.08);
}

.solution-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  overflow: hidden;
  border-radius: 18px;
}

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

.solution-image i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 32px rgba(23, 105, 255, 0.28);
  font-size: 2rem;
}

.legal-image {
  background: linear-gradient(135deg, #eaf3ff, #dbe8ff);
}

.finance-image {
  background: linear-gradient(135deg, #e8f9ff, #ddedff);
}

.hr-image {
  background: linear-gradient(135deg, #f2efff, #e3edff);
}

.education-image {
  background: linear-gradient(135deg, #eaf7ff, #f0e8ff);
}

.solution-copy {
  min-height: 152px;
  padding: 24px;
}

.solution-copy p {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(90deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 42px rgba(46, 88, 150, 0.08);
}

.mini-screen {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.36);
  overflow: hidden;
}

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

.screen-editing,
.screen-conversion,
.screen-ocr,
.screen-sign,
.screen-ai {
  background: #fff;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.ai-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.ai-feature-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
}

.ai-feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.ai-interface {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.chat-window {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header span {
  color: var(--blue);
  font-weight: 800;
}

.chat-message {
  width: 78%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
}

.user-message {
  margin-left: auto;
  color: #fff;
  background: var(--blue);
}

.ai-message {
  background: #f2f7ff;
}

.chat-message span {
  height: 10px;
  margin: 8px 0;
}

.chat-message .wide {
  width: 84%;
}

.insight-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #f5faff, #eef1ff);
}

.insight-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(46, 88, 150, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-head {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 800;
}

.comparison-row strong {
  color: var(--blue);
}

.narrow {
  max-width: 860px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(46, 88, 150, 0.06);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 20px 54px 20px 22px;
  border: 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--blue);
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.faq-item.open button::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
}

.faq-item.open p {
  display: block;
}

.cta-panel {
  overflow: hidden;
  padding: 70px 36px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 35%, rgba(255, 78, 184, 0.35), transparent 26%),
    linear-gradient(135deg, #1873ff, #9b5cff);
}

.cta-panel2 {
  overflow: hidden;
  padding: 70px 36px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 35%, rgba(255, 78, 184, 0.35), transparent 26%),
    linear-gradient(135deg, #1873ff, #9b5cff);
}

.cta-panel h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 56px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  background: #05070d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.brand-dark {
  color: #fff;
}

.footer-brand p {
  max-width: 270px;
  margin-top: 16px;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  font-size: 0.9rem;
}

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

/* ===== About Page V2 ===== */

.site-nav a.active {
  color: var(--blue);
}

/* About Hero V2 */
.ab-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  background: #0a0e1a;
}

.ab-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ab-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
}

.ab-hero-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ab-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 800;
}

.ab-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-scroll-hint {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.ab-scroll-hint i {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.35);
  animation: ab-bounce 2s infinite;
}

@keyframes ab-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(14px); }
  60% { transform: translateY(7px); }
}

/* About Section Label */
.ab-section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* About Mission V2 */
.ab-mission {
  padding: 120px 0;
  background: #fff;
}

.ab-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-mission-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 800;
}

.ab-mission-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ab-mission-text p:last-child {
  margin-bottom: 0;
}

.ab-mission-visual {
  display: grid;
  gap: 28px;
}

.ab-mission-card {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2040 50%, #0a0e1a 100%);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.15);
}

.ab-mission-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ab-stat {
  text-align: center;
  padding: 24px 12px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.ab-stat:hover {
  transform: translateY(-2px);
}

.ab-stat strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.ab-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

/* About Products V2 */
.ab-products {
  padding: 0 0 100px;
  background: #fff;
}

.ab-products-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 100px;
  border-radius: 0;
}

.ab-products-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-products-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  background: rgba(10, 14, 26, 0.5);
}

.ab-products-banner-overlay .ab-section-label {
  color: rgba(255, 255, 255, 0.6);
}

.ab-products-banner-overlay h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.ab-products-banner-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 640px;
}

.ab-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-product-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(46, 88, 150, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(46, 88, 150, 0.14);
}

.ab-product-card p {
  color: var(--muted);
}

.ab-product-card-featured {
  grid-column: 2 / -1;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.95), rgba(155, 92, 255, 0.94)),
    var(--blue);
}

.ab-product-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

/* About Why V2 */
.ab-why {
  padding: 120px 0;
  background: #f8faff;
}

.ab-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-why-visual {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2040 50%, #0a0e1a 100%);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.12);
}

.ab-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-why-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 40px;
  font-weight: 800;
}

.ab-why-list {
  display: grid;
  gap: 24px;
}

.ab-why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(46, 88, 150, 0.06);
  transition: transform 0.3s ease;
}

.ab-why-item:hover {
  transform: translateX(4px);
}

.ab-why-item-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 1.3rem;
}

.ab-why-item-icon i {
  display: block;
  line-height: 1;
}

.ab-why-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.ab-why-item p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* About Serve V2 */
.ab-serve {
  padding: 120px 0;
  background: #fff;
}

.ab-section-heading {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.ab-section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}

.ab-section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.ab-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-serve-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(46, 88, 150, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(46, 88, 150, 0.14);
}

.ab-serve-card-img {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
}

.ab-serve-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.serve-legal {
  background: linear-gradient(135deg, #0f1a30, #1a2a50);
}

.serve-finance {
  background: linear-gradient(135deg, #0a1e30, #153050);
}

.serve-hr {
  background: linear-gradient(135deg, #1a1530, #2a2050);
}

.serve-education {
  background: linear-gradient(135deg, #0f1a30, #1a2550);
}

.serve-business {
  background: linear-gradient(135deg, #0a1a28, #152a45);
}

.ab-serve-card-body {
  padding: 28px;
}

.ab-serve-card-body h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.ab-serve-card-body p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* About Vision V2 */
.ab-vision {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #0a0e1a;
}

.ab-vision-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ab-vision-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-vision-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.ab-vision .ab-section-label {
  color: rgba(255, 255, 255, 0.6);
}

.ab-vision h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 28px;
  font-weight: 800;
}

.ab-vision p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* About Contact V2 */
.ab-contact {
  padding: 150px 0 120px;
  background: #fff;
}

.ab-contact-panel {
  padding: 80px 56px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 35%, rgba(255, 78, 184, 0.35), transparent 26%),
    linear-gradient(135deg, #1873ff, #9b5cff);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.2);
}

.ab-contact-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}

.ab-contact-panel > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
}

.ab-contact-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
}

.ab-contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ab-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: background 0.3s ease;
}

.ab-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ab-contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.3rem;
}

.ab-contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 1rem;
}

.ab-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.ab-contact-item a:hover {
  color: #fff;
}

/* ===== About Page V2 Responsive ===== */

@media (max-width: 1199px) and (min-width: 997px) {
  .ab-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ab-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 996px) and (min-width: 768px) {
  .ab-hero {
    padding: 120px 0 90px;
  }

  .ab-mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ab-mission-card {
    aspect-ratio: 16/9;
  }

  .ab-products-banner {
    height: 300px;
  }

  .ab-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-product-card-featured {
    grid-column: 2 / -1;
  }

  .ab-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ab-why-visual {
    aspect-ratio: 16/9;
  }

  .ab-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-vision {
    padding: 100px 0;
  }

  .ab-contact-list {
    grid-template-columns: 1fr;
  }

  .ab-contact-panel {
    padding: 56px 36px;
  }
}

@media (max-width: 767px) {
  .ab-hero {
    padding: 100px 0 72px;
  }

  .ab-hero h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  }

  .ab-mission,
  .ab-why,
  .ab-serve,
  .ab-vision {
    padding: 80px 0;
  }

  .ab-mission-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-mission-card {
    aspect-ratio: 16/9;
  }

  .ab-mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-products-banner {
    height: 240px;
    margin-bottom: 64px;
  }

  .ab-product-grid,
  .ab-serve-grid {
    grid-template-columns: 1fr;
  }

  .ab-product-card-featured {
    grid-column: auto;
  }

  .ab-why-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-why-visual {
    aspect-ratio: 16/9;
  }

  .ab-vision {
    padding: 80px 0;
  }

  .ab-contact {
    padding: 0 0 80px;
  }

  .ab-contact-panel {
    padding: 44px 24px;
  }

  .ab-contact-list {
    grid-template-columns: 1fr;
  }

  .ab-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== Index Page New Sections ===== */

/* How PDFAXIS Works */
.how-works {
  padding: 84px 0;
}

.how-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.how-works-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 42px rgba(46, 88, 150, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.how-works-step h3 {
  margin-bottom: 12px;
  color: #fff;
}

.how-works-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* What Sets Apart */
.what-sets {
  padding: 84px 0;
}

.what-sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.what-sets-card {
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 42px rgba(46, 88, 150, 0.08);
}

.what-sets-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 1.6rem;
}

.what-sets-icon i {
  display: block;
  line-height: 1;
}

.what-sets-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.what-sets-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* One Platform CTA */
.one-platform {
  padding: 84px 0;
}

.one-platform-panel {
  padding: 72px 48px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(32, 199, 255, 0.25), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 78, 184, 0.3), transparent 30%),
    linear-gradient(135deg, #1769ff, #9b5cff);
}

.one-platform-panel h2 {
  color: #fff;
  max-width: 780px;
  margin: 0 auto 16px;
}

.one-platform-panel > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto 32px;
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.platform-feature-tag {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

/* Responsive for new sections */
@media (max-width: 1199px) and (min-width: 997px) {
  .how-works-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .what-sets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 996px) and (min-width: 768px) {
  .how-works-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-sets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-platform-panel {
    padding: 56px 32px;
  }
}

@media (max-width: 767px) {
  .how-works,
  .what-sets,
  .one-platform {
    padding: 56px 0;
  }

  .how-works-steps,
  .what-sets-grid {
    grid-template-columns: 1fr;
  }

  .one-platform-panel {
    padding: 44px 24px;
  }

  .platform-features {
    flex-direction: column;
  }

  .platform-feature-tag {
    width: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 997px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
    gap: 28px;
  }

  .workspace-mockup {
    grid-template-columns: 82px minmax(0, 1fr) 160px;
  }

  .why-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 996px) and (min-width: 768px) {
  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 16px;
  }

  .header-actions {
    display: none;
  }

  .hero-inner,
  .ai-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 480px;
  }

  .main-window {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .trust-grid,
  .why-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .product-card-featured {
    grid-column: span 3;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav {
    top: 74px;
    z-index: 35;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 14px 14px 0 0;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    top: 310px;
    z-index: 35;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 14px 14px;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding: 68px 0 64px;
  }

  .hero-inner,
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .section-heading p,
  .ai-copy > p,
  .cta-panel p {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .main-window {
    inset: 44px auto auto 50%;
    width: min(100%, 560px);
    transform: translateX(-50%);
  }

  .workspace-mockup {
    grid-template-columns: 1fr;
  }

  .workspace-mockup aside {
    grid-template-columns: repeat(4, 1fr);
  }

  .assistant-panel {
    display: none;
  }

  .floating-card {
    min-width: 126px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .card-editor {
    left: 6px;
  }

  .card-sign {
    left: 0;
    bottom: 52px;
  }

  .card-ocr {
    right: 0;
    bottom: 12px;
  }

  .trust,
  .product-suite,
  .feature-showcase,
  .solutions,
  .faq,
  .final-cta,
  .why,
  .ai-section,
  .comparison {
    padding: 62px 0;
  }

  .trust-grid,
  .why-grid,
  .solution-grid,
  .ai-feature-list {
    grid-template-columns: 1fr;
  }

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

  .product-card,
  .product-card-featured {
    grid-column: auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .mini-screen {
    min-height: 170px;
  }

  .ai-interface {
    padding: 12px;
  }

  .chat-header {
    flex-direction: column;
    gap: 4px;
  }

  .chat-message {
    width: 100%;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-panel {
    padding: 50px 20px;
  }

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

/* ===== Legal Pages (Privacy / Terms / Refund) ===== */

/* Legal Hero */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 92, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(32, 199, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #dcecff 0%, #f7fbff 100%);
}

.legal-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.legal-hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(23, 105, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 40%, rgba(155, 92, 255, 0.1), transparent 50%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.legal-date {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Legal Content */
.legal-content {
  padding: 80px 0 120px;
  background: #fff;
}

.legal-body {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 56px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 12px 0 16px;
  padding-left: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.legal-section a {
  color: var(--blue);
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--blue-strong);
}

/* Legal Responsive */
@media (max-width: 996px) {
  .legal-hero {
    padding: 100px 0 64px;
  }

  .legal-content {
    padding: 60px 0 80px;
  }

  .legal-section {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 80px 0 52px;
  }

  .legal-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .legal-content {
    padding: 48px 0 64px;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .legal-section h3 {
    font-size: 1rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.95rem;
  }
}

/* ===== Contact Us Page ===== */

.contact-form-section {
  padding: 80px 0 120px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(46, 88, 150, 0.08);
}

.contact-form-panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  background: #f8faff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23607089' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  border: 2px dashed var(--line);
  border-radius: 12px;
  background: #f8faff;
  color: var(--muted);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-upload-placeholder i {
  font-size: 1.5rem;
  color: var(--blue);
}

.file-upload:hover .file-upload-placeholder {
  border-color: var(--blue);
  background: #fff;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(23, 105, 255, 0.1);
}

.contact-submit i {
  font-size: 1.1rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.08), rgba(155, 92, 255, 0.06));
  border: 1px solid rgba(23, 105, 255, 0.15);
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: var(--blue);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: var(--blue-strong);
}

/* Contact Responsive */
@media (max-width: 996px) {
  .contact-form-section {
    padding: 60px 0 80px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-panel {
    padding: 36px;
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 48px 0 64px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .contact-form-panel h2 {
    font-size: 1.25rem;
  }

  .contact-sidebar {
    flex-direction: column;
  }

  .contact-info-card {
    min-width: auto;
  }
}

/* ===== PDF Tool KIT Product Page ===== */

/* Hero */
.pt-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(32, 199, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #dcecff 0%, #f7fbff 100%);
}

.pt-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pt-hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(23, 105, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 40%, rgba(155, 92, 255, 0.08), transparent 50%);
}

.pt-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pt-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.pt-hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.pt-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pt-hero-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pt-hero-actions .button i {
  font-size: 1.1rem;
}

/* Hero Mockup */
.pt-hero-image {
  display: flex;
  justify-content: center;
}

.pt-hero-image-inner {
  width: 100%;
  max-width: 520px;
}

.pt-hero-mockup {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(220, 232, 251, 0.8);
}

.pt-mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f0f4ff;
  border-bottom: 1px solid var(--line);
}

.pt-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.pt-mockup-dot.red { background: #ff5f57; }
.pt-mockup-dot.yellow { background: #ffbd2e; }
.pt-mockup-dot.green { background: #28c840; }

.pt-mockup-title {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pt-mockup-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pt-mockup-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 320px;
}

.pt-mockup-sidebar {
  padding: 16px 12px;
  background: #f8faff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pt-mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.pt-mockup-nav-item.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.pt-mockup-nav-item i {
  font-size: 1rem;
}

.pt-mockup-nav-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pt-mockup-content {
  padding: 20px;
  background: #fff;
}

.pt-mockup-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-mockup-line {
  height: 8px;
  border-radius: 4px;
  background: #e8f0ff;
}

.pt-mockup-line.long { width: 90%; }
.pt-mockup-line.medium { width: 70%; }
.pt-mockup-line.short { width: 50%; }

.pt-mockup-block {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.1), rgba(155, 92, 255, 0.08));
  margin: 8px 0;
}

/* Section Heading */
.pt-section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.pt-section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

/* Features */
.pt-features {
  padding: 100px 0;
  background: #fff;
}

.pt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pt-feature-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(46, 88, 150, 0.12);
}

.pt-feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pt-feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pt-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pt-feature-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pt-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-feature-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.pt-feature-list i {
  color: var(--blue);
  font-size: 1.1rem;
}

/* Why Choose */
.pt-why {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.pt-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pt-why-card {
  padding: 36px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
  transition: transform 0.3s ease;
}

.pt-why-card:hover {
  transform: translateY(-4px);
}

.pt-why-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.pt-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pt-why-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Feature Showcase */
.pt-showcase {
  padding: 100px 0;
  background: #fff;
}

.pt-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pt-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pt-showcase-item-reverse {
  direction: rtl;
}

.pt-showcase-item-reverse > * {
  direction: ltr;
}

.pt-showcase-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pt-showcase-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.pt-showcase-image {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff, #f8f0ff);
  border: 1px solid var(--line);
}

.pt-showcase-image {
  flex: 1;
  min-width: 0;
}

.pt-showcase-image > div {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(23, 105, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #fff;
  border: 1px solid var(--line);
}

/* ===== Mock UI - Common ===== */
.pt-mock-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f5f7fa;
  border-bottom: 1px solid #e8ecf1;
}

.pt-mock-dots {
  display: flex;
  gap: 6px;
}

.pt-mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pt-mock-dots span:nth-child(1) { background: #ff5f57; }
.pt-mock-dots span:nth-child(2) { background: #ffbd2e; }
.pt-mock-dots span:nth-child(3) { background: #28c840; }

.pt-mock-toolbar-items {
  display: flex;
  gap: 4px;
  flex: 1;
}

.pt-mock-toolbar-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  flex: 1;
  text-align: center;
}

.pt-mock-body {
  display: flex;
  min-height: 260px;
}

.pt-mock-line {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

.pt-mock-line.title-line {
  margin-bottom: 16px;
}

.pt-mock-text-block {
  height: 10px;
  background: #d0d8e4;
  border-radius: 4px;
  flex: 1;
}

.pt-mock-text-block.short {
  flex: 0.5;
}

.pt-mock-text-block.editing {
  background: var(--blue);
  height: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 3px;
  position: relative;
}

.pt-mock-text-block.editing::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: #fff;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.pt-mock-img-block {
  height: 60px;
  background: #e8f0fe;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ===== Mock Editor ===== */
.pt-mock-editor .pt-mock-body {
  flex-direction: row;
}

.pt-mock-sidebar {
  width: 50px;
  background: #f0f2f5;
  border-right: 1px solid #e8ecf1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-mock-thumb {
  width: 100%;
  height: 36px;
  background: #dce3ed;
  border-radius: 4px;
}

.pt-mock-thumb.active {
  background: var(--blue);
  opacity: 0.3;
  border: 2px solid var(--blue);
}

.pt-mock-canvas {
  flex: 1;
  padding: 20px 24px;
  background: #fff;
}

.pt-mock-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: #666;
  font-size: 1rem;
  cursor: default;
}

.pt-mock-tool.active {
  background: var(--blue);
  color: #fff;
}

/* ===== Mock Converter ===== */
.pt-mock-converter-body {
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.pt-conv-source {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pt-conv-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f0f4ff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.pt-conv-file i {
  font-size: 1.2rem;
}

.pt-conv-size {
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
}

.pt-conv-arrow {
  color: var(--blue);
  font-size: 1.2rem;
}

.pt-conv-formats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pt-conv-format {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f0f2f5;
  color: #666;
}

.pt-conv-format.active {
  background: var(--blue);
  color: #fff;
}

.pt-conv-preview {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 16px;
}

.pt-conv-preview-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pt-conv-preview-content {
  padding: 8px 0;
}

.pt-conv-img-placeholder {
  height: 40px;
  background: #e0e8f5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  color: var(--blue);
  opacity: 0.4;
  font-size: 1.2rem;
}

.pt-conv-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-conv-progress-bar {
  flex: 1;
  height: 8px;
  background: #e8ecf1;
  border-radius: 4px;
  overflow: hidden;
}

.pt-conv-progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 4px;
}

.pt-conv-progress-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* ===== Mock Organizer ===== */
.pt-mock-org-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  background: transparent;
}

.pt-mock-org-btn.active {
  background: var(--blue);
  color: #fff;
}

.pt-mock-organizer-body {
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.pt-org-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-org-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fb;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  border: 1px solid #e8ecf1;
}

.pt-org-file i:first-child {
  color: #e74c3c;
  font-size: 1.1rem;
}

.pt-org-handle {
  margin-left: auto;
  color: #bbb;
  font-size: 1rem;
  cursor: grab;
}

.pt-org-file-add {
  border-style: dashed;
  color: var(--blue);
  justify-content: center;
  cursor: pointer;
}

.pt-org-file-add i:first-child {
  color: var(--blue);
}

.pt-org-output {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f0f4ff, #f5f0ff);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.pt-org-output-icon {
  color: var(--blue);
  font-size: 1.3rem;
}

.pt-org-badge {
  margin-left: auto;
  padding: 3px 10px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ===== Mock Security ===== */
.pt-mock-security-body {
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.pt-sec-panel {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 16px;
}

.pt-sec-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.pt-sec-header i {
  color: var(--blue);
  font-size: 1.1rem;
}

.pt-sec-field {
  margin-bottom: 10px;
}

.pt-sec-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 6px;
}

.pt-sec-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
}

.pt-sec-dots {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #333;
}

.pt-sec-input i {
  color: #bbb;
  font-size: 1rem;
}

.pt-sec-permissions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-sec-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #555;
  cursor: default;
}

.pt-sec-checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #d0d5dd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-sec-checkmark.checked {
  background: var(--blue);
  border-color: var(--blue);
}

.pt-sec-checkmark.checked::after {
  content: '✓';
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.pt-sec-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: default;
}

.pt-sec-apply i {
  font-size: 1.1rem;
}

/* ===== Mock OCR - Convert ===== */
.pt-mock-ocr-convert-body {
  flex-direction: row;
  padding: 16px;
  gap: 12px;
  align-items: stretch;
}

.pt-ocr-scan-area,
.pt-ocr-result-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-ocr-scan-label,
.pt-ocr-result-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.pt-ocr-scan-preview {
  flex: 1;
  background: #f0f2f5;
  border-radius: 8px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.pt-ocr-scan-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-ocr-scan-line {
  display: flex;
  gap: 6px;
}

.pt-ocr-scan-line span {
  height: 7px;
  background: #c5cdd8;
  border-radius: 3px;
  flex: 1;
}

.pt-ocr-scan-line span.short {
  flex: 0.5;
}

.pt-ocr-scan-line.blurred span {
  filter: blur(1.5px);
  opacity: 0.6;
}

.pt-ocr-scan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 105, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.pt-ocr-scan-overlay i {
  font-size: 1.8rem;
  animation: ocr-scan-pulse 2s ease-in-out infinite;
}

@keyframes ocr-scan-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.pt-ocr-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--blue);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pt-ocr-arrow-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
}

.pt-ocr-result-preview {
  flex: 1;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 14px;
}

/* ===== Mock OCR - Image ===== */
.pt-mock-ocr-image-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-ocr-img-source {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pt-ocr-img-preview-box {
  flex: 1;
  min-width: 160px;
  background: #f0f4ff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--blue);
}

.pt-ocr-img-preview-box i {
  font-size: 2rem;
  opacity: 0.5;
}

.pt-ocr-img-label {
  font-size: 0.8rem;
  font-weight: 600;
}

.pt-ocr-img-dimensions {
  font-size: 0.7rem;
  color: #999;
}

.pt-ocr-img-formats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pt-ocr-img-fmt {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f0f2f5;
  color: #666;
}

.pt-ocr-img-fmt.active {
  background: var(--blue);
  color: #fff;
}

.pt-ocr-img-extracted {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 14px;
}

.pt-ocr-img-extracted-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.pt-ocr-img-extracted-header i {
  color: var(--blue);
}

.pt-ocr-img-word-count {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 500;
  color: #999;
}

.pt-ocr-img-text-content {
  padding: 4px 0 10px;
}

.pt-ocr-img-actions {
  display: flex;
  gap: 8px;
}

.pt-ocr-img-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f0f2f5;
  color: #666;
}

.pt-ocr-img-action-btn.active {
  background: var(--blue);
  color: #fff;
}

/* ===== Mock OCR - Search ===== */
.pt-mock-ocr-search-body {
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.pt-ocr-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f0f4ff;
  border-radius: 8px;
  border: 1px solid #dce3f0;
}

.pt-ocr-search-bar i {
  color: var(--blue);
  font-size: 1rem;
}

.pt-ocr-search-input-text {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}

.pt-ocr-search-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: #fff;
  padding: 3px 10px;
  border-radius: 12px;
}

.pt-ocr-search-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-ocr-search-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fb;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #555;
  border: 1px solid transparent;
}

.pt-ocr-search-result.active {
  background: #f0f4ff;
  border-color: var(--blue);
}

.pt-ocr-search-result-page {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.pt-ocr-search-result-text {
  line-height: 1.4;
}

.pt-ocr-search-result-text mark {
  background: #ffe066;
  color: #333;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: 600;
}

.pt-ocr-search-doc {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 12px;
}

.pt-ocr-search-doc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.pt-ocr-search-doc-header i {
  color: #e74c3c;
  font-size: 1.1rem;
}

.pt-ocr-search-doc-pages {
  display: flex;
  gap: 4px;
}

.pt-ocr-search-page {
  flex: 1;
  aspect-ratio: 3/4;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
  position: relative;
}

.pt-ocr-search-highlight {
  position: absolute;
  top: 30%;
  left: 15%;
  right: 15%;
  height: 4px;
  background: #ffe066;
  border-radius: 2px;
}

/* ===== Mock OCR - Batch ===== */
.pt-mock-ocr-batch-body {
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.pt-ocr-batch-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ecf1;
}

.pt-ocr-batch-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.pt-ocr-batch-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  background: #f0f2f5;
  padding: 2px 8px;
  border-radius: 10px;
}

.pt-ocr-batch-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

.pt-ocr-batch-status i {
  animation: ocr-spin 1s linear infinite;
}

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

.pt-ocr-batch-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-ocr-batch-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8f9fb;
  border-radius: 8px;
  font-size: 0.82rem;
  border: 1px solid #e8ecf1;
}

.pt-ocr-batch-item i:first-child {
  color: #e74c3c;
  font-size: 1rem;
}

.pt-ocr-batch-name {
  flex: 1;
  font-weight: 500;
  color: #333;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pt-ocr-batch-progress {
  width: 80px;
  height: 6px;
  background: #e8ecf1;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.pt-ocr-batch-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.pt-ocr-batch-pct {
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}

.pt-ocr-batch-item.done .pt-ocr-batch-pct {
  color: #28c840;
}

.pt-ocr-batch-item.active .pt-ocr-batch-pct {
  color: var(--blue);
}

.pt-ocr-batch-check {
  color: #28c840;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pt-ocr-batch-spin {
  color: var(--blue);
  font-size: 1rem;
  animation: ocr-spin 1s linear infinite;
  flex-shrink: 0;
}

/* ===== Mock eSign - Create ===== */
.pt-mock-esign-create-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-esig-tabs {
  display: flex;
  gap: 4px;
  background: #f0f2f5;
  padding: 4px;
  border-radius: 8px;
}

.pt-esig-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
  border-radius: 6px;
  cursor: default;
}

.pt-esig-tab.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pt-esig-canvas {
  background: #f8f9fb;
  border: 2px dashed #dce3f0;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 140px;
  justify-content: center;
}

.pt-esig-signature-preview {
  width: 100%;
  max-width: 280px;
}

.pt-esig-svg {
  width: 100%;
  height: auto;
}

.pt-esig-canvas-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.pt-esig-actions {
  display: flex;
  gap: 8px;
}

.pt-esig-action-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #f0f2f5;
  color: #666;
  cursor: default;
}

.pt-esig-action-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

/* ===== Mock eSign - Request ===== */
.pt-mock-esign-request-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-esig-req-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f0f4ff;
  border-radius: 10px;
}

.pt-esig-req-doc i {
  color: #e74c3c;
  font-size: 1.5rem;
}

.pt-esig-req-doc-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.pt-esig-req-doc-size {
  font-size: 0.75rem;
  color: #999;
}

.pt-esig-req-signers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-esig-req-signer-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.pt-esig-req-signer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fb;
  border-radius: 10px;
  border: 1px solid #e8ecf1;
}

.pt-esig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pt-esig-signer-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.pt-esig-signer-email {
  font-size: 0.75rem;
  color: #999;
}

.pt-esig-signer-role {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: #f0f4ff;
  padding: 4px 10px;
  border-radius: 12px;
}

.pt-esig-req-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border: 2px dashed #dce3f0;
  border-radius: 10px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.pt-esig-req-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: default;
}

.pt-esig-req-send i {
  font-size: 1.1rem;
}

/* ===== Mock eSign - Track ===== */
.pt-mock-esign-track-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-esig-track-stats {
  display: flex;
  gap: 10px;
}

.pt-esig-track-stat {
  flex: 1;
  padding: 14px;
  background: #f8f9fb;
  border-radius: 10px;
  text-align: center;
}

.pt-esig-track-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.pt-esig-track-stat-num.done {
  color: #28c840;
}

.pt-esig-track-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pt-esig-track-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-esig-track-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9fb;
  border-radius: 10px;
  border: 1px solid #e8ecf1;
}

.pt-esig-track-item i:first-child {
  color: #e74c3c;
  font-size: 1.1rem;
}

.pt-esig-track-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pt-esig-track-progress {
  width: 80px;
  height: 6px;
  background: #e8ecf1;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.pt-esig-track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 3px;
}

.pt-esig-track-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

.pt-esig-track-status.done {
  background: #e8f8e8;
  color: #28c840;
}

.pt-esig-track-status.pending {
  background: #fff4e6;
  color: #ff9800;
}

.pt-esig-track-status.waiting {
  background: #f0f2f5;
  color: #999;
}

/* ===== Mock eSign - Workflow ===== */
.pt-mock-esign-workflow-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-esig-wf-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}

.pt-esig-wf-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e8ecf1;
}

.pt-esig-wf-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  position: relative;
}

.pt-esig-wf-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e8ecf1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pt-esig-wf-step.done .pt-esig-wf-dot {
  background: #28c840;
  border-color: #28c840;
  color: #fff;
}

.pt-esig-wf-step.done .pt-esig-wf-dot i {
  font-size: 0.7rem;
}

.pt-esig-wf-step.active .pt-esig-wf-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.pt-esig-wf-step.active .pt-esig-wf-dot i {
  font-size: 0.7rem;
}

.pt-esig-wf-spin {
  animation: ocr-spin 1s linear infinite;
}

.pt-esig-wf-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pt-esig-wf-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.pt-esig-wf-step.done .pt-esig-wf-title {
  color: #28c840;
}

.pt-esig-wf-step.active .pt-esig-wf-title {
  color: var(--blue);
}

.pt-esig-wf-time {
  font-size: 0.72rem;
  color: #999;
}

.pt-esig-wf-metric {
  display: flex;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8ecf1;
}

.pt-esig-wf-metric-item {
  flex: 1;
  padding: 12px;
  background: #f8f9fb;
  border-radius: 10px;
  text-align: center;
}

.pt-esig-wf-metric-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
}

.pt-esig-wf-metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Mock AI - Translate ===== */
.pt-mock-ai-translate-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-ai-lang-select {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pt-ai-lang-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f0f4ff;
  border-radius: 8px;
}

.pt-ai-lang-flag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.pt-ai-lang-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.pt-ai-lang-label {
  font-size: 0.7rem;
  color: #999;
}

.pt-ai-lang-arrow {
  color: var(--blue);
  font-size: 1.2rem;
}

.pt-ai-lang-options {
  display: flex;
  gap: 4px;
}

.pt-ai-lang-opt {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f0f2f5;
  color: #666;
}

.pt-ai-lang-opt.active {
  background: var(--blue);
  color: #fff;
}

.pt-ai-translate-panels {
  display: flex;
  gap: 10px;
  flex: 1;
}

.pt-ai-translate-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f8f9fb;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}

.pt-ai-panel-header {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #666;
  background: #f0f2f5;
  border-bottom: 1px solid #e8ecf1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pt-ai-lang-badge {
  font-size: 0.7rem;
  background: var(--blue);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
}

.pt-ai-panel-content {
  padding: 14px;
  flex: 1;
}

.pt-ai-translate-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #e8f8e8;
  color: #28c840;
  font-size: 0.78rem;
  font-weight: 600;
}

.pt-ai-translate-status i {
  font-size: 1rem;
}

/* ===== Mock AI - Find ===== */
.pt-mock-ai-find-body {
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.pt-ai-find-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
}

.pt-ai-find-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pt-ai-find-msg.user {
  flex-direction: row-reverse;
}

.pt-ai-find-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pt-ai-find-avatar.user-av {
  background: #f0f2f5;
  color: #666;
}

.pt-ai-find-avatar.ai-av {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.pt-ai-find-avatar.ai-av i {
  font-size: 1rem;
}

.pt-ai-find-bubble {
  max-width: 80%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #333;
}

.pt-ai-find-bubble.user-bubble {
  background: #f0f4ff;
  border: 1px solid #dce3f0;
}

.pt-ai-find-bubble.ai-bubble {
  background: #f8f9fb;
  border: 1px solid #e8ecf1;
}

.pt-ai-find-bubble strong {
  color: var(--blue);
  font-weight: 700;
}

.pt-ai-find-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e8ecf1;
  font-size: 0.72rem;
  color: #999;
}

.pt-ai-find-source i {
  color: #e74c3c;
  font-size: 0.9rem;
}

.pt-ai-find-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.pt-ai-find-list span {
  font-size: 0.8rem;
  color: #555;
  padding-left: 4px;
}

.pt-ai-find-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f0f4ff;
  border-radius: 10px;
  border: 1px solid #dce3f0;
  color: #999;
  font-size: 0.85rem;
}

.pt-ai-find-input i {
  color: var(--blue);
  font-size: 1.1rem;
}

/* ===== Mock AI - Fill ===== */
.pt-mock-ai-fill-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-ai-fill-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pt-ai-fill-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pt-ai-fill-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #333;
}

.pt-ai-fill-select i:first-child {
  color: var(--blue);
}

.pt-ai-fill-select i:last-child {
  margin-left: auto;
  color: #999;
}

.pt-ai-fill-input {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #333;
}

.pt-ai-fill-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pt-ai-fill-tag {
  padding: 6px 12px;
  background: #f0f4ff;
  color: var(--blue);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pt-ai-fill-generate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: default;
}

.pt-ai-fill-generate i {
  font-size: 1.1rem;
}

.pt-ai-fill-output {
  background: #f8f9fb;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}

.pt-ai-fill-output-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f0f2f5;
  border-bottom: 1px solid #e8ecf1;
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
}

.pt-ai-fill-output-header i {
  color: var(--blue);
}

.pt-ai-fill-output-badge {
  margin-left: auto;
  font-size: 0.7rem;
  background: var(--blue);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
}

.pt-ai-fill-output-content {
  padding: 14px;
}

/* ===== Mock AI - Extract ===== */
.pt-mock-ai-extract-body {
  flex-direction: column;
  padding: 16px;
  gap: 14px;
}

.pt-ai-extract-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f0f4ff;
  border-radius: 10px;
}

.pt-ai-extract-doc i:first-child {
  color: #e74c3c;
  font-size: 1.5rem;
}

.pt-ai-extract-doc-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.pt-ai-extract-doc-meta {
  font-size: 0.75rem;
  color: #999;
}

.pt-ai-extract-doc-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #28c840;
  background: #e8f8e8;
  padding: 4px 10px;
  border-radius: 12px;
}

.pt-ai-extract-doc-badge i {
  font-size: 0.9rem;
}

.pt-ai-extract-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pt-ai-extract-section {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #e8ecf1;
}

.pt-ai-extract-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.pt-ai-extract-section-title i {
  color: var(--blue);
  font-size: 1.1rem;
}

.pt-ai-extract-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-ai-extract-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8ecf1;
}

.pt-ai-extract-item.highlight {
  border-color: #ffe066;
  background: #fffef5;
}

.pt-ai-extract-item-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
}

.pt-ai-extract-item-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  text-align: right;
}

/* Who Uses */
.pt-users {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.pt-users-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pt-users-card {
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.pt-users-card:hover {
  transform: translateY(-4px);
}

.pt-users-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.pt-users-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pt-users-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.pt-faq {
  padding: 100px 0;
  background: #fff;
}

.pt-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pt-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.pt-faq-item.active {
  box-shadow: 0 8px 24px rgba(46, 88, 150, 0.08);
}

.pt-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease;
}

.pt-faq-question:hover {
  background: #f8faff;
}

.pt-faq-question i {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.pt-faq-item.active .pt-faq-question i {
  transform: rotate(45deg);
}

.pt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pt-faq-item.active .pt-faq-answer {
  max-height: 200px;
}

.pt-faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Final CTA */
.pt-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.pt-cta-panel {
  padding: 80px 56px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 35%, rgba(255, 78, 184, 0.2), transparent 26%),
    linear-gradient(135deg, #1873ff, #9b5cff);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.2);
}

.pt-cta-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.pt-cta-panel > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.pt-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pt-cta-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pt-cta-actions .button i {
  font-size: 1.1rem;
}

/* Product Page Responsive */
@media (max-width: 1199px) and (min-width: 997px) {
  .pt-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-users-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 996px) {
  .pt-hero {
    padding: 80px 0 60px;
  }

  .pt-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pt-hero-image {
    order: -1;
  }

  .pt-hero-image-inner {
    max-width: 400px;
  }

  .pt-features,
  .pt-why,
  .pt-showcase,
  .pt-users,
  .pt-faq,
  .pt-cta {
    padding: 80px 0;
  }

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

  .pt-why-grid {
    grid-template-columns: 1fr;
  }

  .pt-showcase-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pt-showcase-item-reverse {
    direction: ltr;
  }

  .pt-users-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-cta-panel {
    padding: 56px 36px;
  }
}

@media (max-width: 767px) {
  .pt-hero {
    padding: 60px 0 48px;
  }

  .pt-hero-copy h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .pt-hero-actions {
    flex-direction: column;
  }

  .pt-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .pt-hero-image-inner {
    max-width: 100%;
  }

  .pt-mockup-body {
    grid-template-columns: 1fr;
  }

  .pt-mockup-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pt-mockup-nav-item {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .pt-features,
  .pt-why,
  .pt-showcase,
  .pt-users,
  .pt-faq,
  .pt-cta {
    padding: 60px 0;
  }

  .pt-feature-grid,
  .pt-users-grid {
    grid-template-columns: 1fr;
  }

  .pt-section-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .pt-showcase-list {
    gap: 40px;
  }

  .pt-showcase-text h3 {
    font-size: 1.25rem;
  }

  .pt-cta-panel {
    padding: 44px 24px;
  }

  .pt-cta-actions {
    flex-direction: column;
  }

  .pt-cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Common Use Cases */
.pt-use-cases {
  padding: 100px 0;
  background: #fff;
}

.pt-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pt-use-case-card {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46, 88, 150, 0.1);
}

.pt-use-case-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.pt-use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pt-use-case-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Use Cases Responsive */
@media (max-width: 1199px) and (min-width: 997px) {
  .pt-use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 996px) {
  .pt-use-cases {
    padding: 80px 0;
  }

  .pt-use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pt-use-cases {
    padding: 60px 0;
  }

  .pt-use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* Benefits Section */
.pt-benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.pt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pt-benefit-card {
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.pt-benefit-card:hover {
  transform: translateY(-4px);
}

.pt-benefit-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.pt-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pt-benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Benefits Responsive */
@media (max-width: 1199px) and (min-width: 997px) {
  .pt-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 996px) {
  .pt-benefits {
    padding: 80px 0;
  }

  .pt-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pt-benefits {
    padding: 60px 0;
  }

  .pt-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Use Cases inside cards */
.pt-feature-use-cases {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-feature-use-cases strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.pt-feature-use-cases span {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 12px;
  position: relative;
}

.pt-feature-use-cases span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Workflow Section */
.pt-workflow {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pt-workflow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pt-workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pt-workflow-step {
  flex: 1;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  min-width: auto;
  max-width: none;
  transition: none;
}

.pt-workflow-step:hover {
  transform: none;
  box-shadow: none;
}

.pt-workflow-step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.pt-workflow-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.pt-workflow-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.pt-workflow-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--blue);
  font-size: 1.5rem;
  opacity: 0.4;
}

.pt-workflow-arrow i {
  display: block;
}

/* Workflow Responsive */
@media (max-width: 996px) {
  .pt-workflow {
    padding: 80px 0;
  }

  .pt-workflow-steps {
    flex-direction: column;
    gap: 32px;
  }

  .pt-workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .pt-workflow-step-number {
    font-size: 2.5rem;
    margin-bottom: 0;
    min-width: 60px;
  }

  .pt-workflow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .pt-workflow {
    padding: 60px 0;
  }

  .pt-workflow-step-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .pt-workflow-step h3 {
    font-size: 1rem;
  }
}

/* ===== Store Page ===== */

/* Hero */
.store-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(32, 199, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #dcecff 0%, #f7fbff 100%);
}

.store-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.store-hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(23, 105, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 40%, rgba(155, 92, 255, 0.08), transparent 50%);
}

.store-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.store-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.store-hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Section Heading */
.store-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.store-section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

/* Toggle */
.store-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.store-toggle {
  display: inline-flex;
  background: #edf6ff;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.store-toggle-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.store-toggle-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 4px 12px rgba(23, 105, 255, 0.3);
}

.store-toggle-btn:hover:not(.active) {
  color: var(--ink);
}

/* Product Plans */
.store-plans {
  padding: 100px 0;
  background: #fff;
}

.store-plans-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.store-plan-card {
  grid-column: span 2;
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.store-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(46, 88, 150, 0.12);
}

.store-plan-card-featured {
  grid-column: 2 / 4;
  border-color: var(--blue);
  box-shadow: 0 12px 36px rgba(23, 105, 255, 0.12);
}

.store-plan-card-aio {
  grid-column: 4 / 6;
  border-color: var(--purple);
  box-shadow: 0 12px 36px rgba(155, 92, 255, 0.12);
}

.store-plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.store-plan-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.store-plan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-plan-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.store-plan-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.store-plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.store-plan-features strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.store-plan-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.store-plan-features i {
  color: var(--blue);
  font-size: 1.1rem;
}

.store-plan-pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.store-plan-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.store-plan-price-value {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

/* Hide lifetime prices by default, show annual */
.store-plan-price-lifetime {
  display: none;
}

/* When lifetime is active, hide annual and show lifetime */
.store-plans-grid.show-lifetime .store-plan-price-annual {
  display: none;
}

.store-plans-grid.show-lifetime .store-plan-price-lifetime {
  display: flex;
}

.store-plan-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.store-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 105, 255, 0.3);
}

/* Compare Products */
.store-compare {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.store-compare-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 36px rgba(46, 88, 150, 0.06);
}

.store-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.store-compare-table th,
.store-compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.store-compare-table th {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background: #f8faff;
}

.store-compare-table th:first-child,
.store-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.store-compare-table td {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.store-compare-yes {
  color: var(--blue);
  font-size: 1.2rem;
}

.store-compare-no {
  color: #ccc;
  font-size: 1.1rem;
}

.store-compare-addon {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  background: rgba(155, 92, 255, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
}

/* Why Choose */
.store-why {
  padding: 100px 0;
  background: #fff;
}

.store-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.store-why-card {
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.store-why-card:hover {
  transform: translateY(-4px);
}

.store-why-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.store-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.store-why-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.store-faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.store-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.store-faq-item.active {
  box-shadow: 0 8px 24px rgba(46, 88, 150, 0.08);
}

.store-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease;
}

.store-faq-question:hover {
  background: #f8faff;
}

.store-faq-question i {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.store-faq-item.active .store-faq-question i {
  transform: rotate(45deg);
}

.store-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.store-faq-item.active .store-faq-answer {
  max-height: 200px;
}

.store-faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Final CTA */
.store-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%);
}

.store-cta-panel {
  padding: 80px 56px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 35%, rgba(255, 78, 184, 0.2), transparent 26%),
    linear-gradient(135deg, #1873ff, #9b5cff);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.2);
}

.store-cta-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.store-cta-panel > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.store-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-cta-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-cta-actions .button i {
  font-size: 1.1rem;
}

/* Store Page Responsive */
@media (max-width: 1199px) and (min-width: 997px) {
  .store-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-plan-card {
    grid-column: span 1;
  }

  .store-plan-card-featured,
  .store-plan-card-aio {
    grid-column: auto;
  }
}

@media (max-width: 996px) {
  .store-hero {
    padding: 80px 0 60px;
  }

  .store-plans,
  .store-compare,
  .store-why,
  .store-faq,
  .store-cta {
    padding: 80px 0;
  }

  .store-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-plan-card {
    grid-column: span 1;
  }

  .store-plan-card-featured,
  .store-plan-card-aio {
    grid-column: auto;
  }

  .store-why-grid {
    grid-template-columns: 1fr;
  }

  .store-cta-panel {
    padding: 56px 36px;
  }
}

@media (max-width: 767px) {
  .store-hero {
    padding: 60px 0 48px;
  }

  .store-hero-copy h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .store-plans,
  .store-compare,
  .store-why,
  .store-faq,
  .store-cta {
    padding: 60px 0;
  }

  .store-plans-grid {
    grid-template-columns: 1fr;
  }

  .store-plan-card {
    grid-column: span 1;
  }

  .store-plan-card-featured,
  .store-plan-card-aio {
    grid-column: auto;
  }

  .store-section-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .store-cta-panel {
    padding: 44px 24px;
  }

  .store-cta-actions {
    flex-direction: column;
  }

  .store-cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}
