:root {
  --bg-main: #f8fafc;
  --card-bg: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --brand-color: #007bff;
  --brand-hover: #0069d9;
  --btn-success: #10b981;
  --btn-success-hover: #059669;
  --radius: 20px;
  --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

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

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--brand-color);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
  transition: all 0.2s;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn.is-active {
  border-color: var(--brand-color);
  color: var(--brand-color);
  background: rgba(0, 123, 255, 0.12);
}

.hero {
  text-align: center;
  padding: 40px 24px;
  background: radial-gradient(circle at top, #f1f5f9 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-instruction-card {
  background-color: #ffffff;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 20px, transparent 20px, transparent 40px);
  max-width: 640px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 50px 40px 40px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.15), 0 0 30px rgba(0, 123, 255, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

.hero > .advertisement-label {
  position: absolute;
  top: 14px;
  left: max(42px, calc(50% - 320px + 18px));
  z-index: 2;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1;
  text-transform: lowercase;
  pointer-events: none;
}

.hero-steps {
  list-style: none;
  padding: 0;
  margin: 10px auto 32px;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hero-step {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.hero-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.25rem;
  margin-right: 16px;
  flex-shrink: 0;
}

.cta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #007bff;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4), 0 0 20px rgba(0, 123, 255, 0.2);
  animation: btn-pulse-scale 2s infinite ease-in-out;
  transform-origin: center;
}

.cta-hero:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow: 0 10px 20px -5px rgba(0, 123, 255, 0.4);
}

@keyframes btn-pulse-scale {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    transform: scale(1);
  }
}

.hero-icon-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  padding: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.2s, color 0.2s;
}

.hero-icon-svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
  transition: color 0.2s;
  stroke-width: 1.5;
}

.hero-icon-link:hover {
  transform: translateY(-3px);
  color: #007bff;
}

.hero-icon-link:hover .hero-icon-svg {
  color: #007bff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.category-section {
  margin-bottom: 20px;
}

.section-head {
  padding: 10px 0 12px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.cards-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cards-grid::-webkit-scrollbar {
  display: none;
}

.app-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.app-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 123, 255, 0.3);
}

.card-image-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background-color: #f1f5f9;
  overflow: hidden;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in, transform 0.4s;
}

.app-card:hover .card-image {
  transform: scale(1.05);
}

.card-image.loaded {
  opacity: 1;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.card-teaser {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-btn {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-color);
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.skeleton-anim {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #1e293b 4%, #334155 25%, #1e293b 36%);
  background-size: 1000px 100%;
}

.skeleton-card .card-image {
  display: none;
}

.skeleton-card .card-title,
.skeleton-card .card-teaser,
.skeleton-card .card-btn {
  background-color: #334155;
  color: transparent !important;
  border-radius: 4px;
}

.skeleton-card .card-title {
  height: 24px;
  margin-bottom: 10px;
  width: 80%;
}

.skeleton-card .card-teaser {
  height: 42px;
  margin-bottom: 20px;
  width: 100%;
}

.skeleton-card .card-btn {
  height: 20px;
  width: 90px;
}

#modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10004;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

#hover-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10005;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#hover-popup::-webkit-scrollbar {
  width: 8px;
}

#hover-popup::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

#hover-popup.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  border: none;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.popup-close:hover {
  background: var(--brand-color);
}

.popup-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.popup-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--card-bg), transparent);
}

.popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-body {
  padding: 32px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.popup-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.popup-article {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, background-color 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.popup-btn:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 123, 255, 0.4);
}

.quiz-wrapper {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 32px;
  margin: 40px auto 80px;
  box-shadow: var(--shadow-base);
  text-align: center;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.quiz-question {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 32px;
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.opt-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.opt-btn:hover {
  background-color: rgba(0, 123, 255, 0.1);
  border-color: var(--brand-color);
  color: var(--brand-color);
}

#result-view {
  display: none;
}

.result-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 600px;
}

.result-text strong {
  color: var(--text-primary);
}

.cta-unlock {
  display: inline-block;
  background-color: var(--btn-success);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, background-color 0.2s;
}

.cta-unlock:hover {
  background-color: var(--btn-success-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.info-banner-section {
  background-color: transparent;
  border-radius: 24px;
  padding: 60px 40px;
  margin: 60px 0 20px;
  color: var(--text-primary);
}

.info-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.info-card {
  background-color: var(--card-bg);
  border-radius: 32px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.15), 0 0 30px rgba(0, 123, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
  stroke-width: 1.2;
}

.info-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.info-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.info-text-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 30px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 500;
}

.info-list li svg {
  width: 24px;
  height: 24px;
  color: var(--brand-color);
  margin-right: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-section {
  padding: 20px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text-primary);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--brand-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f8fafc;
  border-color: var(--brand-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--brand-color);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--brand-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card-bg);
}

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

