diff --git a/index.html b/index.html
index 0331c00..8316715 100644
--- a/index.html
+++ b/index.html
@@ -1881,6 +1881,60 @@
}
/* ══════════════════════════════════════════════════════════
+ STRIP 5 ICONS
+ ══════════════════════════════════════════════════════════ */
+ .strip-icons {
+ padding: 40px 0 20px;
+ }
+ .icons-row {
+ display: flex;
+ justify-content: center;
+ gap: 48px;
+ flex-wrap: wrap;
+ }
+ .icon-block {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 10px;
+ min-width: 100px;
+ }
+ .icon-block-svg {
+ width: 56px;
+ height: 56px;
+ border-radius: 50%;
+ background: var(--accent-dim);
+ border: 1px solid rgba(0, 245, 255, 0.25);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: var(--accent);
+ transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
+ }
+ .icon-block:hover .icon-block-svg {
+ border-color: var(--accent);
+ transform: translateY(-3px);
+ box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
+ }
+ .icon-block-label {
+ font-size: 12px;
+ font-weight: 600;
+ color: var(--text-muted);
+ text-align: center;
+ letter-spacing: 0.02em;
+ transition: color 0.2s;
+ }
+ .icon-block:hover .icon-block-label {
+ color: var(--text);
+ }
+ @media (max-width: 600px) {
+ .icons-row { gap: 24px; }
+ .icon-block { min-width: 80px; }
+ .icon-block-svg { width: 46px; height: 46px; }
+ .icon-block-label { font-size: 11px; }
+ }
+
+ /* ══════════════════════════════════════════════════════════
FOUNDER STORY
══════════════════════════════════════════════════════════ */
.story-card {
@@ -2408,6 +2462,62 @@
+
+
+