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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

.ab-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header & Navigation */
.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.ab-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-logo {
    width: 50px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ab-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-company-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.ab-company-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
}

.ab-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.ab-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
}

.ab-nav-menu a:hover,
.ab-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Main Content */
.ab-main {
    margin-top: 100px;
}

/* Breadcrumb */
.ab-breadcrumb {
    padding: 10px 0;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.ab-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.ab-breadcrumb-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ab-breadcrumb-link:hover {
    color: #ff6b35;
}

.ab-breadcrumb-separator {
    color: #999;
    font-size: 12px;
}

.ab-breadcrumb-current {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Section */
.ab-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ab-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ab-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Common Styles */
.ab-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.ab-section:nth-child(even) {
    background: #f8f9fa;
}

.ab-section:hover {
    z-index: 2;
}

.ab-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ab-section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Strategy Section */
.ab-strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ab-strategy-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.ab-strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ab-strategy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.ab-strategy-icon svg {
    width: 100%;
    height: 100%;
}

.ab-strategy-card:hover .ab-strategy-icon {
    transform: scale(1.1);
}

.ab-strategy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ab-strategy-text {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.ab-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ab-portfolio-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ab-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ab-portfolio-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ab-portfolio-image svg {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.ab-portfolio-card:hover .ab-portfolio-image svg {
    transform: scale(1.1);
}

.ab-portfolio-content {
    padding: 30px;
}

.ab-portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.ab-portfolio-text {
    color: #666;
    margin-bottom: 20px;
}

/* Process Section */
.ab-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ab-process-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ab-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 移除旧的数字样式 */
.ab-process-number {
    display: none;
}

.ab-process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ab-process-text {
    color: #666;
    line-height: 1.6;
}

.ab-process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.ab-process-icon svg {
    width: 100%;
    height: 100%;
}

.ab-process-card:hover .ab-process-icon {
    transform: scale(1.1);
}

/* CTA Section */
.ab-cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-align: center;
}

.ab-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.ab-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ab-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.ab-btn-primary,
.ab-btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ab-btn-primary {
    background: #ffffff;
    color: #ff6b35;
}

.ab-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.ab-btn-secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
}

.ab-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Footer */
.ab-footer {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 80px 0 30px;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.ab-footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-footer-description {
    color: #34495e;
    line-height: 1.7;
    margin: 20px 0 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.ab-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ab-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ab-contact-item span {
    color: #95a5a6;
    min-width: 70px;
    font-weight: 500;
}

.ab-contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ab-contact-item a:hover {
    color: #ff6b35;
}

.ab-footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.ab-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-footer-links a {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
}

.ab-footer-links a:hover {
    color: #ff6b35;
}

.ab-footer-address {
    color: #34495e;
    line-height: 1.7;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 500;
}

.ab-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
} 

.ab-strategy-section {
    padding-top: 80px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.ab-portfolio-section {
    padding-top: 80px;
    position: relative;
    z-index: 3;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.ab-process-section {
    padding-top: 80px;
    position: relative;
    z-index: 4;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
} 

/* SVG动画效果 */
svg path, svg circle, svg rect, svg line {
    transition: all 0.3s ease;
}

.ab-strategy-card:hover svg path,
.ab-strategy-card:hover svg circle,
.ab-portfolio-card:hover svg path,
.ab-portfolio-card:hover svg circle,
.ab-portfolio-card:hover svg line,
.ab-process-card:hover svg path,
.ab-process-card:hover svg circle,
.ab-process-card:hover svg rect,
.ab-process-card:hover svg line {
    stroke-width: 3;
} 

/* Privacy Notice */
.ab-privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

.ab-privacy-notice.show {
    transform: translateY(0);
}

.ab-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ab-privacy-text {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    flex: 1;
}

.ab-privacy-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-privacy-link:hover {
    color: #f7931e;
}

.ab-privacy-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ab-btn-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ab-btn-settings {
    padding: 10px 25px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-settings:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
} 