@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  overflow-x: clip;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.max-w-7xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-8 {
  gap: 2rem;
}

.block {
  display: block;
}

.max-w-400 {
  max-width: 400px;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.border {
  border: 1px solid #ddd;
}

.border-dashed {
  border-style: dashed;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.bg-white {
  background-color: #ffffff;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btnshrink_animation {
  animation: scaleShrinkDrew 2.5s ease-in-out infinite;
}

@keyframes scaleShrinkDrew {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.imgage-section-container {
  position: relative;
  overflow: hidden;
}

.imgage-section-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgage-section-container:after {
  content: "";
  display: block;
  padding-bottom: var(--funnel_image_section_after_padding, 100%);
  width: 100%;
}

.hidden {
  display: none;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:hidden {
    display: none;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:max-w-\[300px\] {
    max-width: 300px;
  }
}

.footer_text p {
  text-align: center;
  margin-bottom: 10px;
}

.news-advantage-table table {
  width: 100%;
  border-collapse: collapse;
}

.news-advantage-table table th {
  min-width: 120px;
  height: 60px;
  color: #000000;
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid #d9e1e6;
}

.news-advantage-table table tr th:nth-child(2) {
  background-color: #0071be;
  border-radius: 10px 10px 0 0;
}

.news-advantage-table table td {
  text-align: center;
  height: 60px;
  color: #000000;
  font-size: 12px;
  padding: 10px;
}

.news-advantage-table table tr td:nth-child(2) {
  background-color: #0071be;
}

.news-advantage-table table tr:last-child td:nth-child(2) {
  border-radius: 0 0 10px 10px;
}

.news-advantage-table table tr td:first-child {
  text-align: left;
  color: #000000;
  font-size: 14px;
}

.news-advantage-table table tbody tr {
  border-bottom: 1px solid #d9e1e6;
}

.news-advantage-table table tbody tr:last-child {
  border-bottom: none;
}

.news-advantage-table table td div img {
  max-width: 24px;
  margin: 0 auto 5px;
  display: block;
}

.floatNewBtn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.page-funnel {
  font-family: "Inter", system-ui, sans-serif;
  padding-bottom: 80px;
}

.legal-funnel {
  padding-bottom: 80px;
}

.funnel-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0 10px;
}

.funnel-main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.funnel-sidebar {
  display: none;
  width: 300px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 20px;
  padding-top: 10px;
  padding-bottom: 30px;
}

.funnel-sidebar-inner {
  background: #ffffff;
}

@media (min-width: 1024px) {
  .funnel-sidebar {
    display: block;
  }
}

@media (max-width: 900px) {
  .funnel-layout {
    padding: 0;
  }
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header .header-brand {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  min-width: 0;
  word-break: break-all;
}

.header-ad-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f0f2f1;
  border: 1px solid #ababab;
  color: #585858;
  border-radius: 4px;
}

.sidebar-cta-btn {
  display: block;
  background-color: #0071be;
  color: #ffffff;
  font-size: 18px;
  border-radius: 0.5rem;
}

.sidebar-cta-btn p {
  color: #ffffff;
  margin: 0;
}

.product-cta-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background-color: #0071be;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 0.375rem;
}

.product-cta-btn p,
.product-cta-btn strong {
  color: #ffffff;
  margin: 0;
}

.product-offer-section {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  .product-offer-section {
    padding-bottom: 20px;
  }
}

.split-row {
  width: 100%;
}

@media (min-width: 768px) {
  .split-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-row__left {
    min-width: 0;
  }

  .split-row__right {
    min-width: 0;
  }
}

.legal-page {
  padding: 32px 0 48px;
}

.legal-content {
  word-break: break-word;
}

.legal-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.legal-content .updated-date {
  color: #585858;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  margin: 1.5rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.legal-content h4 {
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
  font-size: 15px;
}

.legal-content a {
  color: #0071be;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #005a96;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  background: #f5f5f5;
  border-top: 3px solid #e5e7eb;
  padding: 2rem 0 1.5rem;
  margin-top: auto;
}

.footer .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 1.5rem;
}

.footer img {
  width: 100px;
  margin-bottom: 12px;
}

.footer b {
  display: block;
  margin-bottom: 8px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a:hover {
  text-decoration: underline;
}

.footer .copyright {
  text-align: center;
  font-size: 14px;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

@media (max-width: 900px) {
  .footer .row {
    grid-template-columns: 1fr;
  }

  .news-advantage-table {
    overflow-x: visible;
  }

  .news-advantage-table table th,
  .news-advantage-table table tr {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .news-advantage-table .comp-row,
  .news-advantage-table table thead {
    display: none;
  }

  .news-advantage-table table,
  .news-advantage-table table tbody,
  .news-advantage-table table tr,
  .news-advantage-table table td {
    display: block;
    width: 100%;
  }

  .news-advantage-table table tr {
    margin-bottom: 1rem;
    border: 1px solid #d9e1e6;
    border-radius: 8px;
    padding: 8px;
  }

  .news-advantage-table table td {
    text-align: left;
    height: auto;
  }

  .news-advantage-table table tr td:nth-child(2) {
    background-color: transparent;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 12px;
  }

  .footer .col-md-3,
  .footer .col-md-6 {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .floatNewBtn .py-4 {
    font-size: 18px !important;
    padding: 12px 16px;
  }

  .page-funnel [style*="font-size: 24px"] {
    font-size: 20px !important;
  }
}
