/* =============================================================================
   AI-OCR - Optimized & Complete CSS
   ============================================================================= */

/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #2B7BBF;
  --color-secondary: #6C7B8B;
  --color-accent: #E4345E;
  --color-dark: #17161E;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F8F9FA;
  --color-text: #2C3E50;
  --color-text-light: #6C7B8B;
  --color-border: #E1E8ED;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 6rem;

  /* Layout */
  --max-width: 1300px;
  --border-radius: 8px;
  --border-radius-lg: 100px;

  /* Effects */
  --box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --backdrop-blur: blur(10px);
}

.red-txt {
  color: var(--color-accent);
}

/* =============================================================================
   Reset & Base Styles
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, li {
  list-style: none;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
}

/* =============================================================================
   Layout Components
   ============================================================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}

main {
  width: 100%;
}

section {
  padding: var(--gap-xl) 0;
}

/* =============================================================================
   Typography
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--gap-sm);
}

.blue-txt {
  color: var(--color-primary);
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero-section {
  background: url(../images/bitmap/bg/protech-hero-bg.png) no-repeat center/cover;
  position: relative;
  padding:0 5% 3% 5%;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  overflow: hidden;
}

.hero-col {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 50%;
  align-items: center;
  gap: 60px;
  padding-top: 150px;
}

/* =============================================================================
   Header
   ============================================================================= */

.header {
  position: fixed;
  z-index: 99999;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
}

.header .white-logo {
  display: block;
  transition: var(--transition);
}

.header .color-logo {
  display: none;
  transition: var(--transition);
}

.header.scrolled .white-logo {
  display: none;
}

.header.scrolled .color-logo {
  display: block;
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  width: 300px;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 25px 28px 24px 28px;
  transition: all .3s;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  box-shadow: unset;
  transform: translate(4px, 4px);
}

.red-btn {
  background: var(--color-accent);
  color: white;
}

.red-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.red-outline:hover {
  background: var(--color-accent);
  color: white;
}

.download-btn-header {
  background: #E4345E;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.download-btn-header:hover {
  background:var(--color-accent);
  transform: translateY(-2px);
}

/* Ripple effect for buttons */


/* =============================================================================
   Content Areas
   ============================================================================= */

.content {
  padding: var(--gap-md) 0;
}

.main-title {
  font-size: 150px;
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  position: relative;
  height: 225px;
  overflow: hidden;
}

.subtitle {
  font-size: 44.4px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
  color: #fff;
}

.brand-name {
  font-size: 38px;
  color: white;
  font-weight: 700;
  margin-bottom: 40px;
}

/* =============================================================================
   CTA Buttons
   ============================================================================= */

