:root {
  --bg-primary: #F0F4F9;
  --bg-secondary: #E8ECF5;
  --bg-card: #FFFFFF;
  --bg-light: #F8FAFD;
  --text-primary: #0A1428;
  --text-secondary: #5A6B7D;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-dim: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.15);
  --border: rgba(37, 99, 235, 0.1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Noto Sans SC', 'Outfit', sans-serif;
  --section-padding: 2rem 0.75rem;
  --content-max: min(1280px, 98%);
  --side-gap: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 1.25rem;
  background: rgba(240, 244, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
  width: 100%;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 20, 40, 0.08);
}

.header-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s, transform 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.btn-download {
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-download:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 1.25rem 2rem;
  background: linear-gradient(180deg, rgba(240, 244, 249, 0.5) 0%, rgba(240, 244, 249, 0.75) 100%);
}

.hero-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.hero-label {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-desc {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.section-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
}

h2 .section-icon {
  filter: invert(70%) sepia(60%) saturate(800%) hue-rotate(200deg) brightness(1.1);
}

.inline-icon {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
  margin-right: 0.35rem;
  opacity: 0.85;
}

.app-showcase {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.showcase-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.app-showcase h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.app-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.app-carousel::-webkit-scrollbar {
  height: 6px;
}

.app-carousel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.carousel-img {
  flex: 0 0 auto;
  width: 42%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  scroll-snap-align: start;
  transition: transform 0.25s, box-shadow 0.25s;
}

.carousel-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(10, 20, 40, 0.12);
}

section {
  padding: var(--section-padding);
}

section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.currencies {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.chain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.chain-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
  border: 1px solid #E0E8F0;
  box-shadow: 0 1px 2px rgba(10, 20, 40, 0.05);
}

.chain-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.chain-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.chain-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.chain-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.products {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  background: var(--bg-secondary);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.product-layout:last-of-type {
  margin-bottom: 0;
}

.product-layout-reverse {
  direction: rtl;
}

.product-layout-reverse > * {
  direction: ltr;
}

.product-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-content h3 + h3 {
  margin-top: 1.5rem;
}

.product-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.product-img {
  width: 70%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.product-img:hover {
  transform: scale(1.03);
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.security-list {
  list-style: none;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E0E8F0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: padding-left 0.2s;
}

.security-list li:hover {
  padding-left: 4px;
}

.security-list li:last-child {
  border-bottom: none;
}

.security-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.security-list strong {
  color: var(--text-primary);
  margin-right: 0.2rem;
}

.security-img {
  width: 75%;
  max-width: 340px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.security-img:hover {
  transform: scale(1.02);
}

.security-visual {
  display: flex;
  justify-content: center;
}

.security-extra {
  background: var(--bg-secondary);
}

.security-extra-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.extra-img {
  width: 75%;
  max-width: 380px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.extra-img:hover {
  transform: scale(1.02);
}

.extra-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.extra-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.benefits {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-block {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid #E0E8F0;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 3px rgba(10, 20, 40, 0.08);
}

.benefit-block:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.benefit-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.benefit-block p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.benefit-detail {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.9;
  margin-top: 0.25rem;
}

.brand-intro {
  background: var(--bg-secondary);
}

.brand-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.brand-img {
  width: 60%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.brand-img:hover {
  transform: scale(1.02);
}

.brand-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.guide {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step {
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  transition: transform 0.25s, box-shadow 0.25s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  box-shadow: 0 1px 3px rgba(10, 20, 40, 0.06);
}

.step:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-content {
  flex: 1;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.guide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.guide-img {
  width: 65%;
  max-width: 420px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.guide-img:hover {
  transform: scale(1.02);
}

.faq {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  background: var(--bg-secondary);
}

.faq-wrap {
  display: block;
}

.faq-list {
  margin-top: 1.25rem;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #E0E8F0;
  transition: background 0.2s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-q {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-a {
  max-height: 800px;
}

.faq-a p {
  padding: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.partner {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.partner-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  text-align: center;
}

.partner-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0A1428;
}

.partner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E0E8F0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.partner-logo:nth-child(1) {
  animation-delay: 0s;
}

.partner-logo:nth-child(2) {
  animation-delay: 0.2s;
}

.partner-logo:nth-child(3) {
  animation-delay: 0.4s;
}

.partner-logo:nth-child(4) {
  animation-delay: 0.6s;
}

.partner-logo:nth-child(5) {
  animation-delay: 0.8s;
}

.partner-logo:nth-child(6) {
  animation-delay: 1s;
}

.partner-logo:nth-child(7) {
  animation-delay: 1.2s;
}

.partner-logo:nth-child(8) {
  animation-delay: 1.4s;
}

.partner-logo:nth-child(9) {
  animation-delay: 1.6s;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.partner-logo:hover::before {
  opacity: 1;
}

.partner-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.mpdl-download-bar {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #1D4ED8 100%);
  padding: 48px 20px;
  text-align: center;
  color: #fff;
}

.mpdl-container {
  max-width: 960px;
  margin: 0 auto;
}

.mpdl-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.mpdl-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.mpdl-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.mpdl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.mpdl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
}

.mpdl-icon {
  font-size: 36px;
  margin-bottom: 4px;
}

.mpdl-card-android .mpdl-icon {
  color: #3ddc84;
}

.mpdl-card-ios .mpdl-icon {
  color: #fff;
}

.mpdl-card-windows .mpdl-icon {
  color: #0078d4;
}

.mpdl-card-title {
  font-size: 16px;
  font-weight: 600;
}

.mpdl-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.mpdl-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.mpdl-disabled .mpdl-card-desc {
  color: #fbbf24;
}

.security-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.security-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.site-footer {
  background: var(--bg-secondary);
  padding: 2.5rem 1.25rem;
  border-top: 1px solid #E0E8F0;
}

.footer-inner {
  max-width: 1320px;
  width: 98%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E0E8F0;
}

.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-brand p {
  flex-basis: 100%;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.footer-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #E0E8F0;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent);
}

@keyframes ripple {
  to {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 0.7;
    transform: scale(1) translateY(0);
  }
}

img[loading="lazy"] {
  background: var(--bg-card);
}

@media (max-width: 1024px) {
  .product-layout,
  .product-layout-reverse,
  .security-inner,
  .security-extra-inner,
  .brand-inner {
    grid-template-columns: 1fr;
  }

  .product-layout-reverse {
    direction: ltr;
  }

  .product-img,
  .security-img,
  .extra-img,
  .brand-img {
    width: 85%;
    max-width: none;
  }

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

  .carousel-img {
    width: 70%;
  }

  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 1.5rem 0.75rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(240, 244, 249, 0.99);
    backdrop-filter: blur(12px);
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 101;
    padding: 0;
    gap: 0;
  }

  .main-nav.active {
    max-height: 420px;
    padding: 1.5rem 1.25rem;
  }

  .main-nav a {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: block;
    font-size: 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.05);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--accent);
  }

  .main-nav a::after {
    display: none;
  }

  .logo-img {
    width: 56px;
    height: 56px;
  }

  .hero-overlay {
    padding: 3rem 0.75rem 1.5rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .hero-label {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
  }

  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .carousel-img {
    width: 80%;
    max-width: 200px;
  }

  .guide-steps {
    flex-direction: column;
  }

  .step {
    grid-template-columns: auto 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .security-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .mpdl-cards {
    flex-direction: column;
  }

  .mpdl-card {
    max-width: 100%;
  }

  .partner-list {
    gap: 1.5rem;
  }

  .partner-logo {
    width: 100px;
    height: 100px;
  }
}
