        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #111827;
            --secondary: #4b5563;
            --accent: #9ce6d4;
            --accent-dark: #7bcebd;
            --coral: #ff8e8b;
            --mint: #9ce6d4;
            --text-primary: #111827;
            --text-secondary: #4b5563;
            --text-light: #9ca3af;
            --bg-main: #ffffff;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            /* Select & Search colors */
            --ss-orange: #ff674f;
            --ss-purple: #a10cc4;
            --ss-blue: #2096f2;
            --ss-blue-dark: #306fb0;
            --footer-bg: #0a0a0a;
            --footer-text: #a1a1aa;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0 24px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo img {
            height: 36px;
            width: auto;
        }

        .logo-text {
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-text .vanban {
            color: var(--primary);
        }

        .logo-text .studios {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

                .nav-cta {
            background-color: #6faaa6;
            color: #ffffff !important;
            padding: 8px 18px;
            border-radius: 9999px;
            font-weight: 500 !important;
            font-size: 0.9rem;
            transition: all 0.3s ease !important;
            border: 1px solid transparent;
        }

        .nav-cta:hover {
            background-color: rgba(111, 170, 166, 0.9);
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            padding: 180px 24px 120px;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background: var(--bg-light);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 50px;
            margin-bottom: 32px;
            letter-spacing: 0.3px;
        }

        .hero-badge span.dot {
            width: 8px;
            height: 8px;
            background-color: var(--mint);
            border-radius: 50%;
            margin-right: 8px;
            display: inline-block;
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 28px;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

                .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: #6faaa6;
            color: #ffffff !important;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 9999px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .hero-cta:hover {
            background: rgba(111, 170, 166, 0.9);
            transform: scale(1.05);
        }

        /* Products Section */
        .products {
            padding: 80px 24px 120px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: background 0.3s ease;
        }

        .product-card:hover::before {
            background: var(--mint);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .product-icon {
            width: 64px;
            height: 64px;
            background: var(--bg-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            border: 1px solid var(--border);
        }

        .product-icon svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        .product-icon-img {
            background: none;
            border: none;
            padding: 0;
        }

        .product-icon-img img {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            object-fit: cover;
        }

        .product-tag {
            display: inline-block;
            padding: 6px 12px;
            background: var(--bg-light);
            color: var(--text-secondary);
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 6px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid var(--border);
        }

        .product-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .product-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 32px;
            flex-grow: 1;
        }

                .product-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            color: #6faaa6;
            background: transparent;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            width: fit-content;
            border: 1px solid rgba(111, 170, 166, 0.2);
            border-radius: 9999px;
            background-color: rgba(111, 170, 166, 0.02);
        }

        .product-btn:hover {
            background-color: rgba(111, 170, 166, 0.9);
            color: #ffffff;
            border-color: rgba(111, 170, 166, 0.9);
            transform: scale(1.05);
        }

        .product-btn svg {
            transition: transform 0.3s ease;
        }
        .product-btn:hover svg {
            transform: translateX(4px);
        }

        /* Select & Search specific card styling */
        .product-card.ss-card .product-tag {
            background: rgba(32, 150, 242, 0.05);
            color: var(--ss-blue);
            border-color: rgba(32, 150, 242, 0.2);
        }

        .product-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.2s ease;
        }

        .product-btn:hover svg {
            transform: translateX(4px);
        }

.product-card.simple-qr-card .product-tag {
            background: rgba(12, 25, 35, 0.05);
            color: #0c1923;
            border-color: rgba(12, 25, 35, 0.2);
        }

        /* Coming Soon Card */
        .product-card.coming-soon {
            background: var(--bg-light);
            border: 1px dashed var(--border);
        }

        /* Roadmap & Ecosystem Section */
        .roadmap-ecosystem {
            padding: 80px 24px 120px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .roadmap-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .roadmap-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: #f3f4f6;
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .roadmap-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .roadmap-header p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 24px;
        }

        .ecosystem-main-card {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .ecosystem-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .ecosystem-icon {
            width: 48px;
            height: 48px;
            background: rgba(111, 170, 166, 0.1);
            color: #6faaa6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ecosystem-icon svg {
            width: 24px;
            height: 24px;
        }

        .ecosystem-badge {
            background: #6faaa6;
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .ecosystem-main-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .ecosystem-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .ecosystem-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .stat-card {
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .stat-label {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .stat-label svg {
            width: 14px;
            height: 14px;
        }

        .stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        .ecosystem-desc {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .ecosystem-footer {
            border-top: 1px solid var(--border);
            padding-top: 24px;
        }

        .explore-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: gap 0.2s ease;
        }

        .explore-link:hover {
            gap: 12px;
        }

        .explore-link svg {
            width: 18px;
            height: 18px;
        }

        .ecosystem-side-cards {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .focus-card {
            background: var(--bg-light);
            border-radius: 24px;
            padding: 32px;
            flex: 1;
        }

        .focus-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .focus-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .focus-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            border-radius: 16px;
            background: transparent;
            transition: all 0.3s ease;
            margin: -16px; /* Offset the padding to maintain visual alignment */
            cursor: pointer;
        }

        .focus-item:hover {
            background: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .focus-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .focus-icon svg {
            width: 24px;
            height: 24px;
        }

        .bg-primary-light {
            background: rgba(111, 170, 166, 0.1);
            color: #6faaa6;
        }

        .bg-blue-light {
            background: rgba(32, 150, 242, 0.1);
            color: #2096f2;
        }

        .bg-pink-light {
            background: rgba(255, 103, 79, 0.1);
            color: #ff674f;
        }

        .focus-content {
            flex: 1;
        }

        .focus-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }

        .focus-header h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
        }

        .focus-date {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .status-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .status-badge.in-progress {
            background: rgba(32, 150, 242, 0.1);
            color: #2096f2;
            border: 1px solid rgba(32, 150, 242, 0.2);
        }

        .status-badge.released {
            background: rgba(76, 175, 80, 0.1);
            color: #4caf50;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .status-badge.coming-soon {
            background: rgba(111, 170, 166, 0.1);
            color: #6faaa6;
            border: 1px solid rgba(111, 170, 166, 0.2);
        }

        .status-badge.research {
            background: var(--bg-white);
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .progress-bar {
            height: 6px;
            background: #e5e7eb;
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-bar .progress {
            height: 100%;
            background: #6faaa6;
            border-radius: 3px;
        }

        .release-card {
            background: #6faaa6;
            border-radius: 24px;
            padding: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .release-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .release-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .release-value {
            font-size: 2rem;
            font-weight: 700;
        }

        .release-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .release-icon svg {
            width: 24px;
            height: 24px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 24px 120px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: start;
        }

        .faq-left h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .faq-left p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .faq-features {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .faq-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 500;
        }

        .faq-feature svg {
            width: 20px;
            height: 20px;
            color: #6faaa6;
        }

        .support-btn {
            display: inline-block;
            padding: 10px 24px;
            background: #6faaa6;
            color: white !important;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
        }

        .support-btn:hover {
            background: rgba(111, 170, 166, 0.9);
            transform: scale(1.05);
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            transition: transform 0.3s ease;
        }

        .faq-question:hover {
            color: #6faaa6;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .faq-answer p {
            padding-bottom: 24px;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

        /* Progressive Loading */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, visibility;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: none;
            visibility: visible;
        }

        /* Responsive additions for new sections */
        @media (max-width: 900px) {
            .ecosystem-grid {
                grid-template-columns: 1fr;
            }
            .faq-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .ecosystem-stats {
                grid-template-columns: 1fr;
            }
            .roadmap-header h2 {
                font-size: 2.2rem;
            }
        }

        .product-card.coming-soon:hover::before {
            background: transparent;
        }

        .coming-soon-badge {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 24px 120px;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-card {
            background: transparent;
            text-align: left;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .contact-header p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--bg-white);
            color: var(--primary);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--mint);
            box-shadow: 0 0 0 3px rgba(156, 230, 212, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-hint {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 4px;
        }

                .submit-btn {
            width: 100%;
            padding: 12px;
            background: #6faaa6;
            color: #ffffff;
            border: none;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .submit-btn:hover {
            background: rgba(111, 170, 166, 0.9);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 80px 24px 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 300px;
        }

        .footer-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .footer-logo-link img {
            height: 32px;
            width: auto;

        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }

        .footer-text {
            color: var(--footer-text);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            margin-top: 8px;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--footer-text);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
        }

        .social-links svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-designed {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 140px 20px 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .products {
                padding: 60px 20px 80px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .contact {
                padding: 60px 20px 80px;
            }

            .contact-card {
                padding: 0;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                flex-direction: column;
                text-align: left;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                justify-content: center;
            }
        }

        .hero-cta-svg {
            width: 20px;
            height: 20px;
        }

        .product-icon-coming-soon {
            background: linear-gradient(135deg, #c0c0c8 0%, #d8d8e0 100%);
        }

        .roadmap-badge-svg {
            width: 16px;
            height: 16px;
        }

        .progress-100 {
            width: 100%;
        }

        .progress-70 {
            width: 70%;
        }

        .progress-15 {
            width: 15%;
        }

        .progress-0 {
            width: 0%;
            background: transparent;
        }

        .footer-brand-highlight {
            color: white;
        }
