* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
*,
*::before,
*::after {
  max-width: 100%;
}
* {
  cursor: default;
}
button,
a,
summary,
[role="button"],
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}
input,
textarea,
[contenteditable="true"] {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
img, video, svg {
  max-width: 100%;
  height: auto;
}
html {
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  min-width: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  color: #030213;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  font-weight: 600;
  margin: 0;
}
p {
  margin: 0;
}
h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.875rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }
h4 { font-size: 1.25rem; line-height: 1.4; }
p { line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
div {
  max-width: 100%;
}
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #666; }
* { scrollbar-width: thin; scrollbar-color: #888 #f5f5f5; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  overflow-x: hidden;
}
.section-padding {
  padding: 4rem 1rem;
}
.section-gray {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}
.gradient-text {
  background: linear-gradient(135deg, #06b6d4, #3b82f6, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb a {
  color: #374151;
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb-separator {
  color: #6b7280;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.breadcrumb span:not(.breadcrumb-separator) {
  font-weight: 600;
  color: #111827;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  max-width: 100vw;
}
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
  }
  .header-top {
    width: auto;
    flex: 0 0 auto;
    display: contents;
  }
  .logo {
    order: 1;
  }
  .menu {
    order: 2;
  }
  .header-actions {
    order: 3;
  }
  .menu-button {
    display: none;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}
.logo-icon {
  position: relative;
  width: 44px;
  height: 44px;
}
.logo-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #a855f7);
  border-radius: 0.5rem;
  opacity: 0.6;
  filter: blur(8px);
}
.logo-main {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}
.logo-shield {
  width: 32px;
  height: 32px;
  color: white;
}
.logo-key {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 16px;
  height: 16px;
  color: white;
}
.logo-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-subtitle {
  font-size: 0.75rem;
  color: #06b6d4;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1;
}
.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #06b6d4;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.qr-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: transparent;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s;
}
.qr-button:hover {
  border-color: #06b6d4;
  background: #ecfeff;
  color: #06b6d4;
}
.qr-button svg {
  width: 20px;
  height: 20px;
}
.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #374151;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: none;
}
.menu-button.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-button.active span:nth-child(2) {
  opacity: 0;
}
.menu-button.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 40;
}
.menu.active {
  display: flex;
}
@media (min-width: 768px) {
  .menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    padding: 0;
    box-shadow: none;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  .menu-button {
    display: none !important;
  }
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.menu-item:hover {
  background: #f9fafb;
  color: #06b6d4;
  border-left-color: #06b6d4;
}
.menu-item svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .menu-item {
    padding: 0.5rem 0.75rem;
    border-left: none;
    border-radius: 8px;
    font-size: 0.875rem;
  }
  .menu-item:hover {
    background: rgba(6, 182, 212, 0.1);
    border-left-color: transparent;
  }
  .menu-item svg {
    width: 18px;
    height: 18px;
  }
}
.hero-section {
  position: relative;
  min-height: 100dvh;
  background: linear-gradient(135deg, #ffffff 0%, #ecfeff 50%, #dbeafe 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}
.hero-glow-1 {
  top: 5%;
  left: 5%;
  background: rgba(34, 211, 238, 0.1);
  animation: pulse 2s infinite;
}
.hero-glow-2 {
  bottom: 5%;
  right: 5%;
  background: rgba(59, 130, 246, 0.1);
  animation: pulse 2s infinite 1s;
}
.hero-glow-3 {
  top: 40%;
  left: 20%;
  background: rgba(168, 85, 247, 0.05);
  animation: pulse 2s infinite 2s;
}
@media (min-width: 768px) {
  .hero-glow {
    width: 384px;
    height: 384px;
    filter: blur(60px);
  }
  .hero-glow-1 {
    top: 0;
    left: 25%;
  }
  .hero-glow-2 {
    bottom: 0;
    right: 25%;
  }
  .hero-glow-3 {
    top: 50%;
    left: 50%;
  }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
@media (min-width: 640px) {
  .hero-grid {
    background-size: 100px 100px;
  }
}
.hero-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  overflow-x: hidden;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #a5f3fc;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: #0891b2;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}
.hero-title {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
.hero-title-normal {
  color: #111827;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #0891b2, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.7;
}
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.hero-button:hover {
  background: linear-gradient(135deg, #0891b2, #2563eb);
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}
.hero-button svg {
  width: 20px;
  height: 20px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .hero-badges {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-badges {
    justify-content: flex-start;
  }
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.badge-icon svg {
  width: 20px;
  height: 20px;
}
.badge-green {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #16a34a;
}
.badge-blue {
  background: #dbeafe;
  border: 1px solid #93c5fd;
  color: #2563eb;
}
.badge-purple {
  background: #f3e8ff;
  border: 1px solid #d8b4fe;
  color: #9333ea;
}
.badge-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.badge-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }
}
.stat-item {
  text-align: center;
}
@media (min-width: 1024px) {
  .stat-item {
    text-align: left;
  }
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0891b2, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 640px) {
  .stat-value {
    font-size: 2rem;
  }
}
.stat-label {
  font-size: 0.875rem;
  color: #4b5563;
}
.hero-visual {
  position: relative;
  display: block;
  z-index: 10;
}
.security-card {
  position: relative;
  background: #f0f9ff;
  backdrop-filter: blur(20px);
  border: 1px solid #e0f2fe;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .security-card {
    padding: 2rem;
    margin-top: 0;
  }
}
.card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.card-icon {
  width: 24px;
  height: 24px;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
}
.card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.card-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.card-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
}
.rating-item:last-child {
  margin-bottom: 0;
}
.grade-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 1.875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #047857;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.risk-low {
  font-weight: 500;
  color: #16a34a;
}
.check-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
}
.check-item:last-child {
  margin-bottom: 0;
}
.check-pass {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a34a;
  font-weight: 500;
}
.check-pass svg {
  width: 16px;
  height: 16px;
}
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #a5f3fc;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: #0891b2;
  margin-bottom: 1.5rem;
}
.section-badge svg {
  width: 16px;
  height: 16px;
}
.section-title,
.faq-section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title span:first-child,
.faq-section-title span:first-child {
  color: #111827;
}
.section-description,
.faq-section-description {
  font-size: 1.25rem;
  color: #4b5563;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.feature-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.feature-blue { background: linear-gradient(135deg, #3b82f6, #9333ea); }
.feature-purple { background: linear-gradient(135deg, #9333ea, #ec4899); }
.feature-pink { background: linear-gradient(135deg, #ec4899, #ef4444); }
.feature-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.feature-green { background: linear-gradient(135deg, #10b981, #059669); }
.feature-orange { background: linear-gradient(135deg, #f97316, #eab308); }
.feature-yellow { background: linear-gradient(135deg, #eab308, #10b981); }
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}
.trust-badge:hover {
  border-color: #06b6d4;
  color: #06b6d4;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}
.trust-badge svg {
  flex-shrink: 0;
}
.trust-badge-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-dot-green {
  background-color: #10b981;
}
.trust-dot-blue {
  background-color: #3b82f6;
}
.trust-dot-purple {
  background-color: #9333ea;
}
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}
.step-icon-badge {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
  flex-shrink: 0;
}
.step-icon-badge svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke-width: 2;
}
.step-number-line {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}
.step-number-badge {
  font-size: 1rem;
  font-weight: 600;
  color: #06b6d4;
  flex-shrink: 0;
}
.step-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(6, 182, 212, 0.3);
}
.step-content {
  grid-column: 2;
  grid-row: 2;
}
.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.step-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
.security-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.security-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}
.security-glow-1 {
  top: 0;
  left: 25%;
  background: rgba(252, 231, 243, 0.5);
}
.security-glow-2 {
  bottom: 0;
  right: 25%;
  background: rgba(254, 243, 199, 0.5);
}
.section-badge.badge-red {
  background: white;
  border: 1px solid #fecaca;
  color: #dc2626;
}
.gradient-red {
  background: linear-gradient(90deg, #dc2626, #ea580c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.threats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}
.threat-card {
  position: relative;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
.threat-card:hover {
  border-color: #fca5a5;
  box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.1);
  transform: translateY(-4px);
}
.threat-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.threat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}
.threat-red { background: linear-gradient(135deg, #dc2626, #db2777); }
.threat-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.threat-blue { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.threat-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.threat-yellow { background: linear-gradient(135deg, #eab308, #ea580c); }
.threat-orange { background: linear-gradient(135deg, #ea580c, #dc2626); }
.threat-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.threat-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.threat-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b91c1c;
}
.protection-banner {
  position: relative;
  padding-bottom: 1rem;
}
.protection-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 1.5rem;
  filter: blur(40px);
}
.protection-banner {
  position: relative;
  padding-bottom: 0;
}

.protection-glow {
  display: none;
}

.protection-content {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.5rem;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .protection-content {
    grid-template-columns: 1fr 1fr;
  }
}
.protection-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
}
.protection-badge svg {
  width: 1rem;
  height: 1rem;
  color: #15803d;
}
.protection-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #15803d;
}
.protection-left h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}
.protection-left p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}
.protection-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .protection-features {
    flex-direction: row;
    gap: 1rem;
  }
}
.protection-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.protection-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.protection-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.protection-feature-icon.feature-green {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}
.protection-feature-icon.feature-green svg {
  color: #16a34a;
}
.protection-feature-icon.feature-blue {
  background: #dbeafe;
  border: 1px solid #93c5fd;
}
.protection-feature-icon.feature-blue svg {
  color: #2563eb;
}
.protection-feature-title {
  color: #111827;
  font-weight: 600;
}
.protection-feature-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}
.protection-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .protection-stats-grid {
    gap: 1.5rem;
  }
}
.protection-stat {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .protection-stat {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}
.protection-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .protection-stat-value {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
}
.protection-stat-label {
  color: #6b7280;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .protection-stat-label {
    font-size: 0.875rem;
  }
}
.cta-section {
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(135deg, #ffffff, #ecfeff, #dbeafe);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-glow-1 {
  top: 25%;
  left: 25%;
  background: rgba(165, 243, 252, 0.4);
  animation: pulse 4s ease-in-out infinite;
}
.cta-glow-2 {
  bottom: 25%;
  right: 25%;
  background: rgba(191, 219, 254, 0.4);
  animation: pulse 4s ease-in-out infinite 1s;
}
.cta-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}
.cta-card {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.05rem;
}
.cta-decorative {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-decorative-1 {
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(165, 243, 252, 0.3), transparent);
}
.cta-decorative-2 {
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(191, 219, 254, 0.3), transparent);
}
.cta-content {
  position: relative;
  background: white;
  border: none;
  border-radius: 1.5rem;
  padding: 1rem 1rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .cta-content {
    padding: 4rem;
  }
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #a5f3fc;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-badge svg {
  width: 1rem;
  height: 1rem;
  color: #06b6d4;
}
.cta-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #06b6d4;
}
.cta-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}
.cta-title span:first-child {
  color: #111827;
}
.cta-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.cta-trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.cta-trust-icon.trust-green {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}
.cta-trust-icon.trust-green svg {
  color: #16a34a;
}
.cta-trust-icon.trust-blue {
  background: #dbeafe;
  border: 1px solid #93c5fd;
}
.cta-trust-icon.trust-blue svg {
  color: #2563eb;
}
.cta-trust-icon.trust-purple {
  background: #f3e8ff;
  border: 1px solid #d8b4fe;
}
.cta-trust-icon.trust-purple svg {
  color: #9333ea;
}
.cta-trust-title {
  color: #111827;
  font-weight: 600;
  text-align: left;
}
.cta-trust-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  text-align: left;
}
.cta-footer {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}
.pricing-cards-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  .pricing-cards-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-card-new {
  position: relative;
}
.pricing-popular-badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pricing-card-inner {
  height: 100%;
  background: linear-gradient(135deg, #ecfeff, #dbeafe);
  border: 2px solid #a5f3fc;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}
.pricing-featured .pricing-card-inner {
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}
.pricing-card-new:not(.pricing-featured) .pricing-card-inner {
  background: white;
  border-color: #e0e7ff;
}
.pricing-card-inner:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.pricing-icon-wrapper {
  display: inline-flex;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pricing-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: white;
}
.pricing-icon-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6, #1e40af);
}
.pricing-icon-purple {
  background: linear-gradient(135deg, #9333ea, #6366f1, #581c87);
}
.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.pricing-plan-name-light {
  font-weight: 500;
}
.pricing-plan-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pricing-prefix {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 500;
}
.pricing-currency {
  font-size: 1.125rem;
  color: #111827;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
}
.pricing-amount-light {
  font-weight: 500;
}
.pricing-period {
  color: #6b7280;
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  border: none;
  cursor: pointer;
}
.pricing-cta-primary {
  background: linear-gradient(180deg, #06b6d4, #3b82f6);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
  border: none;
}
.pricing-cta-primary:hover {
  background: linear-gradient(90deg, #0891b2, #2563eb);
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}
.pricing-cta-secondary {
  background: white;
  border: 2px solid #c4b5fd;
  color: #7c3aed;
}
.pricing-cta-secondary:hover {
  background: #f5f3ff;
  border-color: #a78bfa;
}
.pricing-trial-note {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.pricing-feature-item span {
  color: #374151;
  font-size: 0.875rem;
}
.pricing-bottom-info {
  text-align: center;
}
.pricing-bottom-text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.pricing-bottom-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.pricing-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-badge-item svg {
  width: 1.25rem;
  height: 1.25rem;
}
.pricing-badge-item:nth-child(1) svg {
  color: #16a34a;
}
.pricing-badge-item:nth-child(2) svg {
  color: #2563eb;
}
.pricing-badge-item:nth-child(3) svg {
  color: #06b6d4;
}
.pricing-badge-item span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.3s ease;
}
.faq-item summary:hover {
  background-color: #f9fafb;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  display: none;
}
.faq-chevron {
  width: 1.5rem;
  height: 1.5rem;
  color: #06b6d4;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  color: #6b7280;
  line-height: 1.75;
  font-size: 1rem;
}
.contact-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #5B47D5 0%, #6B4BA8 50%, #D946A6 100%);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(91, 71, 213, 0.45), 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.015em;
  position: relative;
  overflow: hidden;
}
.contact-support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.contact-support-btn:hover::before {
  left: 100%;
}
.contact-support-btn:hover {
  background: linear-gradient(135deg, #6B4BA8 0%, #5B47D5 50%, #D946A6 100%);
  box-shadow: 0 8px 25px rgba(91, 71, 213, 0.55), 0 4px 10px rgba(107, 75, 168, 0.35);
  transform: translateY(-3px);
}
.contact-support-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 71, 213, 0.45), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact-support-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact-support-btn:hover svg {
  transform: rotate(12deg) scale(1.1);
}
.contact-bottom-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.625rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
@media (min-width: 640px) {
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.contact-card a {
  font-size: 1.25rem;
  color: #06b6d4;
  font-weight: 600;
}
.contact-card a:hover {
  color: #0891b2;
  text-decoration: underline;
}
.footer {
  background: #f9fafb;
  padding: 4rem 1rem 1.5rem;
}
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 3fr;
  }
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-column h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-column a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.3s;
}
.footer-column a:hover {
  color: #06b6d4;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: #6b7280;
}
.footer .logo-subtitle {
  font-weight: 500 !important;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.active {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 320px;
  width: min(90vw, 320px);
  max-height: calc(100dvh - 32px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: auto;}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  z-index: 2;
}

.modal-close::before {
  content: "";
  position: absolute;
  inset: -6px;
}
.modal-close:hover {
  background: #e5e7eb;
}
.modal-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #111827;
}
#qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}
.modal-content p {
  color: #6b7280;
}
@media (max-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .price {
    font-size: 2.5rem;
  }
}
.contact-anchor-offset {
  margin-top: 5rem;
  scroll-margin-top: 5rem;
}
.contact-section-wrap {
  position: relative;
}
.contact-section-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.08),
    transparent 70%
  );
  border-radius: 1.5rem;
}
.contact-panel {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.contact-content-wrap {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.contact-icon-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon-box-cyan-blue {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}
.contact-icon-box-blue-purple {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.contact-icon-box-purple-pink {
  background: linear-gradient(135deg, #9333ea, #ec4899);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.25);
}
.contact-icon-svg-lg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-icon-svg-md {
  width: 1.125rem;
  height: 1.125rem;
}
.contact-support-copy {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.contact-cta-row {
  display: flex;
  justify-content: center;
}
.contact-trust-wrap {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.contact-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.contact-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
}
.contact-trust-dot-green {
  background-color: #10b981;
}
.contact-trust-dot-blue {
  background-color: #3b82f6;
}
.contact-trust-dot-purple {
  background-color: #9333ea;
}
.contact-trust-dot-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.contact-trust-text {
  color: #6b7280;
}
.faq-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.faq-section-badge-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(6, 182, 212);
}
.faq-section-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(6, 182, 212);
}
.contact-modal-shell {
  max-width: 500px;
  width: min(92vw, 500px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  margin: auto;
  -webkit-overflow-scrolling: touch;
}
.contact-modal-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  border-radius: 0;
}
.contact-modal-close-button:hover {
  opacity: 1;
  background: transparent;
}
.contact-modal-header {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  padding: 2rem;
  color: #ffffff;
  position: relative;
}
.contact-modal-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-modal-header-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.contact-modal-header-icon {
  width: 2rem;
  height: 2rem;
}
.contact-modal-title {
  margin: 0 !important;
  margin-bottom: 0 !important;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
}
.contact-modal-form {
  padding: 2rem;
  overflow: visible;
}
.contact-form-field {
  margin-bottom: 1.25rem;
}
.contact-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
}
.contact-form-label-icon {
  width: 1.125rem;
  height: 1.125rem;
}
.contact-form-required {
  color: #ef4444;
}
.contact-form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.contact-form-textarea {
  resize: vertical;
  font-family: inherit;
}
.contact-form-error {
  margin: 0.375rem 0 0 0;
  font-size: 0.75rem;
  color: #ef4444!important;
  display: none;
}
.contact-form-privacy-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.5rem;
  padding: 0.875rem;
  margin-bottom: 1.5rem;
}
.contact-form-privacy-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #0369a1;
}
.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-form-submit-button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}
.contact-form-submit-icon {
  width: 1rem;
  height: 1rem;
}
.contact-form-cancel-button {
  width: 100%;
  padding: 0.875rem;
  background: #ffffff;
  color: #64748b;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-form-cancel-button:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.contact-success-panel {
  display: none;
  padding: 0;
}
.contact-success-header {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 1.5rem;
  color: #ffffff;
  position: relative;
}
.contact-success-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  line-height: 1;
  padding: 0;
  border-radius: 0;
}
.contact-success-close-button:hover {
  opacity: 1;
  background: transparent;
}
.contact-success-header-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.contact-success-header-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.contact-success-header-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-success-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.contact-success-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
}
.contact-success-body {
  padding: 2.5rem 2rem;
  text-align: center;
  background: #ffffff;
}
.contact-success-check-wrap {
  width: 5rem;
  height: 5rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-success-check-icon {
  width: 2.5rem;
  height: 2.5rem;
}
.contact-success-body-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.contact-success-body-text {
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}
.contact-success-body-text-last {
  margin: 0;
}
.contact-success-email {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0ea5e9;
}
.contact-success-ok-button {
  margin-top: 1.75rem;
  padding: 0.75rem 2.5rem;
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.contact-success-ok-button:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}
@media (max-width: 640px) {
  #qrModal,
  #contactModal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }
  #qrModal.active,
  #contactModal.active {
    display: flex !important;
  }
  #qrModal .modal-backdrop,
  #contactModal .modal-backdrop {
    position: absolute !important;
    inset: 0 !important;
  }
  #contactModal .contact-modal-shell {
    position: relative !important;
    z-index: 1 !important;
    width: min(92vw, 420px) !important;
    max-width: 420px !important;
    max-height: calc(100dvh - 32px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }
  #contactModal .contact-modal-header,
  #contactModal .contact-success-header {
    flex-shrink: 0 !important;
  }
  #contactModal .contact-modal-form,
  #contactModal .contact-success-body {
    overflow: visible !important;
  }
  #contactModal .contact-modal-header {
    padding: 1.25rem 1.25rem 1rem;
  }
  #contactModal .contact-modal-form {
    padding: 1rem;
  }
  #contactModal .contact-form-field {
    margin-bottom: 1rem;
  }
  #contactModal .contact-form-input {
    font-size: 16px;
    padding: 0.75rem;
  }
  #contactModal .contact-form-textarea {
    min-height: 120px;
    max-height: 180px;
  }
  #contactModal .contact-form-submit-button,
  #contactModal .contact-form-cancel-button,
  #contactModal .contact-success-ok-button {
    min-height: 44px;
  }
  #contactModal .contact-modal-close-button,
  #contactModal .contact-success-close-button {
    top: 0.75rem;
    right: 0.75rem;
  }
  #contactModal .contact-modal-description {
    margin-top: 0.75rem;
  }
  #qrModal.active {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  #qrModal .modal-content {
    position: relative !important;
    z-index: 1 !important;
    width: min(320px, calc(100vw - 32px)) !important;
    max-width: min(320px, calc(100vw - 32px)) !important;
    max-height: calc(100dvh - 32px) !important;
    margin: 0 auto !important;
    padding: 24px 20px 28px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
  }
  #qrModal #qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
  }
  #qrModal #qrcode canvas,
  #qrModal #qrcode img {
    display: block;
    width: 220px !important;
    height: 220px !important;
    margin: 0 auto;
  }
  #qrModal .modal-content h2,
  #qrModal .modal-content p {
    text-align: center;
  }
}
.connect-page-body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #ecfeff 50%, #dbeafe 100%);
  min-height: 100vh;
  overflow: hidden;
}
.connect-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  box-sizing: border-box;
}
.connect-modal-content {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  max-width: 280px;
  width: 80%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  box-sizing: border-box;
  margin: auto;
  position: relative;
}
.connect-modal-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #afb0b4;
}
.connect-modal-text {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.connect-accept-button {
  width: 100%;
  background: linear-gradient(135deg, #8947f3, #3f32d3);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.4);
}
.connect-accept-button:hover {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}
.connect-accept-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 640px) {
  .connect-modal-content {
    padding: 1.25rem 1rem;
    max-width: 85%;
    width: 75%;
  }
  .connect-modal-title {
    font-size: 1.25rem;
  }
  .connect-modal-text {
    font-size: 0.875rem;
  }
}
.scan-page-body,
.result-page-body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #581c87 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.scan-modal-overlay,
.result-modal-overlay {
  background: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #581c87 100%);
}

.scan-modal-header,
.result-modal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.scan-modal-header-container,
.result-modal-header-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scan-modal-header-left,
.result-modal-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scan-modal-header-icon,
.result-modal-header-icon {
  position: relative;
  width: 44px;
  height: 44px;
}

.scan-modal-header-icon-bg,
.result-modal-header-icon-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.scan-modal-header-icon-main,
.result-modal-header-icon-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-modal-header-icon-glow,
.result-modal-header-icon-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  filter: blur(8px);
  z-index: -1;
}