.ctr-btn {
  display: flex !important;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.ctr-btn .btn {
  flex: 1;
  min-width: 180px;
}

/* =============================================================================
   Tabs
   ============================================================================= */

.tab-item {
  padding: var(--gap-sm) var(--gap-md);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.tab-item:hover {
  background: #F2DFDF;
  transform: translateX(3px);
}

.tab-item.active {
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}

.content-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   Slider & Visual Effects
   ============================================================================= */

.visual-section {
  position: relative;
}

.slide {
  display: none;
  transition: var(--transition);
}

.slide.active {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* Feature tags */
.feature-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--gap-xs) var(--gap-sm);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Progress bar */
.progress-fill {
  background: var(--color-primary);
  height: 100%;
  border-radius: inherit;
  transition: width 0.3s ease;
}

/* Floating icons */
.floating-icon {
  transition: transform 0.1s ease;
  will-change: transform;
}

/* =============================================================================
   Logo & Branding
   ============================================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 200px;
  overflow: hidden;
}

.logo-content {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: logoSlide 4s linear infinite;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6366f1;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================================================
   Title Animation
   ============================================================================= */

.title-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  animation: titleSlide 9s infinite;
}

.title-slide:nth-child(1) { animation-delay: 0s; }
.title-slide:nth-child(2) { animation-delay: 3s; }
.title-slide:nth-child(3) { animation-delay: 6s; }

/* =============================================================================
   Content Areas
   ============================================================================= */

.list-txt ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.list-txt ul li {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.list-txt ul li i {
  display: inline-block;
  width: 60px;
  height: 60px;
}

.list-txt ul li i.non-standard-docs {
  background: url(../images/vectors/icons/non-standard-docs.svg) no-repeat;
  background-size: contain;
}

.list-txt ul li i.masking {
  background: url(../images/vectors/icons/masking.svg) no-repeat;
  background-size: contain;
}
.list-txt ul li i.external-services {
  background: url(../images/vectors/icons/external-services.svg) no-repeat;
  background-size: contain;
}

.list-txt ul li i.validation {
  background: url(../images/vectors/icons/validation.svg) no-repeat;
  background-size: contain;
}


.wrap-items {
  margin-bottom: 60px;
}

/* =============================================================================
   Button Styles
   ============================================================================= */

.btn::before {
  background: url(../images/vectors/icons/arrow.svg) no-repeat;
  bottom: 0;
  content: "";
  height: 7px;
  width: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transition: all .3s;
  background-size: 100%;
}

.btn.red-outline::before {
  background: url(../images/vectors/icons/red-arrow.svg) no-repeat;
  bottom: 0;
  content: "";
  height: 7px;
  width: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transition: all .3s;
  background-size: 100%;
}

.btn:hover::before {
  right: 15px;
}

.red-btn {
  background: var(--color-accent);
  border: 4px solid var(--color-accent);
}

.btn.red-outline {
  border: 4px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 18px 36px;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-secondary:hover {
  background: white;
  color: #6366f1;
  transform: translateY(-2px);
}

/* =============================================================================
   Visual Section & Slides
   ============================================================================= */

.visual-container {
  position: relative;
  height: 600px;
}

.visual-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100px);
  animation: visualSlide 9s infinite;
}

.visual-slide img {
  width: 900px;
  margin-left: -100px;
  margin-top: -30px;
}

.visual-slide:nth-child(1) { animation-delay: 0s; }
.visual-slide:nth-child(2) { animation-delay: 3s; }
.visual-slide:nth-child(3) { animation-delay: 6s; }

.phone-mockup {
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

/* =============================================================================
   Partners Section
   ============================================================================= */

.partners-section {
  overflow: hidden;
  margin-top: 90px;
}

.partners-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.partners-container {
  width: 100%;
  overflow: hidden;
  background: white;
  padding: 40px 0;
}

.partners-grid {
  display: flex;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  border-radius: 12px;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

.partner-item img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-item:hover .partners-grid {
  animation-play-state: paused;
}

/* =============================================================================
   Tab Section
   ============================================================================= */

.content-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 30px;
  background: white;
  overflow: hidden;
  align-items: flex-start;
}

.sidebar {
  flex: 0 0 350px;
  width: 100% !important;
}

.tab-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-text a {
  color: #747378;
  text-decoration: none;
  padding: 8px 0px;
  width: 100%;
  display: block;
}

.tab-section h2 {
  font-size: 48px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
}

.tab-item.active {
  background: #fff;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(5px);
  font-weight: 500;
}

.tab-item.active a {
  color: var(--color-accent);
}

.tab-item.active::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  background: var(--color-accent);
  width: 8px;
  border-radius: 44px;
}

.tab-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a90e2;
  margin-right: 12px;
  flex-shrink: 0;
}

.tab-item.active .tab-icon {
  background: white;
}

.tab-text {
  font-size: 22px;
  font-style: normal;
  width: 100%;
  line-height: 1.5;
}

.tab-text .active {
  font-weight: 700;
}

.content-area {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-area h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.document-preview {
  padding: 20px;
  text-align: center;
  position: relative;
}

.content-panel img {
  width: 100%;
  height: auto;
}

.preview-header {
  background: #e9ecef;
  padding: 10px;
  margin: -20px -20px 20px -20px;
  border-radius: 6px 6px 0 0;
  font-size: 14px;
  font-weight: bold;
}

.form-preview {
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.highlighted-field {
  background: rgba(76, 175, 80, 0.3);
  border: 2px solid #4caf50;
  padding: 5px;
  margin: 5px 0;
  border-radius: 3px;
}

.feature-highlight {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  font-weight: bold;
  color: #856404;
}

.tech-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.demo-box {
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  width: 85%;
  transition: width 2s ease;
}

/* =============================================================================
   CTA Section
   ============================================================================= */

section.cta {
  padding: 0px 0;
}

section.cta .cta-section {
  border-radius: 50px;
  background: url(../images/bitmap/bg/cta-noise-bg.png) no-repeat;
  box-shadow: 0 0 50px 0 rgba(0, 10, 86, 0.20);
  background-size: cover;
  margin: 0 100px;
  height: 415px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

section.cta .cta-txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 38px;
  justify-content: center;
  align-items: center;
}

section.cta .cta-txt p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

section.cta .cta-txt img {
  width: 210px;
}

section.cta p {
  color: #fff;
}

section.cta .pc-ver {
  background: url(../images/vectors/illustration/cta-bg-2.svg) no-repeat;
  background-size: contain;
  background-position: right center;
}

section.cta .mob-ver {
  display: none;
}

section.middle-cta {
  margin-top: -240px;
  padding: 0;
}

/* =============================================================================
   Reading Section
   ============================================================================= */

section.reading img {
  width: 100%;
}

h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}

section.reading small {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 10px;
}

section.reading h4 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

section.reading ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  justify-content: center;
  align-items: center;
}

section.compatable-doc {
  background: #F2F2F5;
  padding-bottom: 230px !important;
}

