redisgn
This commit is contained in:
@@ -5,6 +5,9 @@
|
||||
--accent-orange: #d4864a;
|
||||
--accent-teal: #5a9e96;
|
||||
--accent-green: #7fb882;
|
||||
--widget-bg: rgba(255, 255, 255, 0.9);
|
||||
--widget-border: #d4864a;
|
||||
--widget-shadow: 0 4px 20px rgba(90, 82, 82, 0.1);
|
||||
}
|
||||
|
||||
* {
|
||||
@@ -1531,4 +1534,736 @@ body {
|
||||
height: 64px;
|
||||
filter: brightness(0) invert(1);
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
/* KI Widgets Section */
|
||||
.ki-widgets-section {
|
||||
padding: 80px 0;
|
||||
background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
|
||||
}
|
||||
|
||||
.widgets-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||
gap: 40px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ki-widget {
|
||||
background: var(--widget-bg);
|
||||
border: 2px solid var(--widget-border);
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
box-shadow: var(--widget-shadow);
|
||||
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ki-widget::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
|
||||
transform: scaleX(0);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.ki-widget:hover::before {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
.ki-widget:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 8px 30px rgba(90, 82, 82, 0.15);
|
||||
}
|
||||
|
||||
.widget-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.widget-icon {
|
||||
font-size: 2.5rem;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 4px 15px rgba(212, 134, 74, 0.3);
|
||||
}
|
||||
|
||||
.widget-header h3 {
|
||||
color: var(--primary-dark);
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.widget-content p {
|
||||
color: var(--primary-mid);
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.widget-features {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0 0 25px 0;
|
||||
}
|
||||
|
||||
.widget-features li {
|
||||
color: var(--primary-dark);
|
||||
font-size: 0.95rem;
|
||||
padding: 8px 0;
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.widget-features li::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--accent-green);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.widget-btn {
|
||||
background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 12px 30px;
|
||||
border-radius: 25px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(212, 134, 74, 0.3);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.widget-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(212, 134, 74, 0.4);
|
||||
}
|
||||
|
||||
.widget-btn:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.ki-widgets-section {
|
||||
padding: 60px 20px;
|
||||
}
|
||||
|
||||
.widgets-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.ki-widget {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.widget-icon {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.widget-header h3 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* KI Demo Widgets Section */
|
||||
.ki-demo-section {
|
||||
padding: 40px 0 80px 0;
|
||||
margin-top: -40px;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.demo-section-title {
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 10px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.demo-section-subtitle {
|
||||
text-align: center;
|
||||
color: var(--primary-mid);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.demo-widgets-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 40px;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.demo-widget {
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
border-radius: 20px;
|
||||
padding: 40px;
|
||||
box-shadow: 0 4px 20px rgba(90, 82, 82, 0.1);
|
||||
text-align: center;
|
||||
min-height: 600px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.demo-widget h3 {
|
||||
color: var(--primary-dark);
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.demo-widget p {
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.demo-icon-circle {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: rgba(127, 184, 130, 0.3);
|
||||
border-radius: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 20px;
|
||||
font-size: 2rem;
|
||||
box-shadow: 0 4px 15px rgba(127, 184, 130, 0.3);
|
||||
}
|
||||
|
||||
.demo-btn {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 12px 30px;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.demo-btn:hover {
|
||||
background: #4a8e86;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.chat-preview {
|
||||
background: #f5f5f5;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.chat-header {
|
||||
background: linear-gradient(135deg, var(--accent-teal), var(--accent-green));
|
||||
color: white;
|
||||
padding: 12px 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.chat-bubble {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
margin: 15px;
|
||||
padding: 12px 16px;
|
||||
border-radius: 12px 12px 12px 4px;
|
||||
display: inline-block;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.chat-bubble span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.chat-time {
|
||||
font-size: 0.75rem;
|
||||
opacity: 0.7;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.chat-messages {
|
||||
min-height: 120px;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.chat-input-area {
|
||||
display: flex;
|
||||
padding: 12px;
|
||||
background: white;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.chat-input-field {
|
||||
flex: 1;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 20px;
|
||||
padding: 10px 16px;
|
||||
font-size: 0.9rem;
|
||||
outline: none;
|
||||
transition: border-color 0.3s ease;
|
||||
}
|
||||
|
||||
.chat-input-field:focus {
|
||||
border-color: var(--accent-teal);
|
||||
}
|
||||
|
||||
.chat-send-btn {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.chat-send-btn:hover {
|
||||
background: #4a8e86;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.demo-widgets-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 30px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.demo-widget {
|
||||
padding: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.demo-note {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.online-dot {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #4ade80;
|
||||
border-radius: 50%;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.chat-icon {
|
||||
background: rgba(167, 139, 250, 0.3);
|
||||
}
|
||||
|
||||
.chat-preview .chat-bubble {
|
||||
background: #f0f0f0;
|
||||
color: var(--primary-dark);
|
||||
border-radius: 12px;
|
||||
margin: 15px;
|
||||
padding: 15px;
|
||||
text-align: left;
|
||||
max-width: 85%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.chat-preview .chat-bubble.user-bubble {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
margin-left: auto;
|
||||
margin-right: 15px;
|
||||
border-radius: 12px 12px 4px 12px;
|
||||
}
|
||||
|
||||
/* Problems Section */
|
||||
.problems-section {
|
||||
padding: 80px 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.section-label {
|
||||
display: block;
|
||||
color: var(--accent-teal);
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.ki-demo-section .section-label {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.problems-headline {
|
||||
font-size: 2.5rem;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 50px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.problems-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.problem-card {
|
||||
background: white;
|
||||
border-radius: 16px;
|
||||
padding: 30px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.problem-number {
|
||||
display: block;
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.85rem;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.problem-card h3 {
|
||||
color: var(--primary-dark);
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.problem-card p {
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.solution-card {
|
||||
background: white;
|
||||
border-radius: 16px;
|
||||
padding: 30px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.solution-label {
|
||||
display: block;
|
||||
color: var(--accent-teal);
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.solution-card h3 {
|
||||
color: var(--primary-dark);
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.solution-card p {
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.solution-badge {
|
||||
display: inline-block;
|
||||
background: rgba(127, 184, 130, 0.15);
|
||||
color: var(--accent-teal);
|
||||
padding: 10px 20px;
|
||||
border-radius: 8px;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.problems-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.problems-headline {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Fit Section */
|
||||
.fit-section {
|
||||
padding: 80px 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.fit-headline {
|
||||
font-size: 2.5rem;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 50px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.fit-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.fit-card {
|
||||
border-radius: 16px;
|
||||
padding: 30px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.fit-card.negative {
|
||||
background: rgba(255, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.fit-card.positive {
|
||||
background: rgba(0, 128, 0, 0.5);
|
||||
border-left-color: var(--accent-teal);
|
||||
}
|
||||
|
||||
.fit-card-title {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 25px;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
opacity: 1;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.negative-title {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.positive-title {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.fit-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.fit-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
padding: 12px 0;
|
||||
font-size: 0.95rem;
|
||||
color: var(--primary-dark);
|
||||
font-weight: 500;
|
||||
opacity: 1;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.fit-icon {
|
||||
flex-shrink: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.negative-icon {
|
||||
background: rgba(239, 68, 68, 0.15);
|
||||
color: #ef4444;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.positive-icon {
|
||||
background: rgba(127, 184, 130, 0.25);
|
||||
color: var(--accent-teal);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.fit-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.fit-headline {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Pricing Section */
|
||||
.pricing-section {
|
||||
padding: 80px 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.pricing-headline {
|
||||
font-size: 2.5rem;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 20px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.pricing-headline::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pricing-box {
|
||||
background: white;
|
||||
border-radius: 16px;
|
||||
padding: 50px 60px;
|
||||
border: none;
|
||||
border-top: 3px solid var(--accent-orange);
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.pricing-cards {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 80px;
|
||||
margin-bottom: 30px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.pricing-section .pricing-card {
|
||||
text-align: center;
|
||||
background: transparent !important;
|
||||
padding: 0 !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 0 !important;
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
.pricing-section .pricing-card:hover {
|
||||
transform: none;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.pricing-amount {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.pricing-prefix {
|
||||
font-size: 1rem;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.pricing-value {
|
||||
font-size: 3rem;
|
||||
font-weight: 300;
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.pricing-suffix {
|
||||
font-size: 1rem;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.pricing-label {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.pricing-detail {
|
||||
font-size: 0.85rem;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.pricing-note {
|
||||
text-align: center;
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.95rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 30px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.pricing-cta {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.pricing-btn {
|
||||
display: inline-block;
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
padding: 18px 50px;
|
||||
border-radius: 50px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.pricing-btn:hover {
|
||||
background: #4a8e86;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.pricing-benefits {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.pricing-benefit {
|
||||
color: var(--primary-mid);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.pricing-benefit::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.benefit-check {
|
||||
color: var(--accent-teal);
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.pricing-cards {
|
||||
flex-direction: column;
|
||||
gap: 40px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pricing-headline {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.pricing-benefits {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user