/* =============================================
   LOYALTY PAGE STYLES
   ============================================= */

/* Hero Section */
.loyalty-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.loyalty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 1;
}

.loyalty-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 775px;
    padding: 60px 20px;
}

/* Hero Animation - Initial States */
.loyalty-hero-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.loyalty-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.loyalty-hero-desc {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.loyalty-hero-btn {
    display: inline-block;
    background: #2194F3;
    color: #fff;
    padding: 12px 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);
    box-shadow: 0 4px 15px rgba(33, 148, 243, 0.2);
}

.loyalty-hero-btn:hover {
    background: #1a7fd4;
    color: #fff;
    box-shadow: 0 6px 25px rgba(33, 148, 243, 0.35);
    transform: translateY(-2px);
}

.loyalty-hero-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Animation - Animated States */
.loyalty-hero-content.animate .loyalty-hero-subtitle {
    animation: loyaltyHeroFadeInUp 0.6s ease-out forwards;
}

.loyalty-hero-content.animate .loyalty-hero-title {
    animation: loyaltyHeroFadeInUp 0.6s ease-out 0.1s forwards;
}

.loyalty-hero-content.animate .loyalty-hero-desc {
    animation: loyaltyHeroFadeInUp 0.6s ease-out 0.2s forwards;
}

.loyalty-hero-content.animate .loyalty-hero-btn {
    animation: loyaltyHeroFadeInUp 0.6s ease-out 0.3s forwards;
}

.loyalty-hero-content.animate .loyalty-hero-nav {
    animation: loyaltyHeroFadeInUp 0.6s ease-out 0.4s forwards;
}

/* After animation completes, reset transform for hover */
.loyalty-hero-content.animate .loyalty-hero-btn {
    animation: loyaltyHeroFadeInUpBtn 0.6s ease-out 0.3s forwards;
}

@keyframes loyaltyHeroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loyaltyHeroFadeInUpBtn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loyalty-hero-nav-label {
    font-size: 15px;
    font-weight: 600;
    color: #2194F3;
    line-height: 1.67;
}

.loyalty-hero-nav i {
    color: #2194F3;
    font-size: 14px;
}

.loyalty-hero-nav-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.loyalty-hero-nav-link:hover {
    border-color: #2194F3;
    color: #2194F3;
    background: #fff;
}

/* Hero Section with Social Proof */
.loyalty-hero-section {
    background: #fff;
    padding: 40px 0 30px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 20px;
    white-space: nowrap;
}

/* Main Content Section */
.loyalty-main-section {
    background: #fff;
    padding: 60px 0;
}

.loyalty-content {
    padding-right: 40px;
}

.loyalty-breadcrumb {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-600);
    margin-bottom: 8px;
}

.loyalty-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.21;
    color: #000;
    margin-bottom: 20px;
}

.loyalty-title.theme-color {
    color: #2194F3;
}

.loyalty-subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: #000;
    margin-bottom: 20px;
}

.loyalty-cta-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: #000;
    margin-bottom: 30px;
}

.loyalty-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
}

.loyalty-help-icon i {
    font-size: 23px;
    color: #000;
}

