/* ==========================================================================
   Awwwards-Level Theme - "Swiss Structural Grid"
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-main: #050505;
    --bg-offset: #0a0a0a;
    --color-accent: #0047FF;
    /* Cobalt Blue */
    --color-accent-hover: #0033cc;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --grid-line: rgba(255, 255, 255, 0.12);

    --font-sans: 'Archivo', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-custom: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --nav-height: 90px;
}

/* --- Resets --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background: var(--bg-main);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.5;
    background: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.lock-scroll {
    overflow: hidden;
}

::selection {
    background: var(--color-accent);
    color: #fff;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a,
button {
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    cursor: none;
    outline: none;
}

ul {
    list-style: none;
}

/* --- Custom Magnetic Cursor --- */
.cursor-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
    mix-blend-mode: difference;
}

.cursor-main.hover {
    width: 60px;
    height: 60px;
    background: #fff;
}

.cursor-follower.hover {
    opacity: 0;
}

@media (max-width: 1024px) {

    .cursor-main,
    .cursor-follower {
        display: none !important;
    }

    a,
    button {
        cursor: pointer !important;
    }
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.text-hero {
    font-size: clamp(3.5rem, 10vw, 12rem);
}

.text-h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    margin-bottom: 2rem;
}

.text-h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-mono {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.p-large {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 800px;
}

/* --- Structure & Utilities --- */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4vw;
}

.grid-wrap {
    border-left: 1px solid var(--grid-line);
    border-right: 1px solid var(--grid-line);
}

.section-border {
    border-bottom: 1px solid var(--grid-line);
}

.pad-y {
    padding: 8rem 0;
}

/* --- Scroll Animations (Skew & Reveal) --- */
.anim-wrap {
    overflow: hidden;
    display: block;
}

.anim-skew {
    display: block;
    transform: translateY(120%) skewY(10deg);
    opacity: 0;
    transform-origin: top left;
    transition: transform 1s var(--ease-custom), opacity 1s var(--ease-custom);
}

.anim-skew.is-visible {
    transform: translateY(0) skewY(0);
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s var(--ease-custom);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--ease-custom) 0.4s;
    overflow: hidden;
    position: relative;
}

.btn-solid::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    mix-blend-mode: difference;
    transition: left 0.4s var(--ease-custom);
}

.btn-solid:hover::after {
    left: 0;
}

.btn-outline {
    display: inline-flex;
    padding: 1.2rem 3rem;
    border: 1px solid var(--grid-line);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}

/* --- 1. Header (Strictly Consistent) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    border-bottom: 1px solid var(--grid-line);
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo img {
    height: 65px;
    filter: invert(1);
    position: relative;
    z-index: 2001;
}

.nav-links {
    display: flex;
    height: 100%;
}

.nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    border-left: 1px solid var(--grid-line);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--color-accent);
    transition: height 0.3s var(--ease-custom);
    z-index: -1;
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link:last-child {
    border-right: 1px solid var(--grid-line);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2001;
}

.hamburger {
    display: none;
    width: 40px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s var(--ease-custom);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--color-accent);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background: var(--color-accent);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-main);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10vw;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s var(--ease-custom);
    border-bottom: 1px solid var(--grid-line);
}

.mobile-menu.active {
    clip-path: inset(0 0 0% 0);
}

.mob-nav-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--grid-line);
}

.mob-nav-list a {
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    padding: 2vh 0;
    border-bottom: 1px solid var(--grid-line);
    display: block;
    overflow: hidden;
    position: relative;
}

.mob-nav-list a span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-custom);
    transition-delay: 0s;
}

.mobile-menu.active .mob-nav-list a span {
    transform: translateY(0);
}

.mobile-menu.active .mob-nav-list a:nth-child(1) span {
    transition-delay: 0.3s;
}

.mobile-menu.active .mob-nav-list a:nth-child(2) span {
    transition-delay: 0.4s;
}

.mobile-menu.active .mob-nav-list a:nth-child(3) span {
    transition-delay: 0.5s;
}

.mobile-menu.active .mob-nav-list a:nth-child(4) span {
    transition-delay: 0.6s;
}

.mob-nav-list a:hover {
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .btn-header {
        display: none !important;
    }

    .hamburger {
        display: block;
    }
}

/* --- 2. Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10vh;
    padding-top: var(--nav-height);
    position: relative;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--grid-line);
    padding-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* --- 3. Kinetic Marquee --- */
