@charset "UTF-8";

a:link {
    text-decoration: none;
    filter: Shadow(Color=#000000, Direction=1);
}

a:hover {
    /*text-decoration: underline;*/
    color: #6699FF;

}

a:active {
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
}

:root {
    --primary: #ff7a18;
    --primary-dark: #ea580c;
    --secondary: #1e293b;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #ffffff;
}

.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
}

.hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(255,122,24,0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(59,130,246,0.14), transparent 35%),
        #ffffff;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-outline-custom {
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
    color: #0f172a;
    background: white;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-card {
    background: #0f172a;
    color: white;
    border-radius: 36px;
    padding: 36px;
    box-shadow: 0 30px 70px rgba(15,23,42,0.25);
}

.hero-widget {
    background: rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
}

.service-card,
.feature-card,
.pricing-card,
.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 30px;
    background: white;
    transition: all 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15,23,42,0.08);
}

.icon-box {
    width: 144px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255,122,24,0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.stats-box {
    border-radius: 24px;
    background: white;
    border: 1px solid var(--border);
    padding: 28px;
}

.cta-section {
    border-radius: 42px;
    background: linear-gradient(135deg, #ff7a18, #fb923c);
    color: white;
    padding: 90px 60px;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary);
}

footer {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }

    .cta-section {
        padding: 60px 30px;
    }
}

.gt-custom-divider {
    height: 2px; /* 分割线的高度 */
    background-color: #dee2e6; /* 分割线的颜色 */
    margin: 20px 0; /* 分割线与周围元素的间距 */
}

.gt-faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.gt-faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gt-faq-item h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.gt-faq-item p {
    margin: 0;
    font-size: 16px;
    color: #4b5563;
}

.gt-faq-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    text-align: start;
}

.gt-faq-header p {
    color: #6b7280;
    font-size: 16px;
}

.gt-faq-footer {
    margin-top: 32px;
    text-align: start;
}

.gt-faq-footer p {
    color: #6b7280;
    font-size: 16px;
}

.classColorRed {
    color:#F00;
}

.classColorGreen {
    color:#096;
}

.classColorBlue {
    color:#00F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gt-faq-item h2 {
        font-size: 20px;
    }

    .gt-faq-item p,
    .gt-faq-header p,
    .gt-faq-footer p {
        font-size: 15px;
    }
}
