:root {
  --bg:#f7f5f0;
  --surface:#fff;
  --ink:#0b1024;
  --muted:#6f7890;
  --line:#e8e6e1;
  --blue:#2f72ff;
  --soft-blue:#edf4ff;
  --shadow:0 18px 45px rgba(20,24,40,.07);
  --radius:24px;
  --background: #f7f8fa;
  --white: #ffffff;
  --text: #000 !important;
  --text-dark: #000 !important;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --border: #edf0f4;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --input-background: #f8fafc;
  --button: #525b6c;
  --button-hover: #334155;
  --success-background: #dcfce7;
  --success-text: #166534;
  --error-background: #fee2e2;
  --error-text: #991b1b;
  --shadow-small: 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.04);
  --shadow-dropdown: 0 10px 25px rgba(15, 23, 42, 0.1);
  --font: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  color: var(--text);
  font-family: var(--font);
}

button,
input {
  font-family: var(--font);
}

button {
  border: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  font-size: 18px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text label {
  margin: 0;
  color: #020618;
  font-size: 15px;
  font-weight: 500;
  line-height: 0;
}

.logo-text p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 200;
  line-height: 1;
}

.nav-link {
  color: #020618;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #475569;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 20px 0px 35px 0px;
}

.hero-content {
  min-width: 0;
}

.hero-content h2 {
  margin: 0 0 20px;
  color: #020618;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.hero-content p {
  margin: 0 0 28px;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: #475569;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: var(--shadow-small);
}