.marquee-sec {
    border-bottom: 1px solid var(--grid-line);
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-offset);
    padding: 1.5rem 0;
}

.marquee-track {
    display: inline-block;
    animation: scrollTxt 15s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-secondary);
    padding-right: 4rem;
}

@keyframes scrollTxt {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- 4. Intro & Stats --- */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--grid-line);
}

.split-left {
    border-right: 1px solid var(--grid-line);
    padding: 8rem 4vw;
}

.split-right {
    padding: 8rem 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    border: 1px solid var(--grid-line);
    padding: 2rem;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .grid-split {
        grid-template-columns: 1fr;
    }

    .split-left {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
        padding: 4rem 4vw;
    }

    .split-right {
        padding: 4rem 4vw;
    }
}

/* --- 5. Hover-Reveal Services --- */
.services-list {
    border-bottom: 1px solid var(--grid-line);
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 4vw;
    padding: 4rem 4vw;
    border-bottom: 1px solid var(--grid-line);
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background: var(--color-accent);
    color: #fff;
}

.srv-num {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: 0.3s;
}

.service-row:hover .srv-num {
    color: #fff;
}

.srv-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    transition: transform 0.4s var(--ease-custom);
}

.service-row:hover .srv-title {
    transform: translateX(30px);
}

.srv-arrow {
    font-size: 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.4s var(--ease-custom);
}

.service-row:hover .srv-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- 6. Industry Blueprint Grid --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--grid-line);
}

.ind-card {
    padding: 4rem 2rem;
    border-right: 1px solid var(--grid-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.ind-card:last-child {
    border-right: none;
}

.ind-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #fff;
    transition: height 0.4s var(--ease-custom);
    z-index: 0;
}

.ind-card:hover::before {
    height: 100%;
}

.ind-card:hover h3,
.ind-card:hover p,
.ind-card:hover .text-mono {
    color: var(--bg-main);
}

.ind-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.ind-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.ind-card .text-mono {
    position: relative;
    z-index: 1;
    transition: 0.3s;
    margin-bottom: 2rem;
    display: block;
}

@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-card:nth-child(2) {
        border-right: none;
    }

    .ind-card:nth-child(1),
    .ind-card:nth-child(2) {
        border-bottom: 1px solid var(--grid-line);
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .ind-card {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
        min-height: 300px;
    }
}

/* --- 7. Interactive ROI Calculator --- */
.calc-wrapper {
    padding: 8rem 4vw;
    border-bottom: 1px solid var(--grid-line);
    background: var(--bg-offset);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
}

.calc-input-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-slider-wrap {
    border: 1px solid var(--grid-line);
    padding: 3rem;
}

.slider-ui {
    -webkit-appearance: none;
    width: 100%;
    height: 1px;
    background: var(--text-secondary);
    outline: none;
    margin-top: 2rem;
}

.slider-ui::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    cursor: pointer;
    transition: 0.2s;
    border-radius: 0;
}

.slider-ui::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.val-display {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-top: 1rem;
}

.calc-outputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.out-box {
    border-left: 5px solid var(--color-accent);
    padding-left: 2rem;
}

.out-box.alt {
    border-color: #fff;
}

.out-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.out-box.alt .out-num {
    color: #fff;
}

