/* ═══════════════════════════════════════════════════════════════════════════
   NOTEHOOK LABS - Design System v2.0
   Theme: Sophisticated • Premium • Intelligent
   Colors:  Deep Obsidian, Warm Violet, Amber Gold
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* ─── Base Hues & Sentiment ────────────────────────────────────────────── */
    --hue-primary: 260;
    /* Warm Violet (Intelligence/Wisdom/Depth) */
    --hue-secondary: 40;
    /* Amber Gold (Premium/Trust/Value) */
    --hue-tertiary: 330;
    /* Soft Rose (Warmth/Humanity) */
    --hue-neutral: 240;
    /* Cool Gray/Blue (Technology/Structure) */

    /* ─── Color Palette ────────────────────────────────────────────────────── */

    /* Backgrounds - Rich, dark, layered */
    --bg-primary: #0C0A14;
    /* Deepest Obsidian */
    --bg-secondary: #13111C;
    /* Slightly lighter layer */
    --bg-tertiary: #1A1726;
    /* Card background */
    --bg-elevated: #242033;
    /* Hover states */

    /* Text */
    --text-primary: #F5F3FF;
    /* Crisp White-Violet */
    --text-secondary: #A8A3B8;
    /* Muted Violet-Gray */
    --text-muted: #6B667D;
    /* Darker text */
    --text-invert: #0C0A14;
    /* For use on bright accents */

    /* Accents */
    --accent-primary: #A78BFA;
    /* Main Violet */
    --accent-primary-bright: #C4B5FD;
    /* Text Highlights */
    --accent-primary-dim: rgba(167, 139, 250, 0.1);

    --accent-secondary: #FBBF24;
    /* Amber Gold */
    --accent-secondary-bright: #FDE68A;
    --accent-secondary-dim: rgba(251, 191, 36, 0.1);

    --accent-tertiary: #F472B6;
    /* Soft Rose */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(167, 139, 250, 0.05) 0%, rgba(12, 10, 20, 0) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(167, 139, 250, 0.15) 0%, rgba(12, 10, 20, 0) 70%);

    /* Borders */
    --border-color: rgba(167, 139, 250, 0.15);
    --border-bright: rgba(167, 139, 250, 0.4);

    /* Status */
    --success: #34D399;
    /* Emerald */
    --error: #F87171;
    /* Soft Red */
    --warning: #FBBF24;
    /* Amber */
    --info: #60A5FA;
    /* Blue */

    /* ─── Spacing & Layout ─────────────────────────────────────────────────── */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --container-width: 1200px;
    --nav-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ─── Typography ───────────────────────────────────────────────────────── */
    /* 'Space Grotesk' for Headings -> Tech/Modern feel */
    /* 'Inter' for Body -> Clean/Readable */
    --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Neural Canvas Background */
#neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

::selection {
    background: rgba(167, 139, 250, 0.3);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-header p {
    font-size: 1.25rem;
    margin-top: var(--space-sm);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ─────────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 10, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    padding-top: calc(var(--nav-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: var(--gradient-glow);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    /* Larger, more impactful */
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Floating AI Nodes Animation */
.floating-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.node {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.3;
    filter: blur(8px);
    animation: floatNode 20s infinite ease-in-out;
}

.node:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: var(--accent-secondary);
}

.node:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    opacity: 0.15;
}

.node:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
    background: var(--accent-tertiary);
}

.node:nth-child(4) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 10%;
    animation-delay: -15s;
}

.node:nth-child(5) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 40%;
    animation-delay: -7s;
    font-size: 0;
}

/* Adding small precise nodes */
.node:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 50%;
    background: #fff;
    opacity: 0.8;
    filter: none;
    box-shadow: 0 0 10px var(--accent-primary);
}

.node:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 60%;
    right: 30%;
    background: var(--accent-secondary);
    opacity: 0.8;
    filter: none;
    box-shadow: 0 0 10px var(--accent-secondary);
}

@keyframes floatNode {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* RAG Visualization Component Use */
.rag-visual {
    margin-top: var(--space-4xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    position: relative;
}

.rag-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 2;
}

.rag-node {
    width: 80px;
    height: 80px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.rag-node.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
    transform: translateY(-5px);
}

.rag-node.processing {
    animation: pulsePurple 2s infinite;
}

@keyframes pulsePurple {
    0% {
        box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(167, 139, 250, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
    }
}

.rag-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

.rag-node.active+.rag-label {
    color: var(--text-primary);
}

.rag-connection {
    width: 100px;
    height: 2px;
    background: var(--border-color);
    position: relative;
    margin-top: -30px;
    /* Align with node center */
}

.rag-connection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s linear;
}

.rag-node.active~.rag-connection::after {
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: Buttons, Cards, Inputs
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 0 1.5rem;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-invert);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-lg {
    height: 56px;
    padding: 0 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    height: 40px;
    padding: 0 1rem;
    font-size: 0.875rem;
}

/* Cards & Bento Grid */
.card,
.bento-card,
.pillar-card,
.pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect on hover */
.card::after,
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(0, 0, 0, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover,
.bento-card:hover {
    transform: translateY(-5px);
    background: var(--bg-elevated);
    border-color: transparent;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.card:hover::after,
.bento-card:hover::after {
    opacity: 1;
}

.card-icon,
.icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.2));
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    align-items: start;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(167, 139, 250, 0.05) 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 50px -20px rgba(167, 139, 250, 0.3);
}

.pricing-tier {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.pricing-features {
    margin-bottom: var(--space-xl);
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-lg);
}

.pricing-features li {
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* Problem Comparison */
.problem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.comparison-card.bad {
    border-color: rgba(248, 113, 113, 0.3);
}

.comparison-card.good {
    border-color: rgba(167, 139, 250, 0.3);
}

.comparison-card h4 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.comparison-card li {
    margin-bottom: var(--space-sm);
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.comparison-card.bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
}

.comparison-card.good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Tech Grid */
.tech-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-primary-dim);
}

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

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

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

/* Footer CTA */
.footer-cta {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.footer-cta h2 {
    margin-bottom: var(--space-md);
}

.footer-cta p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Navbar */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

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

    /* Hero */
    .hero-cta {
        flex-direction: column;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .problem-comparison {
        grid-template-columns: 1fr;
    }

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

    .rag-visual {
        display: none;
        /* Hide complex animation on mobile */
    }

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

/* Page Header Styles */
.page-header {
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    text-align: center;
    background: radial-gradient(circle at top center, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.blog-card-image {
    height: 200px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    display: flex;
    gap: var(--space-xs);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.blog-card p {
    font-size: 0.9375rem;
    flex: 1;
}

.btn-ghost {
    padding: 0;
    height: auto;
    background: none;
    color: var(--accent-primary);
    justify-content: flex-start;
}

.btn-ghost:hover {
    transform: translateX(5px);
}