|
/* Hero Section */
|
|
.hero-section {
|
|
text-align: center;
|
|
padding: 100px 20px 80px;
|
|
background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.75rem;
|
|
font-weight: 700;
|
|
color: var(--text-color);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.15;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--light-text-color);
|
|
max-width: 700px;
|
|
margin: 0 auto 2.5rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.hero-ctas {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.hero-btn {
|
|
padding: 1rem 2rem;
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.hero-subtext {
|
|
font-size: 0.875rem;
|
|
color: var(--light-text-color);
|
|
margin: 0;
|
|
}
|
|
|
|
/* Features Section */
|
|
.features-section {
|
|
padding: 80px 20px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.features-header {
|
|
text-align: center;
|
|
max-width: 700px;
|
|
margin: 0 auto 60px;
|
|
}
|
|
|
|
.features-header h2 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.features-header p {
|
|
font-size: 1.125rem;
|
|
color: var(--light-text-color);
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 2.5rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.feature-card {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.feature-icon {
|
|
color: var(--primary-color);
|
|
margin-bottom: 1.5rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.75rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.feature-card p {
|
|
font-size: 1rem;
|
|
color: var(--light-text-color);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Use Cases Section */
|
|
.use-cases-section {
|
|
padding: 80px 20px;
|
|
background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
|
|
text-align: center;
|
|
}
|
|
|
|
.use-cases-section h2 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 3rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.use-cases-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.use-case-card {
|
|
background-color: #FFFFFF;
|
|
padding: 2.5rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.use-case-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.use-case-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.use-case-card h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.use-case-card p {
|
|
font-size: 1rem;
|
|
color: var(--light-text-color);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* CTA Section */
|
|
.cta-section {
|
|
padding: 100px 20px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.cta-content {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cta-section h2 {
|
|
font-size: 2.75rem;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta-section p {
|
|
font-size: 1.25rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.cta-btn {
|
|
padding: 1rem 2.5rem;
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
background-color: white;
|
|
color: var(--primary-color);
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.cta-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 992px) {
|
|
.hero-section h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.features-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.features-header h2,
|
|
.use-cases-section h2,
|
|
.cta-section h2 {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero-section {
|
|
padding: 60px 20px 50px;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.hero-ctas {
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.hero-btn {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.features-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.use-cases-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.features-section,
|
|
.use-cases-section {
|
|
padding: 60px 20px;
|
|
}
|
|
|
|
.cta-section {
|
|
padding: 60px 20px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.hero-section h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.features-header h2,
|
|
.use-cases-section h2,
|
|
.cta-section h2 {
|
|
font-size: 1.75rem;
|
|
}
|
|
} |