Design-Optimierung: Konsistentes Token-System, professionellere Animationen, Navy+Gold Farbschema

- CSS Custom Properties konsolidiert: Neues Token-System mit Navy/Gold Logo-Farben,
  Spacing-Grid (8px), Border-Radius und Z-Index Skala
- Unprofessionelle Animationen entfernt: Glitch, Neon, Morph, Orbit, Ripple
- PulseGlow und Shimmer dezenter gemacht (Gold-Akzente)
- Typografie: Inter als Hauptschrift, Bebas Neue nur für Hero-Titel
- Section-Konsistenz: Hero/Products auf Navy (#0A1832), Footer auf Navy-Dark
- Gold-Akzente in Products (Hover-Border, Feature-Bullets, Learn-More Button)
- Footer-Links mit Gold-Hover
- Card-Hover-Effekte subtiler (translateY -4px statt -10px + scale)
- Cookie-Consent auf globale Tokens umgestellt
- Mobile: Navy-BG, Gold-Hover statt Cyan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Dieser Commit ist enthalten in:
Claude Code
2026-02-16 21:55:54 +00:00
Ursprung a61fab12e6
Commit e7e884d2ed
9 geänderte Dateien mit 236 neuen und 349 gelöschten Zeilen

Datei anzeigen

@@ -1,9 +1,9 @@
/* Modern Products Section Design */
.products-section {
background: #001f3f;
background: var(--color-navy);
position: relative;
padding: 120px 0;
padding: var(--space-4xl) 0;
overflow: hidden;
}
@@ -15,10 +15,10 @@
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(15, 114, 181, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(0, 64, 110, 0.1) 0%, transparent 50%),
radial-gradient(circle at 50% 100%, rgba(15, 114, 181, 0.05) 0%, transparent 50%);
background:
radial-gradient(circle at 20% 50%, rgba(19, 40, 68, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(19, 40, 68, 0.2) 0%, transparent 50%),
radial-gradient(circle at 50% 100%, rgba(200, 168, 81, 0.05) 0%, transparent 50%);
animation: backgroundShift 20s ease-in-out infinite;
}
@@ -41,8 +41,8 @@
}
@keyframes titleGlow {
0%, 100% { text-shadow: 0 0 20px rgba(15, 114, 181, 0.5); }
50% { text-shadow: 0 0 40px rgba(15, 114, 181, 0.8), 0 0 60px rgba(15, 114, 181, 0.4); }
0%, 100% { text-shadow: 0 0 15px rgba(200, 168, 81, 0.3); }
50% { text-shadow: 0 0 25px rgba(200, 168, 81, 0.5), 0 0 40px rgba(200, 168, 81, 0.2); }
}
.products-section .section-subtitle {
@@ -72,8 +72,8 @@
/* Product Card */
.product-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
border: 1px solid rgba(15, 114, 181, 0.3);
border-radius: 20px;
border: 1px solid rgba(200, 168, 81, 0.3);
border-radius: var(--radius-lg);
padding: 0;
position: relative;
overflow: visible;
@@ -105,20 +105,19 @@
}
.product-card:hover {
transform: translateY(-10px) scale(1.02);
transform: translateY(-6px);
background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 1));
border-color: rgba(15, 114, 181, 0.5);
box-shadow:
0 30px 60px rgba(0, 0, 0, 0.4),
0 0 80px rgba(15, 114, 181, 0.15),
inset 0 0 20px rgba(15, 114, 181, 0.03);
border-color: var(--color-gold);
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.3),
0 0 40px rgba(200, 168, 81, 0.1);
}
/* Product Header */
.product-header {
padding: 40px 40px 30px;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.15) 0%, transparent 50%);
border-bottom: 1px solid rgba(15, 114, 181, 0.25);
background: linear-gradient(135deg, rgba(10, 24, 50, 0.1) 0%, transparent 50%);
border-bottom: 1px solid rgba(200, 168, 81, 0.2);
display: grid;
grid-template-columns: 80px 1fr;
align-items: center;
@@ -139,16 +138,16 @@
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0A1832, #0f72b5);
border-radius: 20px;
background: linear-gradient(135deg, var(--color-navy), var(--color-gold));
border-radius: var(--radius-lg);
opacity: 0.1;
transition: all 0.5s;
}
.product-card:hover .product-icon-bg {
opacity: 0.3;
transform: rotate(10deg) scale(1.1);
background: linear-gradient(135deg, #0A1832, #1e3a5f);
opacity: 0.25;
transform: rotate(5deg) scale(1.05);
background: linear-gradient(135deg, var(--color-navy), var(--color-gold-dark));
}
.product-icon {
@@ -188,7 +187,7 @@
}
.product-card:hover .product-title {
color: #0f72b5;
color: var(--color-navy);
}
.product-tagline {
@@ -234,7 +233,7 @@
content: '▸';
position: absolute;
left: 0;
color: #0f72b5;
color: var(--color-gold);
font-size: 1.2rem;
transition: all 0.3s;
}
@@ -245,15 +244,15 @@
}
.product-card:hover .product-features li::before {
color: #1e90ff;
color: var(--color-gold-light);
transform: translateX(3px);
}
/* Product Footer */
.product-footer {
padding: 30px 40px;
background: rgba(15, 114, 181, 0.08);
border-top: 1px solid rgba(15, 114, 181, 0.2);
background: rgba(10, 24, 50, 0.05);
border-top: 1px solid rgba(200, 168, 81, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
@@ -285,9 +284,9 @@
/* Learn More Button */
.product-learn-more {
background: #C8A851;
border: 2px solid #C8A851;
color: #0a0f1c;
background: var(--color-gold);
border: 2px solid var(--color-gold);
color: var(--color-navy);
padding: 10px 25px;
border-radius: 50px;
cursor: pointer;
@@ -307,7 +306,7 @@
left: 50%;
width: 0;
height: 0;
background: #0a0f1c;
background: var(--color-navy);
transform: translate(-50%, -50%);
transition: all 0.5s;
border-radius: 50px;
@@ -319,8 +318,8 @@
}
.product-learn-more:hover {
color: #C8A851;
border-color: #C8A851;
color: var(--color-gold);
border-color: var(--color-gold);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(200, 168, 81, 0.3);
}
@@ -373,8 +372,8 @@
.tools-grid .tool-card:hover {
transform: translateY(-3px);
background: rgba(0, 0, 0, 0.05);
border-color: rgba(15, 114, 181, 0.3);
box-shadow: 0 5px 15px rgba(15, 114, 181, 0.15);
border-color: rgba(200, 168, 81, 0.3);
box-shadow: 0 5px 15px rgba(10, 24, 50, 0.1);
}
.tools-grid .tool-icon {
@@ -395,7 +394,7 @@
}
.tools-grid h4 {
color: #1a1a1a;
color: var(--color-navy);
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: 600;
@@ -419,7 +418,7 @@
content: '▸';
position: absolute;
left: 0;
color: #1e90ff;
color: var(--color-gold);
font-weight: bold;
}
@@ -451,7 +450,7 @@
.particle {
position: absolute;
background: rgba(15, 114, 181, 0.3);
background: rgba(200, 168, 81, 0.3);
border-radius: 50%;
pointer-events: none;
}