/* Dashboard Preview - Two Separate Containers */
.loyalty-dashboard-wrapper {
    position: relative;
    padding: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-stat-container {
    position: absolute;
    top: 35%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.dashboard-stat-card {
    background: rgba(217, 217, 217, 0.78);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 145px;
    text-align: left;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 2.5;
    color: #000;
    margin: 0;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.875;
    color: #000;
    margin: 0;
}

.stat-badge {
    background: #fff;
    border-radius: 12px;
    padding: 2px 20px;
    font-size: 10px;
    font-weight: 700;
    line-height: 3;
    color: #000;
    text-align: center;
    white-space: nowrap;
}

/* Divider Section */
.loyalty-divider-section {
    background: #fff;
    padding: 20px 0;
}

.loyalty-divider {
    border: none;
    border-top: 2px solid var(--primary-blue);
    margin: 0;
    opacity: 1;
}

/* Introduction Section */
.loyalty-intro-section {
    background: #fff;
    padding: 60px 0;
}

.intro-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.intro-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #535151;
}

/* Who We Are Section */
body .who-we-are-section {
    background: var(--light-blue-grey);
    padding: 80px 0;
    overflow: hidden;
}

.who-we-are-images {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 初始隐藏状态 */
.who-we-are-images .decorative-circle-blue {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.who-we-are-images .offer-img-back {
    opacity: 0;
}

.who-we-are-images .offer-img-front {
    opacity: 0;
}

/* 入场动画 */
.who-we-are-images.animate .decorative-circle-blue {
    animation: circleScale 0.8s ease-out forwards;
}

.who-we-are-images.animate .offer-img-back {
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.who-we-are-images.animate .offer-img-front {
    animation: slideInRight 0.8s ease-out 0.5s forwards;
}

@keyframes circleScale {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate(-120%, -55%);
        opacity: 0;
    }
    100% {
        transform: translate(-75%, -55%);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translate(30%, -45%);
        opacity: 0;
    }
    100% {
        transform: translate(-25%, -45%);
        opacity: 1;
    }
}

.who-we-are-images .decorative-circle-blue {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    padding-bottom: 95%;
    background: #007AFF;
    border-radius: 50%;
    z-index: 1;
}

.offer-img-back {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%);
      width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 2;
}

.offer-img-front {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-25%, -54%);
       width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 3;
}

.who-we-are-content {
    padding-left: 20px;
}

.who-we-are-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.who-we-are-description {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.67;
    color: #fff;
    margin-bottom: 2rem;
}

.who-we-are-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.who-we-are-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.67;
}

.who-we-are-benefits .benefit-item i {
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Customer Benefits Section */
.customer-benefits-section {
    background: #fff;
    padding: 80px 0;
}

.customer-benefits-content {
    padding-right: 40px;
}

.customer-benefits-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 2rem;
    line-height: 1;
}

.customer-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-detail-item i {
    color: #2194F3;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-detail-text {
    flex: 1;
}

.benefit-detail-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.67;
}

.benefit-detail-description {
    font-size: 0.9375rem;
    color: #000;
    line-height: 1.67;
    margin: 0;
}

.customer-benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
}

/* Operation Benefits Section */
.operation-benefits-section {
    background: #E6EBF4;
    padding: 80px 0;
}

.operation-benefits-content {
    padding-left: 40px;
}

.operation-benefits-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 2rem;
    line-height: 1;
}

.operation-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.operation-benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.operation-benefits-image .benefits-image {
    max-width: 280px;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

.operation-benefits-image.animate .benefits-image {
    animation: imageZoomIn 0.8s ease-out forwards;
}

@keyframes imageZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Core Features Section */
.core-features-section {
    background: #fff;
    padding: 80px 0;
}

.core-features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2194F3;
    margin-bottom: 3rem;
    line-height: 1;
}

.core-features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.core-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.core-feature-item i {
    color: #2194F3;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.core-feature-text {
    flex: 1;
}

.core-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.core-feature-details {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0;
}

.core-feature-details li {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #000;
    line-height: 1.67;
    margin-bottom: 0.25rem;
}

.core-features-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
}

.core-features-card {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.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;
}

.card-tag-1 {
    top: 44%;
    left: 6.4%;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
}

.card-tag-2 {
    top: 55%;
    left: 13.8%;
    background: #2194F3;
    color: #fff;
}

.card-tag-3 {
    top: 67.5%;
    left: 7.7%;
    background: rgba(137, 147, 158, 0.96);
    color: #000;
}

.core-features-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-image {
    width: 100%;
    max-width: 455px;
    height: auto;
}

.core-feature-with-image {
    margin-top: 3rem;
}

/* Loyalty Features Section */
.loyalty-features-section {
    background: #E6EBF4;
    padding: 80px 0;
}

