:root {
    --primary: #1E4D8C;
    --secondary: #34B5B8;
    --accent: #E63946;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(45deg, var(--secondary), var(--accent));
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #FAFAFA;
    overflow-x: hidden;
}

.anywin-header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.anywin-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anywin-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anywin-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    color: transparent;
}

.anywin-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.anywin-menu {
    display: flex;
    gap: 40px;
}

.anywin-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.anywin-menu a.anywin-active {
    color: var(--primary);
}

.anywin-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.anywin-menu a:hover::after,
.anywin-menu a.anywin-active::after {
    width: 100%;
}

.anywin-finance-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.anywin-finance-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(30, 77, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 181, 184, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.anywin-finance-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.anywin-finance-hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.anywin-gradient-text {
    display: block;
    font-size: 24px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.anywin-hero-main {
    display: block;
    color: var(--dark);
}

.anywin-finance-hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.anywin-cta-group {
    display: flex;
    gap: 20px;
}

.anywin-cta-button {
    padding: 16px 32px;
    background: var(--gradient-1);
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.anywin-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 77, 140, 0.2);
}

.anywin-cta-secondary {
    padding: 16px 32px;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    background: rgba(30, 77, 140, 0.1);
    transition: background 0.3s ease;
    display: inline-block;
}

.anywin-cta-secondary:hover {
    background: rgba(30, 77, 140, 0.2);
}

.anywin-finance-hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anywin-phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.anywin-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.anywin-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.anywin-app-title {
    font-size: 18px;
    font-weight: 700;
}

.anywin-app-icon {
    font-size: 20px;
}

.anywin-loan-amount-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.anywin-amount-gauge {
    width: 60px;
    height: 30px;
    border: 2px solid white;
    border-radius: 15px 15px 0 0;
    margin: 0 auto 15px;
    position: relative;
}

.anywin-gauge-needle {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 2px;
    height: 20px;
    background: white;
    transform-origin: bottom;
    transform: rotate(45deg);
}

.anywin-amount-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.anywin-amount-value {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
}

.anywin-loan-period {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.anywin-apply-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anywin-apply-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.anywin-activity-banner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.anywin-bulb-icon {
    font-size: 16px;
}

.anywin-process-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.anywin-process-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    font-size: 11px;
}

.anywin-process-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 16px;
}

.anywin-popular-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.anywin-content-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.anywin-content-card {
    flex: 1;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    font-size: 11px;
}

.anywin-compliant {
    background: #FF6B35;
}

.anywin-welfare {
    background: #8B5CF6;
}

.anywin-flame-icon,
.anywin-gift-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 16px;
}

.anywin-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.anywin-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 10px;
}

.anywin-nav-icon {
    font-size: 18px;
}

.anywin-3d-money-bag {
    position: absolute;
    bottom: -50px;
    right: -30px;
    z-index: 10;
}

.anywin-money-bag {
    width: 60px;
    height: 80px;
    background: #8B5CF6;
    border-radius: 10px 10px 20px 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.anywin-money-bag::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.anywin-coins {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 20px;
    animation: coinFloat 3s infinite ease-in-out;
}

.anywin-hero-promo-text {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    text-align: center;
}

.anywin-promo-line {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.anywin-promo-yellow {
    color: #FFD700;
}

.anywin-promo-white {
    color: white;
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.anywin-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.anywin-subtitle {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
}

.anywin-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

.anywin-app-showcase {
    padding: 120px 40px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.anywin-app-showcase-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.anywin-app-showcase-text {
    text-align: left;
}

.anywin-app-showcase-text h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.anywin-app-showcase-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.anywin-app-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anywin-app-phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg);
}

.anywin-loan-selection {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.anywin-loan-header {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.anywin-loan-amount {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 20px;
}

.anywin-loan-slider {
    margin-bottom: 20px;
}

.anywin-slider-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}

.anywin-slider-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FF6B35);
    border-radius: 3px;
}

.anywin-slider-handle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.anywin-coin-icon {
    font-size: 12px;
}

.anywin-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.8;
}

.anywin-login-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    color: #333;
}

.anywin-login-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.anywin-phone-input {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
}

.anywin-country-code {
    color: #666;
    margin-right: 10px;
    font-weight: 500;
}