.faq-answer-content {
  padding: 0 30px 30px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

.simple-footer {
  padding: 60px 40px 40px;
  background-color: transparent;
  text-align: left;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.footer-logo span {
  color: var(--brand-color);
  font-weight: 700;
}

.footer-nav-link {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.3px;
}

.footer-nav-link:hover {
  color: var(--brand-color);
}

.legal-links {
  margin-top: 32px;
  gap: 24px;
  justify-content: center;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: underline;
  font-size: 0.95rem;
}

.legal-copy {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .info-content-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .sticky-header {
    padding: 10px 20px;
    gap: 8px;
    align-items: center;
  }

  .hero {
    padding: 12px 14px 30px;
  }

  .hero > .advertisement-label {
    top: 10px;
    left: 26px;
    font-size: 0.85rem;
  }

  .hero-instruction-card {
    margin-top: 12px;
    padding: 36px 16px 20px;
    border-radius: 18px;
  }

  .hero-step {
    font-size: 1.8rem;
    align-items: flex-start;
  }

  .hero-step-num {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .cta-hero {
    font-size: 1.6rem;
    padding: 20px;
    width: 100%;
  }

  .hero-icon-nav {
    gap: 12px;
    padding: 6px 4px;
    margin-top: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-icon-svg {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .hero-icon-link {
    font-size: 0.95rem;
    min-width: 56px;
    text-align: center;
  }

  .container {
    padding: 0 14px 50px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .cards-grid {
    gap: 14px;
    padding-bottom: 12px;
  }

  .app-card {
    flex: 0 0 220px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-teaser {
    font-size: 0.9rem;
  }

  .quiz-wrapper {
    padding: 26px 16px;
    margin: 20px 0 48px;
    border-radius: 16px;
  }

  .quiz-question {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }

  .opt-btn {
    font-size: 0.97rem;
    padding: 14px 16px;
    min-height: 52px;
  }

  .cta-unlock {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
  }

  .info-banner-section {
    padding: 28px 16px;
    margin: 28px 0 10px;
  }

  .info-cards-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .info-content-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .info-image-wrap {
    order: 1;
  }

  .info-text-content h3 {
    font-size: 1.3rem;
  }

  .info-list li {
    font-size: 0.85rem;
  }

  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 10px 16px 50px;
  }

  .simple-footer {
    padding: 32px 20px 24px;
    text-align: center;
  }

  .simple-footer .footer-links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-nav-link {
    font-size: 1rem;
  }

  .legal-copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.05rem;
  }

  .lang-btn {
    font-size: 0.78rem;
    padding: 5px 8px;
  }

  .hero > .advertisement-label {
    top: 8px;
    left: 20px;
    font-size: 0.75rem;
  }

  .hero-instruction-card {
    padding: 22px 10px 14px;
  }

  .hero-step {
    font-size: 1.4rem;
  }

  .hero-step-num {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
    margin-right: 8px;
  }

  .cta-hero {
    font-size: 1.2rem;
    padding: 16px 20px;
    border-radius: 12px;
  }

  .hero-icon-svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
  }

  .hero-icon-link {
    font-size: 0.8rem;
    min-width: 40px;
  }

  .hero-icon-nav {
    gap: 20px;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .section-desc {
    font-size: 0.8rem;
  }

  .card-title {
    font-size: 0.92rem;
  }

  .card-teaser {
    font-size: 0.78rem;
  }

  .card-btn {
    font-size: 0.78rem;
  }

  .card-content {
    padding: 14px;
  }

  .quiz-question {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .opt-btn {
    font-size: 0.82rem;
    padding: 11px 12px;
    min-height: 44px;
  }

  .cta-unlock {
    font-size: 0.82rem;
    padding: 10px 18px;
  }

  .info-card-title {
    font-size: 0.75rem;
  }

  .info-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }

  .info-card {
    padding: 24px 16px;
    border-radius: 28px;
  }

  .info-text-content h3 {
    font-size: 1rem;
  }

  .info-list li {
    font-size: 0.75rem;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-nav-link {
    font-size: 0.85rem;
  }

  .legal-links a,
  .legal-copy {
    font-size: 0.74rem;
  }
}
