/* Haleji - Main Stylesheet */

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

:root {
    --primary-orange: #FF6B35;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
}

/* Dark Theme (Default) */
[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #666;
    --border-color: rgba(255, 255, 255, 0.1);
    --logo-text: #fff;
    --logo-icon: #ff8500;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e8e8e8;
    --text-primary: #0a0a0a;
    --text-secondary: #666;
    --border-color: rgba(0, 0, 0, 0.1);
    --logo-text: #0a0a0a;
    --logo-icon: #ff8500;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#footer-placeholder {
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-svg {
    height: 45px;
    width: auto;
}

.logo-svg .logo-white {
    fill: var(--logo-text);
    transition: fill 0.3s ease;
}

.logo-svg .logo-orange {
    fill: var(--logo-icon);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.theme-toggle:hover svg {
    stroke: white;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
}

.language-toggle button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.language-toggle button.active {
    background: var(--primary-orange);
    color: white;
}

.language-toggle button:hover:not(.active) {
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--text-primary), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-dropdown .dropdown-arrow {
    display: inline-block;
    font-size: 0.7rem;
    transition: transform 0.3s ease, color 0.3s ease;
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--text-primary);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.dropdown-menu {
    position: absolute;
    top: 125%;
    left: -10px;
    transform: translateY(25px) scale(0.95);
    transform-origin: top left;
    min-width: 220px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 12px;
    transform: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 14px;
    transform: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--bg-secondary);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 1.5rem;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.dropdown-separator {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

/* Two-column dropdown menu */
.dropdown-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 500px;
    gap: 0;
    padding: 0;
}

.dropdown-caption {
    grid-column: 1 / -1;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-column a {
    padding: 0.75rem 1.25rem;
    border-bottom: none;
}

.dropdown-column a:first-child {
    padding-top: 0.75rem;
}

.dropdown-column a:last-child {
    padding-bottom: 0.75rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1), transparent 50%);
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 20px;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-badge-security {
    position: absolute;
    bottom: 15%;
    right: 8%;
    max-width: 70px !important;
    border-radius: 12px !important;
    animation: floatBadgeVertical 4s ease-in-out infinite !important;
}

.hero-badge-canadian {
    position: absolute;
    top: 5%;
    left: 8%;
    max-width: 70px !important;
    border-radius: 12px !important;
    animation: floatBadgeVertical 4s ease-in-out infinite 0.5s !important;
}

.hero-badge-work {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 70px !important;
    border-radius: 12px !important;
    animation: floatBadgeVertical 4s ease-in-out infinite 1s !important;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatBadgeVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50%);
    }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--bg-tertiary);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-by:hover {
    transform: translateY(-2px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15);
}

.powered-by span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* USP Section */
.usp-section {
    background: var(--bg-secondary);
}

/* USP Box - Gradient Highlighted Container */
.usp-box {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

/* Gradient border effect */
.usp-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg,
        var(--primary-orange),
        var(--accent-purple),
        var(--accent-blue));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Subtle glow effect */
.usp-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Canadian Flag Shimmer */
.flag-container {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.canadian-flag {
    font-size: 5rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    line-height: 1;
}

.canadian-flag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.5) 40%, 
        rgba(255, 107, 53, 0.5) 60%, 
        transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    animation: flagShimmer 3s infinite;
}

@keyframes flagShimmer {
    0%, 20% { transform: translateX(-100%) skewX(-15deg); }
    80%, 100% { transform: translateX(100%) skewX(-15deg); }
}