section.compatable-doc img {
  width: 100%;
}

section.compatable-doc p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}

/* =============================================================================
   Usage Flow Section
   ============================================================================= */

section.usage-flow .flow ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
}

section.usage-flow .flow ul li {
  position: relative;
  text-align: center;
}

section.usage-flow .flow ul li:after {
  content: "";
  background: url(../images/vectors/icons/blue-arrow.svg) no-repeat;
  position: absolute;
  right: -55px;
  width: 36px;
  height: 50px;
  background-size: contain;
  top: 50%;
  transform: translate(0, -50%);
}

section.usage-flow .flow ul li:last-child:after {
  background: none !important;
}

section.usage-flow .flow ul li img {
  width: 90%;
}

section.usage-flow .flow h4 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

section.usage-flow .flow h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 30px;
  text-align: left;
}

/* =============================================================================
   FAQ Section
   ============================================================================= */

section.faq {
  background: url(../images/bitmap/bg/faq-bg.png);
  padding-bottom: 210px;
}

section.faq ul {
  margin: 0 100px;
}

section.faq ul li {
  background: #fff;
  padding: 24px;
  margin-bottom: 40px;
  border-radius: 10px;
}

section.faq ul li .question {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 0px 0 20px 0;
  border-bottom: 2px solid #F3F3F3;
  display: flex;
  align-items: center;
  gap: 24px;
}

section.faq ul li .answer {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding: 24px 0 0px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

section.faq ul li span.q-a-icon {
  font-family: Helvetica;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

section.faq ul li span.q-icon {
  color: #7DA4D6;
}

section.faq ul li span.a-icon {
  color: #E4345E;
}

/* =============================================================================
   Footer
   ============================================================================= */

footer {
  border-radius: 160px 160px 0 0;
  background: #fff;
  margin-top: -160px;
}

footer h5 {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
}

footer h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.2px;
}

footer p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.4px;
}

footer .footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 50px 0;
  margin: 0 100px;
}

footer .botom-footer {
  background: url(../images/bitmap/bg/footer-bottom-bg.png) repeat;
  padding: 20px 0px;
  background-size: 100%;
}

footer .botom-footer nav ul {
  display: flex;
  gap: 50px;
}

footer .botom-footer nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

footer .botom-footer nav ul li a:after {
  content: "|";
  position: absolute;
  line-height: 23px;
  right: -28px;
}

footer .botom-footer nav ul li:last-child a:after {
  content: "";
}

.bottom-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .copyright {
  color: #FFF;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .bottom-footer-wrap {
  gap: 75px;
}

footer .footer-menu {
  flex: 1 !important;
}

.footer-img a:hover .click  {
 display: none;
 transition: all 0.2s;
  
}

.footer-img a:hover .hover  {
 display: block
  
}

/* =============================================================================
   Animations
   ============================================================================= */

@keyframes titleSlide {
  0% { opacity: 0; transform: translateY(100px); }
  10% { opacity: 1; transform: translateY(0); }
  25% { opacity: 1; transform: translateY(0); }
  35% { opacity: 0; transform: translateY(-100px); }
  100% { opacity: 0; transform: translateY(-100px); }
}

@keyframes visualSlide {
  0% { opacity: 0; transform: translateX(100px); }
  10% { opacity: 1; transform: translateX(0); }
  25% { opacity: 1; transform: translateX(0); }
  35% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 0; transform: translateX(-100px); }
}

