/* Modern Tech Style - Blue Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --secondary-color: #00D4FF;
    --dark-color: #0A1628;
    --light-color: #F8FAFC;
    --text-color: #334155;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    --gradient: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Language Selector */
.language-selector {
    padding: 8px 12px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.language-selector:hover {
    border-color: #0066FF;
    background: #F0F9FF;
}

.language-selector:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.language-selector option {
    padding: 8px;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    color: var(--text-color);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    background: white;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 150px 20px 100px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Card Mockup */
.card-mockup {
    position: relative;
    height: 400px;
}

.virtual-card {
    width: 380px;
    height: 240px;
    background: var(--gradient);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 8px;
    margin-bottom: 40px;
}

.card-number {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 500;
}

.card-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.card-logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
/* Benefits Section Styles */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 600px;
    margin: 24px auto 0;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom-left-radius: 100%;
    z-index: 0;
}

.benefit-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.icon-circle svg {
    color: white;
}

.benefit-content {
    position: relative;
    z-index: 1;
}

.benefit-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.benefit-desc {
    color: #64748B;
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* 定价卡片特殊样式 */
.price-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: #64748B;
    font-size: 1rem;
}

.price-value {
    color: #1E293B;
    font-weight: 600;
    font-size: 1.125rem;
}

.price-item.highlight .price-value {
    color: #10B981;
    font-weight: 700;
}

/* 极速开通卡片样式 */
.process-timeline {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 12px;
}

.step-text {
    font-size: 0.875rem;
    color: #64748B;
    text-align: center;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 16px;
}

/* 安全卡片样式 */
.security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.feature-tag {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 0.875rem;
    color: #0369a1;
}

.cert-badges {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.cert-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* 支持卡片样式 */
.support-channels {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    border: 1px solid #e2e8f0;
}

.channel-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
}
/* 新增卡片样式 */

/* 全球覆盖卡片样式 */
.global-coverage {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin: 24px 0;
}

.region-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748B;
}

.popular-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.region-tag {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-size: 0.875rem;
    color: #1E293B;
}

.exchange-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* 灵活配置卡片样式 */
.configuration-options {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin: 24px 0;
}

.config-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.config-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.config-icon {
    font-size: 24px;
    margin-right: 12px;
    width: 40px;
    text-align: center;
}

.config-info {
    flex: 1;
}

.config-name {
    font-weight: 600;
    color: #1E293B;
    font-size: 1rem;
}

.config-desc {
    color: #64748B;
    font-size: 0.875rem;
    margin-top: 2px;
}

.api-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* 新增卡片颜色主题 */
.benefit-card:nth-child(5) .icon-circle {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.benefit-card:nth-child(6) .icon-circle {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* 调整grid布局为3列 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .region-stats {
        grid-template-columns: 1fr;
    }

    .popular-regions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .popular-regions {
        grid-template-columns: 1fr;
    }
}
.channel-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.channel-icon {
    font-size: 24px;
    margin-right: 12px;
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-weight: 600;
    color: #1E293B;
    font-size: 1rem;
}

.channel-desc {
    color: #64748B;
    font-size: 0.875rem;
    margin-top: 2px;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .benefits {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.benefit-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-left: 0;
}

.image-placeholder {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
}

.brand-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-logo {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.pricing-card.featured {
    background: var(--dark-color);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-features li {
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card .btn-outline,
.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* CTA Section */
/* CTA Section */
.cta {
    background-color: #f8f9fa; /* 非常浅的灰色背景 */
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    color: #333;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2d3436;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #636e72;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background-color: #0984e3; /* 清新蓝色 */
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 6px; /* 更小的圆角，更专业 */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(9, 132, 227, 0.3);
}

.cta .btn-primary:hover {
    background-color: #0770c4; /* 深一点的蓝色 */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(9, 132, 227, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Content Pages Styles */
.hero-small {
    padding: 140px 20px 60px;
    margin-top: 60px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
}

.hero-small h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0F172A;
}

.hero-small .subtitle {
    font-size: 18px;
    color: #64748B;
}

.content-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #0F172A;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #1E293B;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: #475569;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ul li {
    margin-bottom: 12px;
    color: #475569;
}

.content-wrapper a {
    color: #0066FF;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0F172A;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    margin-bottom: 40px;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.contact-method p {
    margin-bottom: 8px;
    color: #475569;
}

.contact-method a {
    color: #0066FF;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method .note {
    font-size: 14px;
    color: #64748B;
    font-style: italic;
}

.qr-codes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F172A;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 24px;
}

.qr-placeholder p {
    margin: 4px 0;
}

.qr-placeholder .qr-note {
    font-size: 12px;
    color: #94A3B8;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-id {
    margin-top: 12px;
    font-size: 14px;
    color: #64748B;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0F172A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: #0066FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052CC;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #64748B;
    margin-top: 12px;
}

.faq-link {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #F0F9FF;
    border-radius: 12px;
    text-align: center;
}

.faq-link h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F172A;
}

.faq-link p {
    color: #475569;
}

.faq-link a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 600;
}

.faq-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-codes {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-small h1 {
        font-size: 36px;
    }
    
    .content-wrapper h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
}