.scan-modal-header-icon svg,
.result-modal-header-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
}

.scan-modal-header-text h1,
.result-modal-header-text h1 {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scan-modal-header-text p,
.result-modal-header-text p {
  font-size: 0.875rem;
  color: #dbeafe;
}

.scan-modal-close-button,
.result-modal-close-button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.scan-modal-close-button {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.result-modal-close-button {
  cursor: pointer;
  transition: all 0.3s ease;
}

.result-modal-close-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scan-modal-close-button svg,
.result-modal-close-button svg {
  width: 20px;
  height: 20px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scan-modal-content,
.result-modal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 6.5rem 1.25rem 2rem;
}

.scan-wallet-section,
.scan-scanning-section,
.result-wallet-section,
.result-results-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
}

.scan-wallet-section,
.result-wallet-section {
  margin-bottom: 1rem;
}

.scan-wallet-section-header,
.scan-scanning-section-header,
.result-wallet-section-header,
.result-results-section-header {
  margin-bottom: 0.75rem;
}

.scan-wallet-section-title,
.scan-scanning-section-title,
.result-wallet-section-title,
.result-results-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.scan-wallet-section-icon,
.scan-scanning-section-icon,
.result-wallet-section-icon,
.result-results-section-icon {
  width: 24px;
  height: 24px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scan-wallet-section-icon,
.result-wallet-section-icon {
  background: #dcfce7;
}

.scan-scanning-section-icon,
.result-results-section-icon {
  background: #dbeafe;
}

.scan-wallet-section-icon svg,
.scan-scanning-section-icon svg,
.result-wallet-section-icon svg,
.result-results-section-icon svg {
  width: 14px;
  height: 14px;
}

.scan-wallet-section-icon svg,
.result-wallet-section-icon svg {
  color: #16a34a;
}

.scan-scanning-section-icon svg,
.result-results-section-icon svg {
  color: #2563eb;
}

.scan-wallet-section-title h2,
.scan-scanning-section-title h2,
.result-wallet-section-title h2,
.result-results-section-title h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
}

.scan-wallet-section-subtitle,
.scan-scanning-section-subtitle,
.result-wallet-section-subtitle,
.result-results-section-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.scan-wallet-info,
.result-wallet-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.scan-wallet-info-left,
.result-wallet-info-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.scan-wallet-logo,
.result-wallet-logo {
  width: 56px;
  height: 56px;
}

.scan-wallet-logo.is-hidden,
.result-wallet-logo.is-hidden {
  display: none;
}

.scan-wallet-details p:first-child,
.result-wallet-details p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.scan-wallet-details p:last-child,
.result-wallet-details p:last-child {
  font-size: 0.75rem;
  color: #6b7280;
  font-family: monospace;
}

.scan-progress-container {
  width: 100%;
}

.scan-progress-container-large {
  padding-top: 0.25rem;
}

.scan-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.scan-progress-header span:first-child {
  font-weight: 500;
}

.scan-progress-header span:last-child {
  font-weight: 600;
}

.scan-progress-bar-bg {
  width: 100%;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.scan-progress-bar-bg-large {
  height: 18px;
}

.scan-progress-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
  background-size: 200% 100%;
  transition: width 0.3s ease;
  animation: gradient-shift 3s ease infinite;
}

.scan-progress-status {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.scan-step-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.scan-step-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.scan-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #cbd5e1;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.scan-step-item.is-active {
  color: #111827;
  font-weight: 600;
}

.scan-step-item.is-active .scan-step-dot {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.scan-step-item.is-complete {
  color: #475569;
}

.scan-step-item.is-complete .scan-step-dot {
  background: #10b981;
}

.result-rating-box,
.result-report-box,
.result-checks-box {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
}

.result-report-box,
.result-checks-box {
  margin-top: 0.75rem;
}

.result-rating-box h3,
.result-report-box h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.result-rating-row,
.result-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-rating-row,
.result-check-row {
  margin-bottom: 0.625rem;
}

.result-rating-row:last-child,
.result-check-row:last-child {
  margin-bottom: 0;
}

.result-rating-label,
.result-check-label {
  font-size: 0.875rem;
  color: #374151;
}

.result-rating-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.result-grade-circle {
  position: relative;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 1.875rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: none;
  opacity: 0;
  transform: translateX(-20px);
}

.result-grade-circle span {
  transform: translateY(-2px);
}

.result-grade-placeholder {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-grade-placeholder span {
  font-size: 1.875rem;
  font-weight: 700;
  color: transparent;
  transform: translateY(-2px);
}

.result-risk-value {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-risk-value span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #16a34a;
}

.result-risk-placeholder span {
  color: transparent;
}

.result-check-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
}

.result-check-status.visible {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.result-check-status svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.result-check-status span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #16a34a;
}

.result-check-status.result-check-danger svg {
  color: #dc2626;
}

.result-check-status.result-check-danger span {
  color: #dc2626;
}

.result-risk-value span.result-risk-danger {
  color: #dc2626;
}

.result-report-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b5563;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes result-fade-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.result-animate-fade-in {
  animation: result-fade-in 0.5s ease forwards;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #ffffff;
  padding: 1.3rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: clamp(0.85rem, 4vw, 1rem);
  line-height: 1;
  border: none;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.28);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-button:hover {
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 32px -8px rgba(6, 182, 212, 0.35);
}
.cta-button:visited,
.cta-button:active {
  color: #ffffff;
}
.logo-text { min-width: 0; }
@media (max-width: 640px) {
  .header-container {
    box-sizing: border-box;
  }
  .logo-text {
    min-width: 0;
  }
}
body.top-page .header {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid #d1d5db !important;
  box-shadow: 0 1px 10px rgba(15, 23, 42, 0.06) !important;
}
body.top-page {
  padding-top: 76px;
}
body.top-page main {
  position: relative;
  z-index: 1;
}
body.top-page .hero-section {
  min-height: calc(100dvh - 76px);
  padding-top: 0;
}
body.top-page #header {
  position: relative;
  z-index: 9999;
}
body.top-page .header {
  z-index: 9999 !important;
}
@media (max-width: 640px) {
  body.top-page {
    padding-top: 72px;
  }
  body.top-page .hero-section {
    min-height: calc(100dvh - 72px);
  }
}
.contact-modal-header-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-modal-header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  gap: 0;
}
.contact-modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff !important;
}
.contact-modal-header .contact-modal-subtitle {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  opacity: 0.95;
  text-align: left;
}
.contact-modal-header .contact-modal-description {
  margin: 1rem 0 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff !important;
  opacity: 0.9;
  width: 100%;
  max-width: none;
  text-align: left;
}
.contact-modal-header .contact-modal-title,
.contact-modal-header .contact-modal-subtitle,
.contact-modal-header .contact-modal-description {
  display: block;
}
.contact-modal-header p.contact-modal-subtitle,
.contact-modal-header p.contact-modal-description {
  color: #ffffff !important;
}
section {
  scroll-margin-top: 76px;
}
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.page-transition-overlay.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