.usp-box .section-title,
.usp-box .section-subtitle,
.usp-box .usp-grid {
    position: relative;
    z-index: 1;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.usp-item {
    text-align: center;
    padding: 2rem;
}

.usp-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.usp-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.usp-item p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.pricing-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.pricing-card .period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.features-list li::before {
    content: '';
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 0rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Old Footer Rules - Will be overridden by new rules below */
footer:not(.new-footer) {
    background: var(--bg-primary);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .powered-by {
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    display: none; /* Hide old footer bottom */
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1rem;
    }

    .dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .usp-box {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .hero-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-image {
        max-width: 210px;
    }

    .hero-image img {
        border-radius: 15px;
    }

    .hero-badge-security {
        max-width: 45px !important;
        bottom: 10%;
        right: -5%;
    }

    .hero-badge-canadian {
        max-width: 45px !important;
        top: 0%;
        left: -5%;
    }

    .hero-badge-work {
        max-width: 45px !important;
        bottom: 10%;
        left: -5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        border-bottom: 1px solid var(--border-color);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem 0;
    }

    .nav-links > li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 1rem;
        background: transparent;
        display: none;
        min-width: auto;
    }

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        padding-left: 0.5rem;
        background: transparent;
    }

    .dropdown-caption {
        white-space: normal;
    }

    .usp-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .usp-box::before {
        border-radius: 20px;
    }

    .language-toggle,
    .theme-toggle {
        margin-left: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--primary-orange);
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-orange);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.95rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-btn-settings:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.cookie-btn-reject {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Page Content - for sub-pages */
.page-content {
    padding-top: 100px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-body h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-orange);
}

.page-body h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
}

.page-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.page-body ul, .page-body ol {
    margin: 1rem 0 1rem 0;
    color: var(--text-secondary);
    list-style: none;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body a {
    color: var(--primary-orange);
    text-decoration: none;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

/* === NEW FOOTER STYLES === */
.new-footer {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    margin-bottom: 0;
    flex-shrink: 0;
}

.footer-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.new-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.new-footer-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.new-footer-columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
}

.footer-logo-section .logo {
    display: inline-block;
}

.footer-logo-section .logo .logo-svg {
    height: 38px;
}

.new-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.new-footer-bottom .footer-credit p {
    margin: 0;
}

.new-footer .footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.new-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer .footer-section ul li {
    margin-bottom: 0.75rem;
}

.new-footer .footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.new-footer .footer-section a:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .new-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-box {
        padding: 2rem;
        border-radius: 16px;
    }

    .new-footer-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .new-footer-heading {
        font-size: 2rem;
    }

    .new-footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-section {
        order: -1;
    }

    .new-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse-shadow 2s 3;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-orange));
    -webkit-mask: url('../images/haleji-symbol-logo-01.svg') no-repeat center / contain;
    mask: url('../images/haleji-symbol-logo-01.svg') no-repeat center / contain;
    animation: pulse-loader 2s infinite ease-in-out;
}

@keyframes pulse-loader {
    0% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(0.95); }
}

/* Scroll Pulse Animation */
@keyframes pulse-glow-card {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.animate-pulse {
    animation: pulse-glow-card 1.5s ease-out;
}

/* Technical Section Styles */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    text-align: left;
}

.tech-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-visual-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    filter: blur(40px);
    --tx: 0px;
    --ty: 0px;
    animation: pulseGlow 4s infinite alternate;
}

.tech-visual-main {
    width: 140px;
    height: 140px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: none;
    --tx: 0px;
    --ty: 0px;
    transform: translate(var(--tx), var(--ty)) rotate(-5deg);
    transition: transform 0.3s ease;
}

.tech-visual:hover .tech-visual-main {
    transform: translate(var(--tx), var(--ty)) rotate(0deg) scale(1.05);
}

.tech-visual-main svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.tech-visual-main svg .shield {
    fill: var(--primary-orange);
}

.tech-visual-main svg .lock-shackle,
.tech-visual-main svg .lock-body {
    fill: white;
}

.tech-visual-main svg .lock-shackle {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-25px); /* Start unlocked */
}

.tech-visual.locked .tech-visual-main svg .lock-shackle {
    transform: translateY(0); /* Animate to locked */
}

.tech-orbit {
    position: absolute;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    pointer-events: none;
    --tx: 0px;
    --ty: 0px;
}
.orbit-1 { width: 240px; height: 240px; animation: spin 20s linear infinite; }
.orbit-2 { width: 360px; height: 360px; animation: spin 30s linear infinite reverse; }