.anywin-phone-input input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.anywin-phone-format {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.anywin-next-button {
    width: 100%;
    background: #ccc;
    color: #666;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: not-allowed;
    margin-bottom: 10px;
}

.anywin-terms {
    font-size: 11px;
    color: #666;
    text-align: center;
}

.anywin-terms a {
    color: #8B5CF6;
    text-decoration: none;
}

.anywin-special-offer {
    background: #FF6B35;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.anywin-offer-header {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
}

.anywin-success-rate {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.anywin-get-now {
    background: white;
    color: #FF6B35;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

.anywin-decorative-coins {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.anywin-coin {
    font-size: 16px;
    animation: coinFloat 2s infinite ease-in-out;
}

.anywin-coin:nth-child(2) {
    animation-delay: 0.5s;
}

.anywin-coin:nth-child(3) {
    animation-delay: 1s;
}

.anywin-gift-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
}

.anywin-app-profile {
    padding: 120px 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.anywin-app-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.anywin-app-profile-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.anywin-app-profile-text {
    text-align: left;
}

.anywin-app-profile-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.anywin-app-profile-text p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.8;
}

.anywin-app-profile-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.anywin-profile-phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

.anywin-features {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.anywin-features h2 {
    font-size: 48px;
    color: var(--dark);
    position: relative;
}

.anywin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
}

.anywin-feature-card {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.anywin-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.anywin-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 181, 184, 0.1);
    transition: all 0.3s ease;
}

.anywin-feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.anywin-feature-card:hover .anywin-feature-icon {
    background: var(--gradient-1);
    transform: rotate(-5deg);
}

.anywin-feature-card:hover .anywin-feature-icon img {
    filter: brightness(0) invert(1);
}

.anywin-feature-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.anywin-feature-card p {
    color: #666;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.anywin-requirements {
    background: var(--light);
    padding: 120px 40px;
    position: relative;
}

.anywin-requirements-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.anywin-requirements-text h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.anywin-requirements-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.anywin-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.anywin-requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(52, 181, 184, 0.05);
    border-radius: 20px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.anywin-requirement-item:hover {
    background: rgba(52, 181, 184, 0.1);
    transform: translateX(10px);
}

.anywin-requirement-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 16px;
    color: var(--light);
    flex-shrink: 0;
}

.anywin-requirement-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.anywin-requirement-content p {
    color: #666;
    line-height: 1.6;
}

.anywin-process {
    padding: 120px 40px;
    background: #f8f9fa;
}

.anywin-process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.anywin-process-step {
    text-align: center;
    position: relative;
}

.anywin-step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.anywin-step-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.anywin-step-content p {
    color: #666;
    line-height: 1.6;
}

.anywin-product-details {
    padding: 120px 40px;
    background: var(--light);
}

.anywin-product-content {
    max-width: 1400px;
    margin: 0 auto;
}

.anywin-product-text {
    text-align: center;
    margin-bottom: 80px;
}

.anywin-product-text h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.anywin-product-text p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.anywin-product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.anywin-spec-card {
    background: rgba(52, 181, 184, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.anywin-spec-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.anywin-spec-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.anywin-spec-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.anywin-spec-card p {
    color: #666;
    line-height: 1.6;
}

.anywin-calculation {
    padding: 120px 40px;
    background: #f8f9fa;
}

.anywin-calculation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.anywin-calculation-text {
    text-align: center;
    margin-bottom: 80px;
}

.anywin-calculation-text h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.anywin-calculation-text p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.anywin-calculation-example {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.anywin-calculation-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.anywin-calculation-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.anywin-calculation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.anywin-calculation-item:last-child {
    border-bottom: none;
}

.anywin-calculation-total {
    background: var(--gradient-1);
    color: var(--light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

.anywin-calculation-label {
    color: #666;
    font-weight: 500;
}

.anywin-calculation-value {
    color: var(--dark);
    font-weight: 600;
}

.anywin-calculation-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
}

.anywin-calculation-note p {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.anywin-customer-service {
    padding: 120px 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.anywin-customer-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.anywin-customer-service-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.anywin-customer-service-text {
    text-align: center;
    margin-bottom: 80px;
}

.anywin-customer-service-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.anywin-customer-service-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.anywin-cs-phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.anywin-cs-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.anywin-cs-back-arrow {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.anywin-cs-title {
    font-size: 18px;
    font-weight: 700;
}

.anywin-cs-contact-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.anywin-cs-contact-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.anywin-cs-hours {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.anywin-cs-representative {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
}

.anywin-cs-category-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.anywin-cs-category-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 15px 10px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.anywin-cs-category-btn.anywin-cs-active {
    background: #FF6B35;
}

.anywin-cs-category-icon {
    font-size: 20px;
}

.anywin-cs-warning {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.anywin-cs-faq {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.anywin-cs-faq-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.anywin-cs-logo {
    width: 30px;
    height: 30px;
    background: white;
    color: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.anywin-cs-faq h4 {
    font-size: 16px;
    margin: 0;
}

.anywin-cs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.anywin-cs-faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.anywin-cs-faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.anywin-cs-arrow {
    font-size: 16px;
    opacity: 0.7;
}

.anywin-cs-wallet-illustration {
    position: absolute;
    bottom: -50px;
    right: -30px;
    z-index: 10;
}

.anywin-cs-wallet {
    font-size: 40px;
    position: relative;
}

.anywin-cs-coin {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 20px;
    animation: coinFloat 3s infinite ease-in-out;
}

.anywin-cs-arrow-up {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anywin-compliance {
    padding: 120px 40px;
    background: var(--light);
}

.anywin-compliance-content {
    max-width: 1400px;
    margin: 0 auto;
}

.anywin-compliance-text {
    text-align: center;
    margin-bottom: 80px;
}

.anywin-compliance-text h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.anywin-compliance-text p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.anywin-compliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.anywin-compliance-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(52, 181, 184, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.anywin-compliance-item:hover {
    background: rgba(52, 181, 184, 0.1);
    transform: translateY(-5px);
}

.anywin-compliance-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.anywin-compliance-item h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.anywin-compliance-item p {
    color: #666;
    line-height: 1.6;
}

.anywin-cta-section {
    padding: 120px 40px;
    background: var(--gradient-1);
    color: var(--light);
    text-align: center;
}

.anywin-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.anywin-cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.anywin-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.anywin-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.anywin-cta-section .anywin-cta-button {
    background: var(--light);
    color: var(--primary);
}

.anywin-cta-section .anywin-cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.anywin-cta-section .anywin-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border: 2px solid var(--light);
}

.anywin-cta-section .anywin-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.anywin-footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 40px 40px;
}

.anywin-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.anywin-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.anywin-footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

.anywin-footer-links {
    display: grid;
    gap: 20px;
}

.anywin-footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.anywin-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .anywin-finance-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .anywin-finance-hero-text p {
        margin: 0 auto 40px;
    }

    .anywin-cta-group {
        justify-content: center;
    }

    .anywin-requirements-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .anywin-calculation-example {
        grid-template-columns: 1fr;
    }

    .anywin-app-showcase-content,
    .anywin-app-profile-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .anywin-phone-mockup,
    .anywin-app-phone-mockup,
    .anywin-cs-phone-mockup,
    .anywin-profile-phone-mockup {
        transform: none;
        margin: 0 auto;
    }

    .anywin-3d-money-bag,
    .anywin-cs-wallet-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .anywin-menu {
        display: none;
    }

    .anywin-finance-hero-text h1 {
        font-size: 48px;
    }

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

    .anywin-features,
    .anywin-requirements,
    .anywin-process,
    .anywin-product-details,
    .anywin-calculation,
    .anywin-compliance,
    .anywin-cta-section,
    .anywin-app-showcase,
    .anywin-app-profile,
    .anywin-customer-service {
        padding: 80px 20px;
    }

    .anywin-features-grid,
    .anywin-product-specs,
    .anywin-compliance-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .anywin-feature-card,
    .anywin-spec-card {
        padding: 30px;
    }

    .anywin-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .anywin-phone-mockup,
    .anywin-app-phone-mockup,
    .anywin-cs-phone-mockup,
    .anywin-profile-phone-mockup {
        width: 250px;
        height: 500px;
    }

    .anywin-app-showcase-text h2,
    .anywin-app-profile-text h2,
    .anywin-customer-service-text h2 {
        font-size: 36px;
    }

    .anywin-hero-promo-text {
        position: static;
        margin-top: 30px;
    }

    .anywin-promo-line {
        font-size: 18px;
    }
}