.hero-image {
  width: 90%;
  height: auto;
  margin-top: 10px;
  border-radius: 16px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.checker-card {
  padding: 25px 13px 13px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.checker-card h3{
  margin: 0 0 24px;
  color: #020618;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.6px;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #020618;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbf7;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: #64748b;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.dropdown-toggle:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.dropdown-toggle.active {
  background: #ffffff;
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}

.dropdown-toggle.selected {
  color: #020618;
}

.dropdown-toggle-icon {
  color: #94a3b8;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dropdown-toggle.active .dropdown-toggle-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: var(--shadow-dropdown);
  animation: slideDown 0.2s ease;
}

.dropdown-menu.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-box {
  position: sticky;
  top: 0;

  padding: 12px 16px;

  background: #ffffff;

  border-bottom: 1px solid #e2e8f0;

  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #020618;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 100;
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-input:focus {
  outline: none;
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.15s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8fafc;
}

.dropdown-item.active {
  background: #0f172a;
  color: #ffffff;
}

.dropdown-item.hidden {
  display: none;
}

.card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
}

.dropdown-item.active .card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.success-icon{
  background: #fff;
  padding: 5px;
  border-radius: 50%;
}

.form-brand-card{
  width: 400px;
  display: flex;
  gap: 5px;
  align-items: center;
  overflow-y: hidden;
  margin-bottom: 10px;
    &::-webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;  /* Firefox */
}

.form-brand-card .card-brand{
  background-color: #faf9f5;
}

.form-brand-card .card-brand img{
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.card-brand {
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-brand.active {
    border-color: var(--blue);
    background: #f5f5f5;
    transform: translateY(-2px);
}

.selected-card-status.selected {
    color: #111;
    font-weight: 400;
}

.selected-status-icon{
  width: 25px;
  margin-right: 10px;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card-name {
  margin-bottom: 2px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.card-category {
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.75;
}

.dropdown-item.active .card-category {
  opacity: 0.9;
}

.input-wrapper {
  position: relative;

  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.input-wrapper .input-box {
  padding-left: 38px;
}

.input-box {
  width: 100%;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: #020618;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.input-box::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.input-box:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.input-box:focus {
  outline: none;
  background: #ffffff;
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}

.selected-card-status {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: #faf8f2;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: #7b818a;
  font-size: 13px;
  font-weight: 400;
}

.inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  padding: 15px 16px;
  margin-top: 8px;
  background: #525b6c;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn-submit:hover {
  background: #334155;
  box-shadow: 0 4px 12px rgba(51, 65, 85, 0.18);
}

.btn-submit:active {
  transform: scale(0.99);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.result-message {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.result-message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.result-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

.section-label {
  margin-bottom: 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.section-title {
  margin-bottom: 32px;
  color: #020618;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.supported-cards-section {
  padding: 15px 0 30px;
  background: #faf9f5;
  border: 1px solid #edf0f4;
  border-radius: 30px;

  overflow: hidden;
}

.supported-cards-header {
  margin-bottom: 15px;

  color: #94a3b8;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  animation: marquee 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 30px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.marquee-content .card-brand{
  padding: 18px;
}

.card-brand:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.card-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
}

.marquee-content .card-brand img{
  background-color: #eeeeee;
  border-radius: 50%;
  padding: 3px;
}

.card-brand span {
  color: #334155;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonials-section {
  padding: 30px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 158px;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
}

.testimonial-text {
  margin-bottom: 24px;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.testimonial-author {
  margin-bottom: 3px;
  color: #020618;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.testimonial-role {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.features-section {
  padding: 22px 17px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.features-header {
  min-width: 0;
}

.section-description {
  color: #64748b;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 10px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 21px;
  /* text-align: left; */
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #020618;
  font-size: 16px;
}

.feature-card h4 {
  margin-bottom: 8px;
  color: #020618;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.feature-card p {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.faq-section {
  padding: 50px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
}

.faq-question {
  margin-bottom: 12px;
  color: #020618;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-answer {
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.info-section {
  padding: 50px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
}

.info-title {
  margin-bottom: 16px;
  color: #020618;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.info-list li:last-child {
  margin-bottom: 0;
}

footer {
  padding: 40px 0 60px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 32px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020618;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-text h3 {
  margin: 0;
  color: #020618;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-logo-text p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #020618;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #f8fafc;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}


@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    /* gap: 35px; */
  }

  .checker-card {
    position: static;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 568px) {
  .container {
    padding: 0 16px;
  }

  header {
    padding: 16px;

    gap: 16px;

    flex-wrap: wrap;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 11px;
  }

  .nav-link {
    font-size: 13px;
  }

  /* Hero */

  .hero-section {
    padding: 0px 0 40px;
    gap: 28px;
  }

  

  .hero-content h2 {
    margin-bottom: 16px;
    font-size: 52px;
    /* width: 350px; */
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .hero-content p {
    margin-bottom: 20px;
    font-size: 11px;
    /* width: 400px; */
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 24px;
  }

  .badge {
    padding: 5px 12px;
    font-size: 12px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    border-radius: 14px;
  }

  .hero-image img{
    height: auto;
    display: block;
    margin: 0 auto;
    /* object-fit: contain; */
  }

  /* Checker */

  .checker-card {
    padding: 24px;
    border-radius: 20px;
    overflow: hidden;
  }

  .checker-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .form-label {
    font-size: 12px;
  }

  .dropdown-toggle,
  .input-box {
    padding: 12px 14px;
    font-size: 13px;
  }

  .input-wrapper .input-box {
    padding-left: 34px;
  }

  .input-icon {
    left: 12px;
    font-size: 13px;
  }

  .inputs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn-submit {
    padding: 14px;
    font-size: 14px;
  }

  .secure-note {
    font-size: 11px;
  }

  /* Supported Cards */

  .supported-cards-section {
    padding: 12px 0 24px;
    border-radius: 24px;
  }

  .supported-cards-header {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .card-brand {
    padding: 8px 16px;
    gap: 8px;
  }

  .card-brand img {
    width: 20px;
    height: 20px;
  }

  .card-brand span {
    font-size: 12px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 24px;
    letter-spacing: -0.8px;
  }

  .testimonials-section {
    padding: 20px 0;
  }

  .testimonial-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .testimonial-text {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .testimonial-author {
    font-size: 13px;
  }

  .testimonial-role {
    font-size: 11px;
  }

  /* Features */

  .features-section {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-description {
    font-size: 14px;
  }

  .feature-card {
    padding: 18px 14px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  /* FAQ */

  .faq-section {
    padding: 40px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .faq-item {
    padding: 20px;

    border-radius: 18px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .info-section {
    padding: 40px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card {
    padding: 24px;
    border-radius: 18px;
  }

  .info-title {
    font-size: 16px;
  }

  .info-list li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  footer {
    padding: 30px 0 40px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
  }

  .footer-links {
    width: 100%;
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
    font-weight: 400;
  }

  .footer-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .footer-logo-text h3 {
    font-size: 14px;
    font-weight: 400;
  }

  .footer-logo-text p {
    font-size: 11px;
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  header {
    padding: 12px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 15px;
  }

  .logo-text h1 {
    font-size: 15px;
  }

  .logo-text p {
    font-size: 10px;
  }

  .nav-link {
    font-size: 12px;
  }

  /* Hero */

  .hero-section {
    padding: 24px 0 32px;
    gap: 22px;
  }

  .hero-content h2 {
    margin-bottom: 12px;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-content p {
    margin-bottom: 16px;

    font-size: 14px;
  }

  .hero-badges {
    gap: 6px;

    margin-bottom: 18px;
  }

  .badge {
    padding: 4px 10px;

    font-size: 11px;
  }

  .hero-image {
    aspect-ratio: 1 / 1;
    margin-top: 8px;
    border-radius: 12px;
  }

  /* Checker */

  .checker-card {
    padding: 20px;
    /* overflow: hidden; */
    border-radius: 16px;
  }

  .checker-card h3 {
    margin-bottom: 16px;

    font-size: 20px;
  }

  .form-label {
    font-size: 11px;
  }

  .form-brand-card{
    width: 100%;
  }

  .dropdown-toggle,
  .input-box {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 13px;
  }

  .input-wrapper .input-box {
    padding-left: 32px;
  }

  .input-icon {
    left: 10px;
    font-size: 12px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .inputs-grid {
    gap: 0;
  }

  .btn-submit {
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    font-size: 13px;
  }

  .secure-note {
    gap: 4px;

    font-size: 10px;
  }

  .result-message {
    font-size: 12px;
  }

  .supported-cards-section {
    padding: 10px 0 20px;
    border-radius: 20px;
  }

  .supported-cards-header {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .card-brand {
    padding: 6px 12px;
    gap: 6px;
  }

  .card-brand img {
    width: 18px;
    height: 18px;
  }

  .card-brand span {
    font-size: 11px;
  }

  /* Sections */

  .section-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .section-title {
    margin-bottom: 18px;
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  /* Testimonials */

  .testimonials-section {
    padding: 16px 0;
  }

  .testimonial-card {
    padding: 16px;

    border-radius: 16px;
  }

  .testimonial-text {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .testimonial-author {
    font-size: 12px;
  }

  .testimonial-role {
    font-size: 10px;
  }

  /* Features */

  .features-section {
    padding: 14px 10px;
    border-radius: 16px;
  }

  .feature-card {
    padding: 14px 10px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;

    margin-bottom: 12px;

    font-size: 15px;
  }

  .feature-card h4 {
    font-size: 13px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .section-description {
    font-size: 13px;
  }

  /* FAQ */

  .faq-section {
    padding: 32px 0;
  }

  .faq-item {
    padding: 16px;

    border-radius: 16px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }

  .info-section {
    padding: 32px 0;
  }

  .info-card {
    padding: 20px;

    border-radius: 16px;
  }

  .info-title {
    font-size: 15px;
  }

  .info-list li {
    margin-bottom: 8px;

    font-size: 12px;
  }

  footer {
    padding: 24px 0 32px;
  }

  .footer-content {
    padding: 16px;

    border-radius: 16px;
  }

  .footer-logo-icon {
    width: 28px;
    height: 28px;

    border-radius: 7px;

    font-size: 12px;
  }

  .footer-logo-text h3 {
    font-size: 13px;
  }

  .footer-logo-text p {
    font-size: 10px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .hero-content h2 {
    font-size: 24px;
  }

  .checker-card h3 {
    font-size: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .card-brand span {
    display: none;
  }

  .card-brand {
    padding: 7px 10px;
  }

  .card-brand img {
    width: 20px;
    height: 20px;
  }

  .dropdown-toggle,
  .input-box {
    font-size: 12px;
  }
}