.orbit-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -6px;
    box-shadow: 0 0 15px var(--accent-purple);
}

.tech-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-item-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-item-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    color: white;
}

.tech-item-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.tech-item-content h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(var(--tx), var(--ty)) scale(0.9); }
    100% { opacity: 1; transform: translate(var(--tx), var(--ty)) scale(1.1); }
}

@keyframes spin { 
    0% { transform: translate(var(--tx), var(--ty)) rotate(0deg); }
    100% { transform: translate(var(--tx), var(--ty)) rotate(360deg); }
}

@media (max-width: 992px) {
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .tech-visual {
        height: 300px;
    }
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 260px; height: 260px; }
}

.tech-triangle-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.tech-triangle-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.tech-tri-1 { top: 4px; left: 50%; transform: translateX(-50%); }
.tech-tri-2 { bottom: 6px; left: 4px; }
.tech-tri-3 { bottom: 6px; right: 4px; }
}

/* Technical Section Styles */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    text-align: left;
}

.tech-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-visual-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    filter: blur(40px);
    --tx: 0px;
    --ty: 0px;
    animation: pulseGlow 4s infinite alternate;
}

.tech-visual-main {
    width: 140px;
    height: 140px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: none;
    --tx: 0px;
    --ty: 0px;
    transform: translate(var(--tx), var(--ty)) rotate(-5deg);
    transition: transform 0.3s ease;
}

.tech-visual:hover .tech-visual-main {
    transform: translate(var(--tx), var(--ty)) rotate(0deg) scale(1.05);
}

.tech-visual-main svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.tech-visual-main svg .shield {
    fill: var(--primary-orange);
}

.tech-visual-main svg .lock-shackle,
.tech-visual-main svg .lock-body {
    fill: white;
}

.tech-visual-main svg .lock-shackle {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-25px); /* Start unlocked */
}

.tech-visual.locked .tech-visual-main svg .lock-shackle {
    transform: translateY(0); /* Animate to locked */
}

.tech-orbit {
    position: absolute;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    pointer-events: none;
    --tx: 0px;
    --ty: 0px;
}
.orbit-1 { width: 240px; height: 240px; animation: spin 20s linear infinite; }
.orbit-2 { width: 360px; height: 360px; animation: spin 30s linear infinite reverse; }

.orbit-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -6px;
    box-shadow: 0 0 15px var(--accent-purple);
}

.tech-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-item-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-item-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    color: white;
}

.tech-item-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.tech-item-content h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(var(--tx), var(--ty)) scale(0.9); }
    100% { opacity: 1; transform: translate(var(--tx), var(--ty)) scale(1.1); }
}

@keyframes spin { 
    0% { transform: translate(var(--tx), var(--ty)) rotate(0deg); }
    100% { transform: translate(var(--tx), var(--ty)) rotate(360deg); }
}

@media (max-width: 992px) {
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .tech-visual {
        height: 300px;
    }
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 260px; height: 260px; }
}

.tech-triangle-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.tech-triangle-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.tech-tri-1 { top: 4px; left: 50%; transform: translateX(-50%); }
.tech-tri-2 { bottom: 6px; left: 4px; }
.tech-tri-3 { bottom: 6px; right: 4px; }

/* Theme Icon Toggling */
.sun-icon, .moon-icon {
    display: none;
}

/* In Light Mode, show Moon (to switch to Dark) */
[data-theme="light"] .moon-icon {
    display: block;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

/* Accessibility Page Tags */
.tag-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.tag-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tag-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

/* Version Dialog */
#footerCredit {
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

.version-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.version-dialog-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.version-dialog {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 260px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.version-dialog-overlay.visible .version-dialog {
    transform: scale(1);
}

.version-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.version-dialog-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 600;
}

.version-dialog-countdown {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-variant-numeric: tabular-nums;
}

.version-dialog-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.version-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.version-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.version-dialog-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.version-changelog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.version-changelog-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.version-changelog-link:hover {
    color: var(--accent-purple);
}

.version-changelog-link:hover::after {
    transform: translateX(3px);
}