@media (max-width: 1024px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- 8. Data Dashboard Mockup --- */
.dash-section {
    padding: 8rem 4vw;
    border-bottom: 1px solid var(--grid-line);
}

.dash-board {
    border: 1px solid var(--grid-line);
    padding: 2rem;
    background: var(--bg-main);
    margin-top: 4rem;
}

.dash-controls {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--grid-line);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.dash-btn {
    font-family: var(--font-mono);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    color: var(--text-secondary);
    transition: 0.3s;
}

.dash-btn.active,
.dash-btn:hover {
    border-color: var(--grid-line);
    color: #fff;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    gap: 2%;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grid-line);
}

.bar-item {
    flex: 1;
    background: #fff;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0.8s var(--ease-custom);
}

.bar-item.active {
    transform: scaleY(1);
}

.bar-item:hover {
    background: var(--color-accent);
}

/* --- 9. Minimal Testimonials --- */
.testi-section {
    padding: 8rem 4vw;
    border-bottom: 1px solid var(--grid-line);
    background: var(--color-accent);
    color: #fff;
}

.testi-scroll {
    display: flex;
    gap: 4rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
}

.testi-scroll::-webkit-scrollbar {
    display: none;
}

.t-card {
    min-width: 60vw;
    scroll-snap-align: start;
    border-left: 2px solid #fff;
    padding-left: 3rem;
}

.t-quote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.t-author {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .t-card {
        min-width: 85vw;
        padding-left: 1.5rem;
    }
}

/* --- 10. Forms / Contact Grid --- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--grid-line);
}

.contact-left {
    padding: 8rem 4vw;
    border-right: 1px solid var(--grid-line);
}

.contact-right {
    padding: 8rem 4vw;
}

.struct-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--grid-line);
    background: transparent;
    padding: 1.5rem 0;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #fff;
    outline: none;
    transition: 0.3s;
    margin-bottom: 2rem;
    border-radius: 0;
}

.struct-input:focus {
    border-bottom-color: var(--color-accent);
}

.struct-input::placeholder {
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
        padding: 4rem 4vw;
    }

    .contact-right {
        padding: 4rem 4vw;
    }
}

/* --- Live Chat UI --- */
.chat-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s var(--ease-bounce);
}

.chat-float:hover {
    transform: scale(1.1);
}

.chat-box {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 350px;
    background: var(--bg-main);
    border: 1px solid var(--grid-line);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s var(--ease-custom);
}

.chat-box.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-top {
    background: #fff;
    color: #000;
    padding: 1rem;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.chat-mid {
    height: 250px;
    padding: 1.5rem;
    overflow-y: auto;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.chat-btm {
    display: flex;
    border-top: 1px solid var(--grid-line);
}

.chat-btm input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: #fff;
    outline: none;
}

.chat-btm button {
    padding: 0 1rem;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    cursor: pointer;
}

/* --- 11. Footer (Strictly Consistent) --- */
.site-footer {
    padding-top: 6rem;
    position: relative;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4vw;
    padding: 0 4vw 6rem 4vw;
    border-bottom: 1px solid var(--grid-line);
}

.foot-logo img {
    height: 65px;
    filter: invert(1);
    margin-bottom: 2rem;
}

.foot-col h4 {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.foot-links li {
    margin-bottom: 1rem;
}

.foot-links a {
    font-size: 1.1rem;
    transition: color 0.3s;
}

.foot-links a:hover {
    color: var(--color-accent);
}

.foot-bottom {
    padding: 2rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.foot-legal {
    display: flex;
    gap: 2rem;
}

.foot-legal a:hover {
    color: #fff;
}

.huge-footer-text {
    font-size: 14vw;
    line-height: 0.8;
    text-align: center;
    color: var(--bg-offset);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    user-select: none;
    margin-top: 4rem;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- Legal Pages CSS --- */
.legal-hdr {
    padding: 12rem 4vw 6rem;
    border-bottom: 1px solid var(--grid-line);
}

.legal-content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 4vw;
}

.legal-content-box h2 {
    font-size: 2.5rem;
    margin: 4rem 0 1.5rem;
    color: var(--color-accent);
}

.legal-content-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-content-box ul {
    padding-left: 2rem;
    list-style: square;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-content-box li {
    margin-bottom: 0.5rem;
}