@keyframes logoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes documentFloat {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

@media only screen and (max-width: 1024px) {
  .visual-slide img {
    width: 145%;
    margin-top: 25px;
  }

  .list-txt ul li {
      font-size: 21px !important;
  }

  .main-title {
    font-size: 10vw !important;
    height: 16vw !important;
  }
  .hero-section {
    min-height: auto !important;
    padding: 0 5% 5% 5% !important;
  }

  section {
    padding: 30px 0 !important;
  }

  section.cta .cta-section {
    margin: 0 30px !important;
  }

  section.faq {
    padding-bottom: 210px !important;
  }

  .content-wrapper {
    display: flex !important;
    flex-direction: column-reverse;
  }

  .tab-item.active {
    width: 95% !important;
  }
}

@media only screen and (max-width: 768px) {
  .visual-section {
    text-align: center;
  }

  .visual-section img {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: -50px !important;
  }

  .btn {
    width: 100%;
    white-space: nowrap;
  }

  header .logo img {
    width: 100px;
  }

  .hero-section {
    border-radius: 0 0 70px 70px !important;
    padding: 0 5% 53px 5% !important;
    overflow: hidden;
  }

  .hero-col,
  section.reading ul,
  section.usage-flow .flow ul,
  footer .footer-wrap,
  section.cta .cta-section,
  section.cta .cta-section {
    grid-template-columns: 1fr !important;
  }

  .mob-ctr-btn {
    flex-direction: column;
    margin: -85px 30px 0 30px;
    gap: 16px;
  }

  .header {
    margin: 0 20px 0 20px !important;
    width: auto !important;
    padding: 12px !important;
  }

  .hero-col {
    padding-top: 90px !important;
  }

  .main-title {
    font-size: 20vw !important;
    height: 30vw !important;
    margin-bottom: 10px;
  }

  .download-btn-header {
    display: none;
  }

  .content-area h3 {
    font-size: 24px !important;
    line-height: 38px !important;
  }

  section.cta .cta-txt p {
    font-size: 18px !important;
    line-height: 28px !important;
  }

  .tab-item {
    width: 95% !important;
    padding: 4px !important;
  }

  .tab-text a {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }

  section.usage-flow .flow ul {
    gap: 100px !important;
  }

  section.cta .cta-section {
    text-align: center;
    height: unset !important;
  }

  .visual-container {
    height: 300px !important;
  }

  section {
    padding: 30px 0 !important;
  }

  .tab-text {
    font-size: 15px !important;
    line-height: unset !important;
  }

  section.usage-flow .flow ul li:after {
    bottom: -105px !important;
    transform: translate(0, -50%) rotate(90deg) !important;
    left: 50% !important;
    top: unset !important;
  }

  section.reading ul {
    gap: 25px !important;
  }

  .content-area,
  .sidebar {
    padding: 0 !important;
    width: 100% !important;
  }

  footer .botom-footer nav ul {
    gap: 20px !important;
  }

  .subtitle {
    font-size: 26.4px;
  }

  .partners-section {
    margin-top: 0;
  }

  .brand-name {
    font-size: 22px;
  }
  section.cta .cta-img {
    background-position: center bottom !important;
    height: 630px !important;
  }

  .brand-name {
    margin-bottom: 12px;
  }

  .visual-section.mob-slider {
    margin-top: 50px;
  }

  section.cta .cta-txt {
    display: flex !important;
    padding: 32px !important;
  }

  .content-wrapper {
    display: flex !important;
    flex-direction: column-reverse;
  }

  section.cta .mob-ver {
    background: url(../images/vectors/illustration/cta-mobile-img-1.svg) no-repeat;
    background-size: contain !important;
    display: block !important;
  }

  section.cta .cta-section {
    background-position: center !important;
  }

  section.cta .pc-ver {
    display: none;
  }

  .tags {
    justify-content: center !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  section.faq ul li .question {
    font-size: 18px !important;
  }

  section.faq ul li .answer {
    font-size: 16px !important;
    line-height: 27px !important;
  }

  section.faq ul li .answer {
    padding: 20px 0 0px 0 !important;
  }

  section.compatable-doc p {
    font-size: 18px !important;
    line-height: 30px !important;
    margin-bottom: 50px !important;
  }

  section.reading small {
    display: block !important;
    font-size: 12px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  footer {
    border-radius: 40px 40px 0 0 !important;
    margin-top: -30px !important;
  }

  footer .footer-wrap,
  section.faq ul,
  section.cta .cta-section {
    margin: 0 !important;
  }

  footer .footer-wrap {
    gap: 30px !important;
    padding: 60px 0 !important;
  }

  footer .bottom-footer-wrap {
    flex-direction: column;
    gap: 10px !important;
    align-items: flex-start;
  }

  footer .botom-footer nav ul li a {
    font-size: 14px;
  }

  footer .botom-footer nav ul li a:after {
    right: -14px !important;
  }

  footer p {
    font-size: 14px;
    line-height: 25px;
  }

  .pc-version {
    display: none;
  }
}

@media only screen and (max-width: 576px) {

  .list-txt ul li {
      font-size: 14px !important;
      gap: 8px !important;
  }
  .list-txt ul li i {
    width: 30px;
    height: 30px;
  }
  footer .botom-footer {
    padding: 10px 0px;
  }

  .visual-section img {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: -45px !important;
  }

  .hero-col {
    padding-top: 42px !important;
  }
    section.faq {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 480px) {
  .mob {
    display: block;
  }

  .pc {
    display: none !important;
  }

  section.cta .cta-img {
    height: 340px !important;
  }
}

/* Hide/show elements based on screen size */
.pc { display: block; }
.mob { display: none; }

@media (max-width: 768px) {
  .pc { display: none; }
  .mob { display: block; }

  .mob-slider { display: block; }
  .mob-ctr-btn { display: flex; }
}

/* =============================================================================
   Performance Optimizations
   ============================================================================= */

/* Improve rendering performance */
.header,
.btn,
.slide,
.floating-icon {
  will-change: transform;
}

/* Reduce layout shifts */
img[src*="placeholder"] {
  background: var(--color-bg-secondary);
}

/* Optimize animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}