/* =============================================
   QR CODE PAGE SPECIFIC STYLES
   ============================================= */

/* Hero Section */
.qrcode-hero {
    position: relative;
    min-height: 472px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qrcode-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.qrcode-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qrcode-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.qrcode-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 775px;
    padding: 50px 20px;
}

/* Hero Animation - Initial States */
.qrcode-hero-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 2.65;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
}

.qrcode-hero-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1.76;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.qrcode-hero-desc {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.21;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.qrcode-hero-btn {
    display: inline-block;
    background: #2194F3;
    color: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.qrcode-hero-btn:hover {
    background: #1a7fd4;
    color: #fff;
    transform: translateY(-2px);
}

.qrcode-hero-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Animation - Animated States */
.qrcode-hero-content.animate .qrcode-hero-subtitle {
    animation: qrcodeHeroFadeInUp 0.6s ease-out forwards;
}

.qrcode-hero-content.animate .qrcode-hero-title {
    animation: qrcodeHeroFadeInUp 0.6s ease-out 0.1s forwards;
}

.qrcode-hero-content.animate .qrcode-hero-desc {
    animation: qrcodeHeroFadeInUp 0.6s ease-out 0.2s forwards;
}

.qrcode-hero-content.animate .qrcode-hero-btn {
    animation: qrcodeHeroFadeInUp 0.6s ease-out 0.3s forwards;
}

.qrcode-hero-content.animate .qrcode-hero-nav {
    animation: qrcodeHeroFadeInUp 0.6s ease-out 0.4s forwards;
}

@keyframes qrcodeHeroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.qrcode-hero-nav-label {
    font-size: 15px;
    font-weight: 600;
    color: #2194F3;
    line-height: 1.67;
}

.qrcode-hero-nav i {
    color: #fff;
    font-size: 14px;
}

.qrcode-hero-nav-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #717171;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.qrcode-hero-nav-link:hover {
    border-color: #2194F3;
    color: #2194F3;
    opacity: 1;
}

/* What We Offer Section */
.qrcode-what-we-offer-section {
    background: var(--light-blue-grey);
    padding: 80px 0;
    overflow: hidden;
}

.qrcode-offer-images {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 初始隐藏状态 */
.qrcode-offer-images .qrcode-decorative-circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.qrcode-offer-images .qrcode-offer-img-back {
    opacity: 0;
}

.qrcode-offer-images .qrcode-offer-img-front {
    opacity: 0;
}

/* 入场动画 */
.qrcode-offer-images.animate .qrcode-decorative-circle {
    animation: qrcodeCircleScale 0.8s ease-out forwards;
}

.qrcode-offer-images.animate .qrcode-offer-img-back {
    animation: qrcodeImgRotateUpLeft 0.8s ease-out 0.3s forwards;
}

.qrcode-offer-images.animate .qrcode-offer-img-front {
    animation: qrcodeImgRotateUpRight 0.8s ease-out 0.5s forwards;
}

@keyframes qrcodeCircleScale {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes qrcodeImgRotateUpLeft {
    0% {
        transform: translate(-75%, -55%) translateY(50px) rotate(-15deg);
        opacity: 0;
    }
    100% {
        transform: translate(-75%, -55%) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes qrcodeImgRotateUpRight {
    0% {
        transform: translate(-25%, -54%) translateY(50px) rotate(15deg);
        opacity: 0;
    }
    100% {
        transform: translate(-25%, -54%) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.qrcode-offer-images .qrcode-decorative-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    padding-bottom: 95%;
    background: #007AFF;
    border-radius: 50%;
    z-index: 1;
}

.qrcode-offer-img-back {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 2;
}

.qrcode-offer-img-front {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-25%, -54%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 3;
}

.qrcode-offer-content {
    padding-left: 20px;
}

.qrcode-offer-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.qrcode-offer-description {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.67;
    color: #fff;
    margin-bottom: 2rem;
}

.qrcode-offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.qrcode-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.67;
}

.qrcode-benefit-item i {
    color: #2194F3;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Online Ordering Section */
.qrcode-online-ordering-section {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.qrcode-online-content {
    padding-right: 40px;
}

.qrcode-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 2rem;
    line-height: 1;
}

.qrcode-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qrcode-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.qrcode-feature-item i {
    color: #2194F3;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.qrcode-feature-text {
    flex: 1;
}

.qrcode-feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.67;
}

.qrcode-feature-description {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.67;
    margin: 0;
}

/* Online Ordering Images */
.online-ordering-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    perspective: 1000px;
}

/* 初始隐藏状态 */
.online-ordering-images .online-ordering-main-img {
    opacity: 0;
}

.online-ordering-images .online-ordering-secondary-img {
    opacity: 0;
}

/* 入场动画 */
.online-ordering-images.animate .online-ordering-main-img {
    animation: onlineOrderingImgRotateUp1 0.8s ease-out 0.3s forwards;
}

.online-ordering-images.animate .online-ordering-secondary-img {
    animation: onlineOrderingImgRotateUp2 0.8s ease-out 0.5s forwards;
}

@keyframes onlineOrderingImgRotateUp1 {
    0% {
        transform: translateY(50px) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes onlineOrderingImgRotateUp2 {
    0% {
        transform: translateY(50px) rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateY(0deg);
        opacity: 1;
    }
}

.online-ordering-main-img {
    position: absolute;
    right: 10%;
    top: -33%;
    width: 193px;
    height: auto;
    border-radius: 8px;
    z-index: 2;
}

.online-ordering-secondary-img {
    position: absolute;
    right: 27%;
    top: 15%;
    width: 188px;
    height: auto;
    border-radius: 8px;
    z-index: 1;
}

/* Table Ordering Section */
.qrcode-table-ordering-section {
    background: #E6EBF4;
    padding: 80px 0;
}

.qrcode-table-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.table-img-1 {
    position: absolute;
    left: 5%;

    transform: translateX(-50%);
    width: 287px;
    height: auto;
    border-radius: 12px;
    z-index: 2;
}

.table-img-2 {
    position: absolute;
    left: 30%;
    top: 40%;
    bottom: 0;
    width: 205px;
    height: auto;
    z-index: 3;
}

.table-img-3 {
    position: absolute;
    right: 15%;
    top: 26%;
    width: 204px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* 初始隐藏状态 */
.qrcode-table-images .table-img-1 {
    opacity: 0;
}

.qrcode-table-images .table-img-2 {
    opacity: 0;
}

.qrcode-table-images .table-img-3 {
    opacity: 0;
}

/* 入场动画 */
.qrcode-table-images.animate .table-img-1 {
    animation: tableImgFadeIn 0.6s ease-out 0.2s forwards;
}

.qrcode-table-images.animate .table-img-2 {
    animation: tableImgFadeIn 0.6s ease-out 0.4s forwards;
}

.qrcode-table-images.animate .table-img-3 {
    animation: tableImgZoomIn 0.8s ease-out 0.6s forwards;
}

@keyframes tableImgFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tableImgZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.qrcode-table-content {
    padding-left: 40px;
}

/* Customers & Business Owners Section */
.qrcode-customers-business-section {
    background: #fff;
    padding: 80px 0;
}

.qrcode-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 3rem;
    line-height: 0.96;
    padding-left: 15px;
}

.qrcode-cb-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.qrcode-cb-check-icon {
    width: 22px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.qrcode-cb-feature-text {
    flex: 1;
}

.qrcode-cb-feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.67;
}

.qrcode-cb-feature-description {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.67;
    margin-bottom: 1rem;
}

.qrcode-cb-feature-description strong {
    font-weight: 600;
}

.qrcode-cb-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.qrcode-cb-card {
    position: relative;
    width: 100%;
    max-width: 392px;
}

.qrcode-cb-card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.qrcode-card-tag {
    position: absolute;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 2.27;
    letter-spacing: 0.11em;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
     display: flex;
     align-items: center;
}

/* Customer Image Tags */
.qrcode-tag-1 {
    top: 44%;
    left: 6.4%;
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    margin-right: 5px;
}

.qrcode-tag-2 {
    top: 55%;
    left: 13.8%;
    background: rgba(33, 148, 243, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
}

/* Business Owner Image Tags */
.qrcode-stats-tag-1 {
    top: 37%;
    left: 28.5%;
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    font-size: 10px;
    padding: 6px 14px;
}

.qrcode-stats-tag-2 {
    top: 25%;
    left: 21.7%;
    background: rgba(33, 148, 243, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10px;
    padding: 4px 14px;
}

.qrcode-check-icon {
    width: 17px;
    height: 19px;
}

.qrcode-check-1 {
    top: 27.8%;
    right: 16.8%;
}

.qrcode-check-2 {
    top: 31.8%;
    right: 16.5%;
}

/* QR Code System Section */
.qrcode-system-section {
    background: #1E2024;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.qrcode-system-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.21;
    margin-bottom: 2rem;
    text-align: center;
}

.qrcode-system-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.21;
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 666px;
}

.qrcode-system-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

/* 初始隐藏状态 */
.qrcode-system-visual .qrcode-glow-circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.qrcode-system-visual .qrcode-system-img-back {
    opacity: 0;
}

.qrcode-system-visual .qrcode-system-img-front {
    opacity: 0;
}

/* 入场动画 */
.qrcode-system-visual.animate .qrcode-glow-circle {
    animation: qrcodeGlowCircleScale 1s ease-out forwards;
}

.qrcode-system-visual.animate .qrcode-system-img-back {
    animation: qrcodeSystemImgRotateUpLeft 0.8s ease-out 0.3s forwards;
}

.qrcode-system-visual.animate .qrcode-system-img-front {
    animation: qrcodeSystemImgRotateUpRight 0.8s ease-out 0.5s forwards;
}

@keyframes qrcodeGlowCircleScale {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes qrcodeSystemImgRotateUpLeft {
    0% {
        transform: translate(-75%, -55%) translateY(50px) rotate(-15deg);
        opacity: 0;
    }
    100% {
        transform: translate(-75%, -55%) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes qrcodeSystemImgRotateUpRight {
    0% {
        transform: translate(-25%, -54%) translateY(50px) rotate(15deg);
        opacity: 0;
    }
    100% {
        transform: translate(-25%, -54%) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.qrcode-glow-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(250px);
    z-index: 1;
}

.qrcode-system-images {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
    z-index: 2;
}

.qrcode-system-img-back {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 2;
}

.qrcode-system-img-front {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-25%, -54%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 3;
}

.qrcode-system-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.21;
    text-align: center;
    margin: 0;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991px) {
    .qrcode-hero {
        min-height: 400px;
    }
    
    .qrcode-hero-content {
        padding: 40px 20px;
    }
    
    .qrcode-hero-subtitle {
        font-size: 16px;
    }
    
    .qrcode-hero-title {
        font-size: 24px;
    }
    
    .qrcode-hero-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .qrcode-hero-btn {
        margin-bottom: 40px;
    }
    
    .qrcode-hero-nav {
        justify-content: center;
    }
    
    .qrcode-what-we-offer-section {
        padding: 60px 0;
    }
    
    .qrcode-offer-images {
        margin-bottom: 40px;
        min-height: 380px;
    }
    
    .qrcode-offer-images .qrcode-decorative-circle {
        width: 90%;
        padding-bottom: 90%;
    }
    
    .qrcode-offer-content {
        padding-left: 0;
    }
    
    .qrcode-offer-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .qrcode-offer-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .qrcode-online-ordering-section {
        padding: 60px 0;
    }
    
    .qrcode-online-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .qrcode-section-title {
        font-size: 1.75rem;
    }
    
    .qrcode-features-list {
        gap: 1.5rem;
    }
    
    .online-ordering-images {
        min-height: 350px;
    }
    
    .online-ordering-main-img {
        width: 170px;
        right: 8%;
    }
    
    
    .qrcode-table-ordering-section {
        padding: 60px 0;
    }
    
    .qrcode-table-images {
        min-height: 450px;
        margin-bottom: 40px;
    }
    
    .table-img-1 {
        width: 240px;
    }
    
    .table-img-2 {
        width: 180px;
    }
    
    .table-img-3 {
        width: 180px;
    }
    
    .qrcode-table-content {
        padding-left: 0;
    }
    
    .qrcode-customers-business-section {
        padding: 60px 0;
    }
    
    .qrcode-main-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .qrcode-cb-feature-item {
        margin-bottom: 2rem;
    }
    
    .qrcode-cb-visual {
        margin-bottom: 2rem;
    }
    
    .qrcode-cb-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .qrcode-card-tag {
        font-size: 10px;
        padding: 3px 14px;
    
    }
    
    .qrcode-stats-tag-1,
    .qrcode-stats-tag-2 {
        font-size: 9px;
        padding: 4px 12px;
    }
    
    .qrcode-check-icon {
        width: 15px;
        height: 17px;
    }
    
    .qrcode-system-section {
        padding: 60px 0;
    }
    
    .qrcode-system-title {
        font-size: 2rem;
    }
    
    .qrcode-system-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .qrcode-system-visual {
        min-height: 380px;
        margin-bottom: 3rem;
    }
    
    .qrcode-glow-circle {
        width: 280px;
        height: 280px;
    }
    
    .qrcode-system-images {
        max-width: 450px;
        height: 350px;
    }
    
    .qrcode-system-subtitle {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .qrcode-hero {
        min-height: 350px;
    }
    
    .qrcode-hero-content {
        padding: 30px 15px;
    }
    
    .qrcode-hero-subtitle {
        font-size: 14px;
        line-height: 2;
    }
    
    .qrcode-hero-title {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .qrcode-hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .qrcode-hero-btn {
        padding: 8px 30px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .qrcode-hero-nav {
        gap: 8px;
    }
    
    .qrcode-hero-nav-label {
        font-size: 13px;
    }
    
    .qrcode-hero-nav-link {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .qrcode-what-we-offer-section {
        padding: 50px 0;
    }
    
    .qrcode-offer-images {
        min-height: 320px;
    }
    
    .qrcode-offer-images .qrcode-decorative-circle {
        width: 85%;
        padding-bottom: 85%;
    }
    
    .qrcode-offer-title {
        font-size: 1.5rem;
    }
    
    .qrcode-offer-description {
        font-size: 0.9rem;
    }
    
    .qrcode-benefit-item {
        font-size: 0.875rem;
    }
    
    .qrcode-online-ordering-section {
        padding: 50px 0;
    }
    
    .qrcode-section-title {
        font-size: 1.5rem;
    }
    
    .qrcode-feature-title,
    .qrcode-feature-description {
        font-size: 0.875rem;
    }
    
    .qrcode-feature-item i {
        font-size: 1.25rem;
    }
    
    .online-ordering-images {
        min-height: 300px;
    }
    
    .online-ordering-main-img {
        width: 150px;
        right: 14%;
        top: 13%;
    }

    .online-ordering-secondary-img {
        width: 145px;
         right: 37%;
        top: -7%;
    }
    
    .qrcode-table-ordering-section {
        padding: 50px 0;
    }
    
    .qrcode-table-images {
        min-height: 380px;
    }
    
    .table-img-1 {
        width: 200px;
    }
    
    .table-img-2 {
        width: 150px;
    }
    
    .table-img-3 {
        width: 150px;
    }
    
    .qrcode-customers-business-section {
        padding: 50px 0;
    }
    
    .qrcode-main-title {
        font-size: 1.5rem;
    }
    
    .qrcode-cb-feature-title,
    .qrcode-cb-feature-description {
        font-size: 0.875rem;
    }
    
    .qrcode-cb-check-icon {
        width: 18px;
        height: 20px;
    }
    
    .qrcode-cb-feature-item {
        margin-bottom: 1.5rem;
    }
    
    .qrcode-cb-visual {
        margin-bottom: 1.5rem;
    }
    
    .qrcode-cb-card {
        max-width: 380px;
    }
    
    .qrcode-card-tag {
        font-size: 8px;
        padding: 2px 10px;
    }
    
    .qrcode-stats-tag-1,
    .qrcode-stats-tag-2 {
        font-size: 8px;
        padding: 3px 10px;
    }
    
    .qrcode-check-icon {
        width: 13px;
        height: 15px;
    }
    
    .qrcode-system-section {
        padding: 50px 0;
    }
    
    .qrcode-system-title {
        font-size: 1.75rem;
    }
    
    .qrcode-system-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .qrcode-system-visual {
        min-height: 320px;
        margin-bottom: 2.5rem;
    }
    
    .qrcode-glow-circle {
        width: 240px;
        height: 240px;
    }
    
    .qrcode-system-images {
        max-width: 380px;
        height: 300px;
    }
    
    .qrcode-system-subtitle {
        font-size: 1.5rem;
    }
}