.loyalty-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.loyalty-feature-image {
    width: 168px;
    height: 196px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.loyalty-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalty-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.loyalty-feature-description {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Loyalty Management System Section */
.loyalty-management-section {
    background: #1E2024;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.loyalty-management-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.21;
    margin-bottom: 2rem;
    text-align: center;
}

.loyalty-management-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.21;
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 666px;
}

.loyalty-management-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

/* 初始隐藏状态 */
.loyalty-management-visual .glow-circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.loyalty-management-visual .loyalty-system-img-back {
    opacity: 0;
}

.loyalty-management-visual .loyalty-system-img-front {
    opacity: 0;
}

/* 入场动画 */
.loyalty-management-visual.animate .glow-circle {
    animation: glowCircleScale 1s ease-out forwards;
}

.loyalty-management-visual.animate .loyalty-system-img-back {
    animation: systemImgSlideInLeft 0.8s ease-out 0.3s forwards;
}

.loyalty-management-visual.animate .loyalty-system-img-front {
    animation: systemImgSlideInRight 0.8s ease-out 0.5s forwards;
}

@keyframes glowCircleScale {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes systemImgSlideInLeft {
    0% {
        transform: translate(-120%, -55%);
        opacity: 0;
    }
    100% {
        transform: translate(-75%, -55%);
        opacity: 1;
    }
}

@keyframes systemImgSlideInRight {
    0% {
        transform: translate(30%, -54%);
        opacity: 0;
    }
    100% {
        transform: translate(-25%, -54%);
        opacity: 1;
    }
}

.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;
}

.loyalty-management-images {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
    z-index: 2;
}

.loyalty-system-img-back {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 2;
}

.loyalty-system-img-front {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-25%, -54%);
    width: 55%;
    height: auto;
    border-radius: 8px;
    z-index: 3;
}