#contactModal input.contact-form-input[type="text"],
#contactModal input.contact-form-input[type="email"] {
  height: 56px;
  padding: 0 16px;
  line-height: normal;
  -webkit-appearance: none;
  appearance: none;
}
@media (min-width: 768px) {
  .pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2rem;
  }
}
      
.scan-guide-page{min-height:100vh;background:linear-gradient(135deg,#ffffff 0%,#f0f9ff 50%,#e0f2fe 100%);padding:7rem 1rem 4rem;}
.scan-guide-page .breadcrumb,.scan-guide-page .page-header{max-width:64rem;margin-left:auto;margin-right:auto;}
.scan-guide-page .breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#6b7280;margin-bottom:2rem;}
.scan-guide-page .breadcrumb a{color:#111827;text-decoration:none;transition:color .2s;font-weight:400;}
.scan-guide-page .breadcrumb a:hover{color:#374151;}
.scan-guide-page .breadcrumb-separator{color:#d1d5db;font-weight:400;}
.scan-guide-page .breadcrumb-current{display:flex;align-items:center;gap:.375rem;color:#111827;font-weight:600;}
.scan-guide-page .breadcrumb-icon,.scan-guide-page .currency-badge-icon{background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.scan-guide-page .breadcrumb-icon{width:1.6rem;height:1.6rem;}
.scan-guide-page .breadcrumb-icon svg{width:.75rem;height:.75rem;color:#fff;}
.scan-guide-page .page-header{text-align:center;margin-bottom:3rem;}
.scan-guide-page .page-title{font-size:3rem;font-weight:500;margin-bottom:1.5rem;line-height:1.2;color:#111827;}
.scan-guide-page .title-line1,.scan-guide-page .title-line2{display:inline-block;background:linear-gradient(90deg,#0ea5e9 0%,#8b5cf6 100%);-webkit-background-clip:text;background-clip:text;color:transparent!important;-webkit-text-fill-color:transparent!important;}
.scan-guide-page .currency-badge{display:inline-flex;align-items:center;gap:.25rem;background:#fff;border:2px solid #e5e7eb;border-radius:9999px;padding:.4rem 1rem;margin-bottom:1rem;}
.scan-guide-page .currency-badge-icon{width:3rem;height:3rem;}
.scan-guide-page .currency-badge-icon svg{width:1.5rem;height:1.5rem;color:#fff;}
.scan-guide-page .currency-badge-text{font-size:1.125rem;font-weight:600;color:#111827;}
.scan-guide-page .page-subtitle,.scan-guide-page .step-description{font-size:1rem;color:#6b7280;}
.scan-guide-page .page-subtitle{margin-bottom:3rem;}
.scan-guide-page .step-section{max-width:64rem;margin:0 auto 4rem;background:#fff;border:2px solid #e5e7eb;border-radius:1.5rem;padding:3rem 2rem;box-shadow:0 4px 12px rgba(0,0,0,.08);}
.scan-guide-page .step-header{text-align:center;margin-bottom:2rem;}
.scan-guide-page .step-number{width:3rem;height:3rem;background:#dbeafe;color:#1e40af;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin:0 auto 1rem;}
.scan-guide-page .step-title{font-size:1.75rem;font-weight:600;color:#111827;margin-bottom:.5rem;}
.scan-guide-page .scan-methods,.scan-guide-page .info-boxes,.scan-guide-page .analyze-list,.scan-guide-page .report-list{display:grid;grid-template-columns:1fr;gap:1.5rem;}
.scan-guide-page .scan-methods{margin-bottom:2rem;}
@media (min-width:768px){.scan-guide-page .scan-methods{grid-template-columns:repeat(2,1fr);}}
.scan-guide-page .scan-card,.scan-guide-page .analyze-item,.scan-guide-page .report-item{background:#fff;border:2px solid #e5e7eb;transition:all .3s;}
.scan-guide-page .scan-card{border-radius:1.5rem;padding:2rem;min-width:0;width:100%;max-width:100%;overflow:hidden;}
.scan-guide-page .analyze-item{border-radius:1rem;padding:1.5rem;}
.scan-guide-page .report-item{display:flex;align-items:flex-start;gap:.75rem;border-radius:.75rem;padding:1.25rem;}
.scan-guide-page .scan-card:hover,.scan-guide-page .analyze-item:hover,.scan-guide-page .report-item:hover{border-color:#0ea5e9;box-shadow:0 4px 12px rgba(14,165,233,.1);}
.scan-guide-page .scan-card:hover{box-shadow:0 10px 30px rgba(14,165,233,.15);transform:translateY(-2px);}
.scan-guide-page .scan-card-header,.scan-guide-page .analyze-header,.scan-guide-page .security-notice-header,.scan-guide-page .info-box-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem;}
.scan-guide-page .scan-card-header{margin-bottom:1.5rem;min-width:0;width:100%;}
.scan-guide-page .scan-icon{width:3rem;height:3rem;border-radius:.75rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.scan-guide-page .scan-icon.website{background:linear-gradient(135deg,#3b82f6 0%,#2563eb 100%);}
.scan-guide-page .scan-icon.dapp{background:linear-gradient(135deg,#8b5cf6 0%,#7c3aed 100%);}
.scan-guide-page .scan-icon svg{width:1.5rem;height:1.5rem;color:#fff;}
.scan-guide-page .scan-card-title{font-size:1.25rem;font-weight:600;color:#111827;flex:1;min-width:0;line-height:1.3;overflow-wrap:anywhere;word-break:break-word;}
.scan-guide-page .steps-list{list-style:none;padding:0;margin:0;}
.scan-guide-page .step-item{margin-bottom:1.5rem;}
.scan-guide-page .step-item-number{color:#0ea5e9;font-weight:700;margin-bottom:.25rem;}
.scan-guide-page .step-item-title,.scan-guide-page .report-title,.scan-guide-page .security-notice-title,.scan-guide-page .info-box-title{font-size:1rem;font-weight:600;color:#111827;margin-bottom:.25rem;}
.scan-guide-page .step-item-title{font-weight:500;}
.scan-guide-page .step-item-text,.scan-guide-page .analyze-text,.scan-guide-page .report-text{font-size:.9375rem;color:#6b7280;line-height:1.6;}
.scan-guide-page .start-scan-btn{display:inline-flex;align-items:center;gap:.5rem;background:#e5e7eb;color:#6b7280;border:none;border-radius:.5rem;padding:.75rem 1.5rem;font-weight:600;font-size:.9375rem;cursor:not-allowed;margin:1rem 0;}
.scan-guide-page .maintenance-box{background:#fef3c7;border:2px solid #fde68a;border-radius:1rem;padding:1.5rem;margin-top:1.5rem;color:#92400e;}
.scan-guide-page .maintenance-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem;}
.scan-guide-page .maintenance-icon{width:2.5rem;height:2.5rem;background:#fb923c;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.scan-guide-page .maintenance-icon svg{width:1.25rem;height:1.25rem;color:#fff;}
.scan-guide-page .maintenance-title{font-size:1rem;font-weight:600;}
.scan-guide-page .maintenance-text{font-size:.875rem;margin-bottom:.75rem;}
.scan-guide-page .maintenance-notice{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#c2410c;font-weight:600;}
.scan-guide-page .maintenance-notice svg{width:1rem;height:1rem;}
.scan-guide-page .dapp-url-box{background:#f9fafb;border:2px solid #e5e7eb;border-radius:.75rem;padding:1rem;margin:1rem 0;position:relative;}
.scan-guide-page .dapp-url-label{font-size:.875rem;color:#6b7280;margin-bottom:.5rem;}
.scan-guide-page .dapp-url-input{display:flex;align-items:center;gap:.5rem;min-width:0;}
.scan-guide-page .dapp-url-icon{color:#0ea5e9;flex-shrink:0;width:1.25rem;height:1.25rem;}
.scan-guide-page .dapp-url-icon svg,.scan-guide-page .dapp-url-copy svg{width:1.25rem;height:1.25rem;display:block;}
.scan-guide-page .dapp-url-text,.scan-guide-page .dapp-url-text .url-domain,.scan-guide-page .dapp-url-text .url-path{user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;cursor:text;}
.scan-guide-page .dapp-url-text{flex:1;min-width:0;color:#0ea5e9;font-weight:600;font-size:.9375rem;overflow:hidden;}
.scan-guide-page .dapp-url-copy{color:#6b7280;cursor:pointer;transition:color .2s;flex-shrink:0;}
.scan-guide-page .copy-icon{display:inline-block;transition:all .3s ease;}
.scan-guide-page .check-icon{display:none!important;color:#10b981;transition:all .3s ease;}
.scan-guide-page .dapp-url-copy.copied .copy-icon{display:none!important;}
.scan-guide-page .dapp-url-copy.copied .check-icon{display:inline-block!important;}
.scan-guide-page .token-logo-fit{width:100%;height:100%;object-fit:contain;display:block;}
.scan-guide-page .section-subheading{font-size:1.25rem;font-weight:500;color:#111827;margin-bottom:1.5rem;text-align:center;}
.scan-guide-page .copied-message{position:absolute;left:50%;bottom:-.5rem;transform:translateX(-50%);background:#d1fae5;border:1.5px solid #10b981;color:#10b981;padding:.25rem .5rem;border-radius:.375rem;font-size:.75rem;font-weight:600;opacity:0;pointer-events:none;transition:opacity .3s ease;z-index:10;user-select:none;cursor:default;}
.scan-guide-page .copied-message.show{opacity:1;}
.scan-guide-page .info-box{border-radius:1rem;padding:1.25rem;border:2px solid;color:inherit;}
.scan-guide-page .info-box.supported{background:#d1fae5;border-color:#6ee7b7;color:#065f46;}
.scan-guide-page .info-box.trial{background:#dbeafe;border-color:#93c5fd;color:#1e40af;}
.scan-guide-page .info-box.gas{background:#fef3c7;border-color:#fde68a;color:#92400e;}
.scan-guide-page .info-box-icon svg{width:1.25rem;height:1.25rem;}
.scan-guide-page .info-box-title{color:inherit;}
.scan-guide-page .info-box-content{font-size:.875rem;line-height:1.6;color:inherit;}
.scan-guide-page .info-item{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;}
.scan-guide-page .info-item svg{width:1rem;height:1rem;flex-shrink:0;}
.scan-guide-page .info-item:last-child{margin-bottom:0;}
.scan-guide-page .analyze-icon,.scan-guide-page .report-icon{color:#0ea5e9;}
.scan-guide-page .analyze-icon svg{width:1.5rem;height:1.5rem;}
.scan-guide-page .report-icon{flex-shrink:0;}
.scan-guide-page .report-icon svg{width:1.25rem;height:1.25rem;margin-top: 0.25rem;}
.scan-guide-page .analyze-title{font-size:1.125rem;font-weight:500;color:#111827;margin-bottom: 0.5rem;}
.scan-guide-page .security-notice{background:#eff6ff;border:2px solid #93c5fd;border-radius:1rem;padding:1.5rem;margin-top:2rem;color:#1e40af;}
.scan-guide-page .security-notice-title,.scan-guide-page .security-notice-text{color:inherit;}
.scan-guide-page .security-notice-icon svg{width:1.5rem;height:1.5rem;}
.scan-guide-page .security-notice-text{font-size:.875rem;line-height:1.6;}
.scan-guide-page .report-content{flex:1;}
@media (max-width:640px){
  .scan-guide-page{padding:6.5rem .75rem 3rem;}
  .scan-guide-page .container{padding:0;}
  .scan-guide-page .page-title{font-size:2.5rem;}
  .scan-guide-page .step-section{padding:2rem 1rem;border-radius:1.25rem;margin-bottom:2.5rem;}
  .scan-guide-page .step-title{font-size:1.5rem;}
  .scan-guide-page .scan-methods{grid-template-columns:1fr;gap:1rem;}
  .scan-guide-page .scan-card{padding:1.25rem;}
  .scan-guide-page .scan-card-header{align-items:flex-start;}
  .scan-guide-page .scan-card-title{font-size:1.125rem;margin-top:0.75rem;}
  .scan-guide-page .dapp-url-box{padding:.875rem;}
  .scan-guide-page .dapp-url-input{gap:.375rem;}
  .scan-guide-page .dapp-url-text{font-size:.8125rem;}
  .scan-guide-page .dapp-url-icon,.scan-guide-page .dapp-url-icon svg,.scan-guide-page .dapp-url-copy svg{width:1rem;height:1rem;}
}

.security-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
  padding: 7rem 1rem 4rem;
}

.security-page .breadcrumb a {
  color: #111827;
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}

.security-page .breadcrumb a:hover {
  color: #374151;
}

.security-page .breadcrumb-separator {
  color: #d1d5db;
  font-weight: 400;
}

.security-page .security-header {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.security-page .security-title {
  display: inline-block;
  font-size: 3rem;
  font-weight: 500 !important;
  line-height: 1.3;
  margin-bottom: .75rem;
  color: #8b5cf6;
  background-image: linear-gradient(90deg, #0ea5e9 0%, #8b5cf6 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.security-page .security-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #374151;
  margin-bottom: 1rem;
}

.security-page .security-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.security-page .security-description strong {
  color: #111827;
  font-weight: 500;
}

.security-page .badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.security-page .feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem .75rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
  transition: all .3s;
}

.security-page .feature-badge.instant {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.security-page .feature-badge.secure {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.security-page .feature-badge.realtime {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.security-page .feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.security-page .select-section {
  max-width: 56rem;
  margin: 0 auto;
}

.security-page .select-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111827;
  text-align: center;
  margin-bottom: .5rem;
}

.security-page .select-description {
  font-size: .9375rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
}

.security-page .crypto-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

.security-page .crypto-card,
.security-page .crypto-card-disabled {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1.25rem .875rem 1.25rem .375rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.security-page .crypto-card {
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  border-left: 4px solid #6b7280;
}

.security-page .crypto-card:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, .15);
  transform: translateY(-2px);
}

.security-page .crypto-card-disabled {
  cursor: not-allowed;
  opacity: .8;
  pointer-events: none;
}

.security-page .crypto-card-disabled:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  color: #d1d5db;
  transform: none;
}

.security-page .crypto-card.usdt-erc-card,
.security-page .crypto-card.dai-erc-card,
.security-page .crypto-card.link-erc-card {
  border-left-color: #6b7280;
}

.security-page .crypto-card.usdt-trc-card,
.security-page .crypto-card.usdc-trc-card,
.security-page .crypto-card.btt-trc-card {
  border-left-color: #ef4444;
}

.security-page .crypto-card.usdc-erc-card {
  border-left-color: #3b82f6;
}

.security-page .crypto-card.usdt-bep-card,
.security-page .crypto-card.usdc-bep-card,
.security-page .crypto-card.busd-bep-card,
.security-page .crypto-card.dai-bep-card,
.security-page .crypto-card.link-bep-card {
  border-left-color: #fbbf24;
}

.security-page .crypto-card.usdt-polygon-card,
.security-page .crypto-card.usdc-polygon-card,
.security-page .crypto-card.dai-polygon-card,
.security-page .crypto-card.link-polygon-card {
  border-left-color: #a855f7;
}

.security-page .crypto-card.usdt-arbitrum-card,
.security-page .crypto-card.usdc-arbitrum-card,
.security-page .crypto-card.link-arbitrum-card {
  border-left-color: #06b6d4;
}

.security-page .crypto-card.usdt-erc-card .crypto-arrow,
.security-page .crypto-card.dai-erc-card .crypto-arrow,
.security-page .crypto-card.link-erc-card .crypto-arrow {
  color: #6b7280;
}

.security-page .crypto-card.usdt-trc-card .crypto-arrow,
.security-page .crypto-card.usdc-trc-card .crypto-arrow,
.security-page .crypto-card.btt-trc-card .crypto-arrow {
  color: #ef4444;
}

.security-page .crypto-card.usdc-erc-card .crypto-arrow {
  color: #3b82f6;
}

.security-page .crypto-card-disabled .crypto-arrow,
.security-page .crypto-card.usdt-bep-card .crypto-arrow,
.security-page .crypto-card.usdt-polygon-card .crypto-arrow,
.security-page .crypto-card.usdt-arbitrum-card .crypto-arrow,
.security-page .crypto-card.usdc-bep-card .crypto-arrow,
.security-page .crypto-card.usdc-polygon-card .crypto-arrow,
.security-page .crypto-card.usdc-arbitrum-card .crypto-arrow,
.security-page .crypto-card.busd-bep-card .crypto-arrow,
.security-page .crypto-card.dai-bep-card .crypto-arrow,
.security-page .crypto-card.dai-polygon-card .crypto-arrow,
.security-page .crypto-card.link-bep-card .crypto-arrow,
.security-page .crypto-card.link-polygon-card .crypto-arrow,
.security-page .crypto-card.link-arbitrum-card .crypto-arrow {
  color: #d1d5db !important;
}

.security-page .crypto-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  margin-left: 0.75rem; 
}

.security-page .crypto-card-disabled .crypto-icon {
  background: #fff !important;
  filter: grayscale(1);
}

.security-page .crypto-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.security-page .crypto-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem;
}

.security-page .crypto-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .35rem;
  margin-left: 0.25rem;
}

.security-page .crypto-name {
  font-size: .95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.security-page .crypto-meta {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.security-page .crypto-speed {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .72rem;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
}

.security-page .crypto-speed svg {
  width: 1rem;
  height: 1rem;
}

.security-page .crypto-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .1rem .45rem;
  background: #e0f7fa;
  border: .5px solid #4dd0e1;
  border-radius: 9999px;
  font-size: .66rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.security-page .crypto-badge-text {
  background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.security-page .crypto-badge svg {
  width: 1rem;
  height: 1rem;
  color: #00bcd4;
  stroke-width: 1.5;
}

.security-page .crypto-badge-enterprise {
  background: #f3e8ff;
  border: .5px solid #c084fc;
}

.security-page .crypto-badge-text-enterprise {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.security-page .crypto-badge-enterprise svg {
  color: #9333ea;
  stroke-width: 1.5;
}

.security-page .crypto-arrow {
  color: #d1d5db;
  transition: all .3s;
  flex-shrink: 0;
  margin-left: .25rem;
}

.security-page .crypto-card:hover .crypto-arrow {
  color: #8b5cf6;
  transform: translateX(4px);
}

.security-page .crypto-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.security-page .crypto-card-disabled .crypto-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .security-page .crypto-card,
  .security-page .crypto-card-disabled {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    gap: 1rem;
  }

  .security-page .crypto-icon,
  .security-page .crypto-card-disabled .crypto-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .security-page .crypto-info,
  .security-page .crypto-card-disabled .crypto-info,
  .security-page .usdt-erc-card .crypto-info,
  .security-page .usdt-trc-card .crypto-info,
  .security-page .usdc-erc-card .crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: .35rem;
    min-width: 0;
  }

  .security-page .crypto-name {
    font-size: 1rem;
  }

  .security-page .crypto-meta,
  .security-page .crypto-card-disabled .crypto-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: nowrap;
  }

  .security-page .crypto-speed {
    font-size: .75rem;
  }

  .security-page .crypto-badge {
    font-size: .6875rem;
    padding: .125rem .5rem;
  }
}

@media (max-width: 640px) {
  .security-page .security-title {
    font-size: 2rem;
  }

  .security-page .security-subtitle {
    font-size: 1.125rem;
  }

  .security-page .badge-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    max-width: 100%;
  }

  .security-page .feature-badge {
    justify-content: center;
  }

  .security-page .feature-badge.realtime {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .security-page .crypto-card,
  .security-page .crypto-card-disabled {
    padding: 1.5rem .875rem 1.5rem .375rem;
    gap: .75rem;
  }

  .security-page .crypto-icon,
  .security-page .crypto-card-disabled .crypto-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-left: 0.75rem;  
  }

  .security-page .crypto-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .security-page .crypto-info,
  .security-page .crypto-card-disabled .crypto-info,
  .security-page .usdt-erc-card .crypto-info,
  .security-page .usdt-trc-card .crypto-info,
  .security-page .usdc-erc-card .crypto-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .35rem;
    min-width: 0;
  }

  .security-page .crypto-name {
    font-size: .95rem;
  }

  .security-page .crypto-meta {
    flex-wrap: nowrap;
    gap: .45rem;
  }

  .security-page .crypto-speed {
    font-size: .72rem;
  }

  .security-page .crypto-badge {
    font-size: .66rem;
    padding: .1rem .45rem;
  }

  .security-page .crypto-arrow {
    flex-shrink: 0;
    margin-left: .25rem;
  }

  .security-page .crypto-card-disabled .crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.security-page .additional-support{max-width:42rem;margin:3rem auto 0;}
.security-page .support-card{background:linear-gradient(135deg,#ede7f6 0%,#e8eaf6 100%);border:1px solid #d1c4e9;border-radius:1rem;padding:2.5rem 2rem;text-align:center;box-shadow:0 4px 12px rgba(139,92,246,.08);}
.security-page .support-icon{width:4rem;height:4rem;background:linear-gradient(135deg,#8b5cf6 0%,#7c3aed 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;}
.security-page .support-icon svg{width:2rem;height:2rem;color:#fff;}
.security-page .support-title{font-size:1.5rem;font-weight:600;background:linear-gradient(135deg,#8b5cf6 0%,#6366f1 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:1rem;}
.security-page .support-description{font-size:.9375rem;color:#4b5563;line-height:1.6;margin-bottom:1.5rem;}
.security-page .support-description strong{color:#111827;font-weight:600;}
.security-page .enterprise-note{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.25rem;background:rgba(139,92,246,.1);border-radius:9999px;font-size:.875rem;font-weight:600;color:#7c3aed;}
.security-page .enterprise-note svg{width:2.5rem;height:2.5rem;color:#7c3aed;fill:#7c3aed;}
@media (max-width:640px){
  .support-card{padding:2rem 1.5rem;}
  .support-icon{width:3.5rem;height:3.5rem;}
  .support-icon svg{width:1.75rem;height:1.75rem;}
  .support-title{font-size:1.25rem;}
  .support-description{font-size:.875rem;}
  .enterprise-note{font-size:.8125rem;padding:.625rem 1rem;}
}
.features-badge-wrap,
.how-it-works-badge-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
.features-section-badge,
.how-it-works-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 2rem;
  color: #06b6d4;
  font-size: 0.875rem;
  font-weight: 500;
}
.features-section-badge-icon,
.how-it-works-section-badge-icon {
  width: 16px;
  height: 16px;
}
.features-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.features-bottom-note {
  text-align: center;
  margin-top: 2rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.how-it-works-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}
.faq-container-narrow {
  max-width: 56rem;
}

.company-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: 7rem 1rem 4rem;
}
.company-hero,
.leadership-section,
.values-section {
  margin: 0 auto 4rem;
}
.company-hero,
.mission-vision-section,
.achievements-section {
  max-width: 56rem;
}
.leadership-section,
.values-section {
  max-width: 64rem;
}
.company-hero,
.section-header,
.contact-cta {
  text-align: center;
}
.company-hero {
  margin-bottom: 4rem;
}
.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.company-badge svg,
.contact-button svg {
  width: 1.25rem;
  height: 1.25rem;
}
.company-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}
.company-title .highlight {
  background: linear-gradient(135deg, #9f0ee9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.company-description {
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
}
.team-image {
  display: block;
  width: 100%;
  max-width: 36rem;
  height: auto;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.section-header {
  margin-bottom: 3rem;
}
.company-page .section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
}
.team-grid,
.values-grid,
.achievements-grid,
.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr;
}
.team-grid {
  gap: 2rem;
}
.values-grid,
.achievements-grid {
  gap: 1.5rem;
}
.mission-vision-section {
  margin: 0 auto 4rem;
  gap: 2rem;
}
.team-card,
.mv-card,
.value-card,
.achievement-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}
.team-card,
.value-card,
.achievement-card {
  border-radius: 1.5rem;
}
.mv-card {
  border-radius: 1.5rem;
  padding: 2rem;
}
.team-card {
  padding: 1.5rem;
  text-align: center;
}
.value-card,
.achievement-card {
  padding: 2rem;
}
.achievement-card {
  text-align: center;
}
.team-card:hover,
.mv-card:hover,
.value-card:hover,
.achievement-card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}
.team-photo {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.team-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0ea5e9;
  margin-bottom: 0.75rem;
}
.team-bio,
.value-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
.mv-icon,
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  border-radius: 1rem;
}
.mv-icon {
  margin-bottom: 1.5rem;
}
.value-icon {
  margin-bottom: 1.25rem;
}
.mv-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}
.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}
.mv-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.mv-text {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.8;
}
.value-title,
.achievement-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.value-title {
  margin-bottom: 0.75rem;
}
.achievement-title {
  margin-bottom: 0.5rem;
}
.achievement-icon {
  margin: 0 auto 1.25rem;
  color: #0ea5e9;
}
.achievement-icon svg {
  width: 3rem;
  height: 3rem;
}
.achievement-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0ea5e9;
}
.contact-cta {
  margin-top: 3rem;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d684e1 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.contact-button:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}
.company-address {
  margin-top: 2rem;
}
.address-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.address-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-vision-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .company-title {
    font-size: 2rem;
  }

  .company-page .section-title {
    font-size: 1.75rem;
  }
}

.legal-page {
  min-height: 100vh;
  background-color: #f9fafb;
}

.legal-page main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.legal-page .page-title,
.legal-page .page-subtitle {
  text-align: center;
}

.legal-page .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.legal-page .page-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.legal-page .content-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #374151;
  line-height: 1.8;
  padding: 2.5rem;
}

.legal-page .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-page .section-title:first-of-type {
  margin-top: 0;
}

.legal-page .content-box p,
.legal-page .content-box ul {
  margin-bottom: 1.5rem;
}

.legal-page .content-box p:last-child,
.legal-page .content-box ul:last-child {
  margin-bottom: 0;
}

.legal-page .content-box ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-page .content-box li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-page .content-box li:last-child {
  margin-bottom: 0;
}

.legal-page .content-box a {
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-page .content-box a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.legal-page .content-box strong {
  color: #111827;
  font-weight: 700;
}

@media (max-width: 640px) {
  .legal-page main {
    padding: 1.5rem 0.75rem 3rem;
  }

  .legal-page .page-title {
    font-size: 1.875rem;
  }

  .legal-page .page-subtitle {
    font-size: 0.875rem;
  }

  .legal-page .content-box {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

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

@media (max-width: 640px) {
  .hero-title {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-description {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.result-grade-circle span.grade-c {
  transform: translateY(-2px);
}

.result-grade-circle.grade-a {
  background: linear-gradient(135deg, #34d399, #10b981);
  border: 2px solid #059669;
}

.result-grade-circle.grade-b {
  background: linear-gradient(135deg, #facc15, #eab308);
  border: 2px solid #ca8a04;
}

.result-grade-circle.grade-c {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 2px solid #b91c1c;
}

/* ===================================
   Result Unavailable (gray state)
=================================== */
.result-unavailable {
  color: #9ca3af !important;
  font-weight: 500;
}

.result-unavailable-bg {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.result-header-with-id {
  position: relative;
  padding-top: 1.1rem;
}

.result-scan-id-top {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8rem !important;
  line-height: 1;
  color: #9ca3af;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .result-header-with-id {
    padding-top: 1rem;
  }

  .result-scan-id-top {
    font-size: 0.6875rem;
  }
}