.loyalty-management-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.21;
    text-align: center;
    margin: 0;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991px) {
    .loyalty-hero {
        min-height: 350px;
    }
    
    .loyalty-hero-content {
        padding: 50px 20px;
    }
    
    .loyalty-hero-subtitle {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .loyalty-hero-title {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .loyalty-hero-desc {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 35px;
    }
    
    .loyalty-hero-btn {
        margin-bottom: 40px;
        padding: 11px 35px;
    }
    
    .loyalty-hero-nav {
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .loyalty-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .loyalty-title {
        font-size: 28px;
    }
    
    .loyalty-dashboard-preview {
        padding: 20px 0;
    }
    
    .loyalty-dashboard-wrapper {
        min-height: 300px;
        padding: 20px 0;
    }
    
    .dashboard-stat-container {
        right: 5%;
        top: 40%;
    }
    
    .dashboard-stat-card {
        padding: 10px 16px;
        min-width: 130px;
    }
    
    .stat-label {
        font-size: 10px;
        line-height: 2;
    }
    
    .stat-value {
        font-size: 13px;
    }
    
    .stat-badge {
        font-size: 8px;
        padding: 2px 12px;
        line-height: 2.5;
    }
    
    .intro-title {
        font-size: 18px;
    }
    
    .intro-description {
        font-size: 18px;
    }
    
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-images {
        margin-bottom: 40px;
        min-height: 380px;
    }
    
    .who-we-are-images .decorative-circle-blue {
        width: 90%;
        padding-bottom: 90%;
    }
    
    .who-we-are-content {
        padding-left: 0;
    }
    
    .who-we-are-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .who-we-are-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .customer-benefits-section {
        padding: 60px 0;
    }
    
    .customer-benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .customer-benefits-title {
        font-size: 1.75rem;
    }
    
    .customer-benefits-list {
        gap: 1.5rem;
    }
    
    .operation-benefits-section {
        padding: 60px 0;
    }
    
    .operation-benefits-content {
        padding-left: 0;
    }
    
    .operation-benefits-title {
        font-size: 1.75rem;
    }
    
    .operation-benefits-list {
        gap: 1.5rem;
    }
    
    .operation-benefits-image .benefits-image {
        max-width: 250px;
    }
    
    .core-features-section {
        padding: 60px 0;
    }
    
    .core-features-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .core-features-list {
        gap: 2rem;
        margin-bottom: 40px;
    }
    
    .core-features-visual {
        padding-left: 0;
    }
    
    .core-features-card {
        max-width: 450px;
    }
    
    .card-tag {
        font-size: 10px;
        padding: 3px 14px;
    }
    
    .core-feature-with-image {
        margin-top: 2rem;
    }
    
    .core-features-bottom {
        margin-bottom: 2rem;
    }
    
    .loyalty-features-section {
        padding: 60px 0;
    }
    
    .loyalty-feature-card {
        margin-bottom: 40px;
    }
    
    .loyalty-management-section {
        padding: 60px 0;
    }
    
    .loyalty-management-title {
        font-size: 2rem;
        padding-left: 0;
        text-align: center;
    }
    
    .loyalty-management-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .loyalty-management-visual {
        min-height: 380px;
        margin-bottom: 3rem;
    }
    
    .glow-circle {
        width: 280px;
        height: 280px;
    }
    
    .loyalty-management-images {
        max-width: 450px;
        height: 350px;
    }
    
    .loyalty-management-subtitle {
        font-size: 1.75rem;
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .loyalty-hero {
        min-height: 320px;
    }
    
    .loyalty-hero-content {
        padding: 40px 15px;
    }
    
    .loyalty-hero-subtitle {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 5px;
    }
    
    .loyalty-hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .loyalty-hero-desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .loyalty-hero-btn {
        padding: 10px 30px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .loyalty-hero-nav {
        gap: 8px;
        justify-content: center;
    }
    
    .loyalty-hero-nav-label {
        font-size: 13px;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .loyalty-hero-nav i {
        display: none;
    }
    
    .loyalty-hero-nav-link {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .loyalty-hero-section {
        padding: 30px 0 20px;
    }
    
    .loyalty-main-section {
        padding: 40px 0;
    }
    
    .loyalty-title {
        font-size: 24px;
    }
    
    .loyalty-subtitle,
    .loyalty-cta-text {
        font-size: 14px;
    }
    
    .loyalty-subtitle,
    .loyalty-cta-text {
        font-size: 14px;
    }
    
    .loyalty-dashboard-wrapper {
        min-height: 250px;
    }
    
    .dashboard-stat-container {
        right: 2%;
        top: 40%;
    }
    
    .dashboard-stat-card {
        padding: 8px 12px;
        min-width: 110px;
    }
    
    .stat-label {
        font-size: 9px;
        line-height: 1.8;
    }
    
    .stat-value {
        font-size: 11px;
    }
    
    .stat-badge {
        font-size: 7px;
        padding: 1px 8px;
        line-height: 2.2;
    }
    
    .loyalty-intro-section {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 16px;
    }
    
    .intro-description {
        font-size: 16px;
    }
    
    .who-we-are-section {
        padding: 50px 0;
    }
    
    .who-we-are-images {
        min-height: 320px;
    }
    
    .who-we-are-images .decorative-circle-blue {
        width: 85%;
        padding-bottom: 85%;
    }
    
    
    .who-we-are-title {
        font-size: 1.5rem;
    }
    
    .who-we-are-description {
        font-size: 0.9rem;
    }
    
    .who-we-are-benefits .benefit-item {
        font-size: 0.875rem;
    }
    
    .customer-benefits-section {
        padding: 50px 0;
    }
    
    .customer-benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-detail-title,
    .benefit-detail-description {
        font-size: 0.875rem;
    }
    
    .benefit-detail-item i {
        font-size: 1.25rem;
    }
    
    .operation-benefits-section {
        padding: 50px 0;
    }
    
    .operation-benefits-title {
        font-size: 1.5rem;
    }
    
    .core-features-section {
        padding: 50px 0;
    }
    
    .core-features-title {
        font-size: 1.5rem;
    }
    
    .core-feature-title,
    .core-feature-details li {
        font-size: 0.875rem;
    }
    
    .core-feature-item i {
        font-size: 1.25rem;
    }
    
    .core-features-list {
        gap: 1.5rem;
    }
    
    .core-features-card {
        max-width: 380px;
    }
    
    .card-tag {
        font-size: 9px;
        padding: 2px 12px;
    }
    
    .loyalty-features-section {
        padding: 50px 0;
    }
    
    .loyalty-feature-image {
        width: 150px;
        height: 175px;
    }
    
    .loyalty-feature-title {
        font-size: 0.875rem;
        min-height: 45px;
    }
    
    .loyalty-management-section {
        padding: 50px 0;
    }
    
    .loyalty-management-title {
        font-size: 1.75rem;
    }
    
    .loyalty-management-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .loyalty-management-visual {
        min-height: 320px;
        margin-bottom: 2.5rem;
    }
    
    .glow-circle {
        width: 240px;
        height: 240px;
    }
    
    .loyalty-management-images {
        max-width: 380px;
        height: 300px;
    }
    
    .loyalty-management-subtitle {
        font-size: 1.5rem;
    }

    
    .hero-cta-buttons .btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 575px) {
    .loyalty-title {
        font-size: 20px;
    }
    
    .intro-title {
        font-size: 15px;
    }
    
    .intro-description {
        font-size: 15px;
    }
    
    .who-title {
        font-size: 20px;
    }
    
    .who-description {
        font-size: 15px;
    }
    

}

