* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Trebuchet', sans-serif;
    max-width: 99999px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing:-0.05em;
}

h1 {
    font-size:5rem;
    color:#fff;
}

h2 {
    font-size:3rem;
    color:#222;
}

h3 {
    font-size:2rem;
    color:#222;
}

h4 {
    font-size:1.5rem;
    color:#CE8946;
}

.pageHead h2, .pageHead h4 {
    color:#fff;
}

h5 {
    font-size:2rem;
    color:#0f2a3b;
}

/* #region Responsive Header Sizing */
@media (max-width: 1200px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.75rem; }
}

@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1rem; }
    h5 { font-size: 1.25rem; }
}
/* #endregion */

@media (min-width: 1000px) {
    .content p {
        font-size:1.25rem;
    }
}

html {
    scroll-behavior:smooth;
}

body {
    background-color:#f1f1f1;
    background-image:url('images/bg_footer.jpg');
    background-size:100% auto;
    background-position:center bottom;
    background-repeat:no-repeat;
}

.mainitem {
    border-radius:0.5rem;
    background-color:#ffffff;
    padding:2rem;
    box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);
    color:#111;
}

.altitem {
    background-color:#CE8946;
    color:#fff;
}

.altitem p, .altitem h3, .altitem h4, .altitem ul, .altitem ol, .altitem li {
    color:#fff;
}

.mainlink, #header .subscribe {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 2rem;
    color: #111;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition: all 0.3s ease-in-out;
    border: none;
    overflow: hidden;
    position: relative;
    padding:unset;
}

.mainlink:before, #header .subscribe:before {
    content: '';
    position: absolute;
    aspect-ratio:1/1;
    right: 0;
    top:-1%;
    width:auto;
    height:102%;
    border-radius: 50%;
    background: #ce8946;
    opacity:1;
    z-index: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    pointer-events: none;
}

.mainlink:hover:before, .mainlink:focus:before, #header .subscribe:hover:before, #header .subscribe:focus:before {
    transform:scale(15);
    opacity:1;
}


.mainlink:hover, .mainlink:focus, #header .subscribe:hover, #header .subscribe:focus {
    text-decoration: none;
    color: #fff;
    box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);
    transform:scale(1.05);
}

.mainlink span, #header .subscribe span {
    display:flex;
    align-items:center;
    gap:1rem;
    padding-left:1rem;
    position:relative;
}

.mainlink svg, #header .subscribe .fa-solid {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    font-size:1.5rem;
    line-height:1.3;
    color: #fff;
    box-sizing: content-box;
    flex-shrink: 0;
    stroke-width: 1.5;
    padding:0.5rem;
    text-indent:0.1rem;
}

.mainlink:active, #header .subscribe:active {
    background: #dddddd;
}

#header .subheader {
    background-color:transparent;
    border-bottom:1px solid rgba(255,255,255,0.33);
    color:#fff;
}

#header .subheader .contacts a .fa-solid {
    color:#ce8946;
    font-size:1rem;
}

.hero .box1000 {
    max-width:1000px;
    color:#fff;
    text-align:center;
}

.hero {
    position:relative;
}

.hero__media {
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.hero__video {
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.6);
}

.hero .boxbox,
.hero .scroll-indicator {
    position:relative;
    z-index:1;
}

.hero .scroll-indicator {
    position:absolute;
    bottom:2rem;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.5rem;
    color:#fff;
    font-size:1rem;
    text-transform:uppercase;
    letter-spacing:0.15em;
    opacity:0.85;
    transition:opacity 0.3s ease-in-out;
}

.hero .scroll-indicator:hover,
.hero .scroll-indicator:focus {
    opacity:1;
}

.scroll-indicator__mouse {
    width:1.5rem;
    height:2.5rem;
    border:2px solid rgba(255,255,255,0.6);
    border-radius:1rem;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:0.25rem;
    position:relative;
    overflow:hidden;
}

.scroll-indicator__wheel {
    width:0.25rem;
    height:0.75rem;
    border-radius:0.25rem;
    background-color:#fff;
    animation:scrollIndicatorWheel 2.5s ease-in-out infinite;
}

.scroll-indicator__text {
    font-size:0.75rem;
    font-weight:600;
    text-shadow:0 0 0.5rem rgba(0,0,0,0.4);
}

@keyframes scrollIndicatorWheel {
    0% {
        opacity:0;
        transform:translateY(-0.25rem);
    }
    25% {
        opacity:1;
    }
    75% {
        opacity:1;
        transform:translateY(1rem);
    }
    100% {
        opacity:0;
        transform:translateY(1.25rem);
    }
}

.hero .maintext p {
    font-weight:600;
}

.about .maintext {
    max-width:800px;
}

.about .nvicon {
    margin-right:-9%;
}

.about .nvicon img {
    width:75%;
    object-fit:cover;
    object-position:center;
    transition:all 0.3s ease-in-out;
}

.about .nvicon img:first-child {
    margin-left:-9%;
}

.about .nvicon img:last-child {
    position:absolute;
    right:-9%;
}

/* Hide .about .nvicon on screens 1200px and below */
@media (max-width: 1200px) {
    .about .nvicon {
        display: none !important;
    }
}

.latest .newsitem span {
    display:block;
}

.latest .mainitem {
    transition:all 0.3s ease-in-out;
}

.latest .mainitem:hover {
    background-color:#ce8946;
    color:#fff;
    transform:scale(1.05);
    box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.latest .mainitem .gapmini span {
    transition:all 0.3s ease-in-out;
}

.latest .mainitem:hover .gapmini span {
    flex-grow:1;
}

.home .highlights {
    margin-top:-1rem;
    background-color:#0f2a3b;
    position:relative;
    overflow:hidden;
    border-radius:1rem;
    padding:2rem;
}

.home .highlights:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:url('images/bg_highlights.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0.25;
}

.home .highlights h2 {
    color:#fff;
}

.home .highlights h5 {
    color:#ccc;
}

.pageHead {
    background-image:url('images/bg_hero.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding-bottom:1rem;
}

/* Management glass cards */
#management .item .text {
    padding:0;
}

#management .item {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1.5rem);
    -webkit-backdrop-filter: blur(1.5rem);
    box-shadow: 0 1rem 2.5rem rgba(15, 42, 59, 0.10);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#management .item::after {
    content: '';
    position: absolute;
    inset: 0.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#management .item > * {
    position: relative;
    z-index: 1;
}

#management .item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 1.25rem 3rem rgba(15, 42, 59, 0.35);
    transform: translateY(-0.5rem);
}

#management .item:hover::after {
    opacity: 0.65;
}

/* Preloader */
#load-first {
    position: fixed;
    inset: 0;
    background-color: #0f2a3b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.45s ease;
}

#load-first.nv-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nv-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: min(90vw, 22rem);
}

.nv-preloader__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -0.5rem;
}

.nv-preloader__icon {
    width: 4.5rem;
    height: auto;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.nv-preloader__icon + .nv-preloader__icon {
    margin-left: -1.75rem;
}

.nv-preloader__bar {
    width: 100%;
    height: 0.5rem;
    border-radius: 999rem;
    background-color: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: opacity 0.45s ease;
}

.nv-preloader__bar-progress {
    width: 100%;
    height: 100%;
    background-color: #ce8946;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#load-first.nv-preloader--done .nv-preloader__icon--n {
    transform: translateY(-1.25rem);
    opacity: 0;
}

#load-first.nv-preloader--done .nv-preloader__icon--v {
    transform: translateY(1.25rem);
    opacity: 0;
}

#load-first.nv-preloader--done .nv-preloader__bar {
    opacity: 0;
}

#load-first.nv-preloader--done {
    opacity: 0;
}

/* ----------------------------------------------------------
   Global table styling for Naughty Ventures data displays
---------------------------------------------------------- */
table {
    width: 100%;
    min-width: 48rem;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    color: #0f2a3b;
    border-radius: 1rem;
    margin: 2rem 0;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.5;
    table-layout: auto;
}

table caption {
    padding: 1rem 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f2a3b;
    background: #f4f6f8;
}

table th,
table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 0.25rem solid rgba(15, 42, 59, 0.08);
    white-space: nowrap;
}

table th {
    background: transparent;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom-color: rgba(206, 137, 70, 0.45);
}

table thead tr {
    background: linear-gradient(120deg, #0f2a3b 0%, #1a4a64 100%);
}

table tbody tr {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

table tbody tr:nth-child(even) {
    background-color: #f7f9fb;
}

table tbody tr:hover {
    background-color: rgba(206, 137, 70, 0.08);
}

table tbody tr:last-child td {
    border-bottom: none;
}

table td:first-child {
    font-weight: 600;
    color: #102838;
}

table td strong {
    color: #ce8946;
}

.nv-table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 42, 59, 0.45) rgba(15, 42, 59, 0.1);
    -webkit-overflow-scrolling: touch;
}

.nv-table-scroll::-webkit-scrollbar {
    height: 0.5rem;
}

.nv-table-scroll::-webkit-scrollbar-track {
    background-color: rgba(15, 42, 59, 0.08);
    border-radius: 999rem;
}

.nv-table-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(120deg, #0f2a3b 0%, #1a4a64 100%);
    border-radius: 999rem;
}

@media (max-width: 64rem) {
    table {
        min-width: 40rem;
    }
}

.project .secalt .boxbox .maintext, .project .secalt .boxbox {
    position:relative;
}

.project .secalt .boxbox:before {
    content: '';
    position: absolute;
    top:-2rem;
    left:-2rem;
    right:-2rem;
    bottom:-2rem;
    border-radius:1rem;
    background-image:url('images/bg_secalt.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.project .secalt p, .project .secalt h2, .project .secalt ul li {
    color:#fff;
}

.project .secalt ul li {
    font-size:1.25rem;
}

.macro .mainitem:not(.altitem) {
    background-color: transparent;
    box-shadow: none;
}

.darkblue {
    background-color:#0F2A3B;
    color:#fff;
}

.darkblue .underlay {
    position:absolute;
    inset:0;
    z-index:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:1;
    transition: opacity 0.4s ease-in-out,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.strategic h2, .portfolio h2 {
    color:#fff;
}

.portfolio h4 {
    color:#ce8946;
}

/* #region HOME PORTFOLIO CARDS - Web 3.0 Hover Effects */
.home .portfolio .mainitem {
    color:#fff;
    background-color:#0F2A3B;
    position:relative;
    overflow:hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background image layer with zoom effect */
.home .portfolio .mainitem:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color:#0F2A3B;
    opacity:0.15;
    z-index:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transition: opacity 0.4s ease-in-out,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine sweep overlay */
.home .portfolio .mainitem:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 60%
    );
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.home .portfolio .mainitem.mineral:before {
    background-image:url('images/home_portfolio_exploration.jpg');
}

.home .portfolio .mainitem.equity:before {
    background-image:url('images/home_portfolio_equity.jpg');
}

/* Hover: Lift + Shadow */
.home .portfolio .mainitem:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35),
                0 0 2rem rgba(206, 137, 70, 0.15);
}

/* Hover: Background zoom + opacity */
.home .portfolio .mainitem:hover:before {
    opacity:0.5;
    transform: scale(1.1);
}

/* Hover: Shine sweep animation */
.home .portfolio .mainitem:hover:after {
    transform: translateX(150%);
}

/* Ensure text stays above effects */
.home .portfolio .mainitem > * {
    position: relative;
    z-index: 2;
}
/* #endregion */

.home .light {
    background-image:url('images/bg_home_1.jpg');
    background-size:100% auto;
    background-position:center bottom;
    background-repeat:no-repeat;
}

#footer .footbox.boxbox {
    margin-top:-2rem;
    background-color:#fff;
}

.content {
    padding-bottom:3rem;
}

#subpop .item .image {
    background-image:url("images/news/covers/default.jpg");
}

#subpop .item .text form button {
    width:unset;
}

/* #region PROJECT TIMELINE */
.project .timeline {
    position: relative;
}

.project .timeline .boxbox {
    border-radius: 1rem;
    padding: 3rem;
    background-color: #fff;
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
}

.project .timeline-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-top: 0.125rem solid #0f2a3b;
    border-bottom: 0.125rem solid #0f2a3b;
}

.project .timeline-header .stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.project .timeline-header .stat {
    text-align: center;
}

.project .timeline-header .stat h2 {
    margin-bottom: 0;
}

/* Timeline track - 2 rows with 4 columns each */
.project .timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr auto 1fr;
    column-gap: 2rem;
    margin-bottom: 2rem;
}

/* 3-column variant for 3 milestones */
.project .timeline-track.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* The horizontal line - sits in middle row */
.project .timeline-line {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 0.125rem;
    background-color: #0f2a3b;
    position: relative;
}

/* Milestone base styles */
.project .timeline-milestone {
    position: relative;
    padding: 1rem 0;
}

/* Dot connector */
.project .timeline-milestone::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #0f2a3b;
    border-radius: 50%;
    left: 0;
}

/* TOP milestones - content above line */
.project .timeline-milestone.m1 {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 1.5rem;
}

.project .timeline-milestone.m1::after {
    bottom: -0.375rem;
    left: 0;
}

.project .timeline-milestone.m3 {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    padding-bottom: 1.5rem;
}

.project .timeline-milestone.m3::after {
    bottom: -0.375rem;
    left: 0;
}

/* BOTTOM milestones - content below line */
.project .timeline-milestone.m2 {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    padding-top: 1.5rem;
}

.project .timeline-milestone.m2::after {
    top: -0.375rem;
    left: 0;
}

.project .timeline-milestone.m4 {
    grid-column: 4;
    grid-row: 3;
    align-self: start;
    padding-top: 1.5rem;
}

.project .timeline-milestone.m4::after {
    top: -0.375rem;
    left: 0;
}

.project .timeline-milestone h5 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #ce8946;
}

.project .timeline-milestone p {
    margin-bottom: 0.5rem;
}

.project .timeline-milestone p strong {
    font-size: 1.1rem;
    color: #0f2a3b;
}

.project .timeline-milestone ul {
    margin-left: 1.25rem;
    list-style: square;
}

.project .timeline-milestone ul li {
    margin-bottom: 0.25rem;
    color: #0f2a3b;
    font-size: 1.25rem;
}

.project .timeline-milestone ul li:last-child {
    margin-bottom: 0;
}

/* Why This Matters - full width */
.project .timeline-sidebar {
    width: 100%;
}

.project .timeline-sidebar .altitem {
    width: 100%;
}

.project .timeline-sidebar .altitem h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.project .timeline-disclaimer {
    margin-top: 2rem;
    font-size: 0.875rem;
    font-style: italic;
    color: #666;
}

/* 3-milestone variant with sidebar beside */
.project .timeline-body.with-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.project .timeline-body.with-sidebar .timeline-track {
    grid-template-columns: repeat(3, 1fr);
}

.project .timeline-body.with-sidebar .timeline-milestone.m3 {
    grid-column: 3;
}

.project .timeline-body.with-sidebar .timeline-sidebar {
    width: auto;
}

.project .timeline-body.with-sidebar .timeline-sidebar .altitem {
    width: 100%;
}

/* Mobile - single column vertical */
@media (max-width: 900px) {
    .project .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project .timeline-header .stats {
        gap: 2rem;
    }
    
    .project .timeline-body.with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .project .timeline-track,
    .project .timeline-body.with-sidebar .timeline-track {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 2rem;
        margin-left: 1rem;
        padding-left: 2rem;
        position: relative;
    }
    
    .project .timeline-line {
        display: none;
    }
    
    /* Vertical line on left */
    .project .timeline-track::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0.125rem;
        background-color: #0f2a3b;
    }
    
    .project .timeline-milestone.m1,
    .project .timeline-milestone.m2,
    .project .timeline-milestone.m3,
    .project .timeline-milestone.m4 {
        grid-row: auto;
        grid-column: 1;
        align-self: auto;
        padding: 0;
        padding-bottom: 0;
        padding-top: 0;
    }
    
    /* Ensure proper order in vertical mode */
    .project .timeline-milestone.m1 { order: 1; }
    .project .timeline-milestone.m2 { order: 2; }
    .project .timeline-milestone.m3 { order: 3; }
    .project .timeline-milestone.m4 { order: 4; }
    
    .project .timeline-milestone.m1::after,
    .project .timeline-milestone.m2::after,
    .project .timeline-milestone.m3::after,
    .project .timeline-milestone.m4::after {
        left: -2rem;
        top: 0.5rem;
        bottom: auto;
        transform: translateX(-50%);
    }
}
/* #endregion */

/* #region EQUITY HOLDINGS GRID */
.equity-holdings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Center lone card on last row while keeping same width */
.equity-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 1rem);
}

.equity-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.equity-card__company {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 25%;
}

.equity-card__company h3 {
    font-size: 1.5rem;
    color: #222;
    line-height: 1.2;
    margin: 0;
}

.equity-card__badge {
    display: inline-block;
    background-color: #CE8946;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.equity-card__stats {
    display: flex;
    align-items: center;
    flex: 0 0 75%;
}

.equity-card__stat {
    flex: 1 1 33.333%;
    text-align: center;
}

.equity-card__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.equity-card__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #CE8946;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Medium screens - reduce spacing */
@media (max-width: 1200px) {
    .equity-card {
        padding: 1.25rem 1.5rem;
    }

    .equity-card__company h3 {
        font-size: 1.25rem;
    }

    .equity-card__stat-value {
        font-size: 1.5rem;
    }
}

/* Switch to single column earlier */
@media (max-width: 1000px) {
    .equity-holdings {
        grid-template-columns: 1fr;
    }

    /* Reset lone card centering on single column layout */
    .equity-card:last-child:nth-child(odd) {
        grid-column: auto;
        justify-self: auto;
        width: auto;
    }

    .equity-card {
        padding: 1.5rem 2rem;
    }

    .equity-card__company h3 {
        font-size: 1.5rem;
    }

    .equity-card__stat-value {
        font-size: 1.75rem;
    }
}

/* Mobile - stack card content */
@media (max-width: 600px) {
    .equity-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .equity-card__company {
        flex: 0 0 auto;
    }

    .equity-card__stats {
        flex: 0 0 auto;
        width: 100%;
        justify-content: space-between;
    }

    .equity-card__stat-value {
        font-size: 1.25rem;
    }
}

/* Live price indicator - static prices faded, live prices full opacity */
.equity-card__stat--price {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.equity-card__stat--price.live {
    opacity: 1;
}
/* #endregion */

/* #region Header Type 3 */
.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index:9;
    transition:all 0.2s ease-in-out;
}

.header.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(34, 42, 42, 0.9);
    transform:translateY(-100%);
    padding-top:0.5rem;
    padding-bottom:0.5rem;
}

.header.scrolled-delay {
    transform:translateY(0);
    position:fixed;
}

.header.scrolled .main .logo img {
    width:150px;
    margin-top:0.5rem;
    margin-bottom:0.5rem;
}

.header .subheader {
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom:1rem;
}

.header .subheader .stock .item {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header .subheader .stock .item img {
    width: auto;
    height: 1rem;
    margin-right: 0.5rem;
    border-radius:0.1rem;
}

.header .subheader .stock .item span {
    font-weight: bold;
}

.header .subscribe {
    font-size:1rem;
    color: #fff;
    background: var(--button-bg-primary, #f6f6f6);
    padding:1rem;
    border-radius:0.5rem;
    column-gap:0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.header .subscribe span {
    margin-left: 0.5rem;
}

.header .subscribe:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    column-gap:1rem;
    padding-left:0.75rem;
    padding-right:0.75rem;
    background: var(--button-bg-hover-primary, #ddd);
}

.header .subheader .socials span {
    color: #fff;
    font-weight: 500;
    margin-right: 0.5rem;
    font-size:0.8rem;
}

.header .subheader .socials {
    margin-right: 20rem;
    padding-right: 2rem;
    transition:all 0.2s ease-in-out;
}

.header .subheader .socials:hover a {
    opacity:0.5;
}

.header .subheader .socials a {
    font-size: 1.5rem;
    color: #fff;
}

.header .subheader .socials a:not(:last-child) {
    margin-right: 0.5rem;
}

.header .subheader .socials a:hover {
    opacity:1;
}

/* Contacts (phone/email) */
.header .subheader .contacts a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top:0.5rem;
    margin-bottom:0.5rem;
}

.header .subheader .contacts a .fa-solid {
    color: #fff;
}

.header .subheader .contacts a span {
    color: rgba(255, 255, 255, 0.85);
}

.header .subheader .m800 .socials {
    display: none;
}

.header .main .logo img {
    width: 250px;
    height: auto;
    transition:all 0.2s ease-in-out;
    margin-top:1rem;
    margin-bottom:1rem;
}

.header .main .logo:hover {
    opacity:0.5;
}

.header .main .logo .placeholder {
    width: 250px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0.5rem;
}

.header .main .nav ul {
    margin-left: 0;
}

.header .main .nav ul li {
    margin-bottom: unset;
    list-style-type: none;
}

.header .main .nav .menu .item {
    position: relative;
}

.header .main .nav .menu .item .submenu {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    top: calc(100%);
    left: 0;
    transform: translateY(-2rem);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    overflow: hidden;
    min-width: 10rem;
}

.header .main .nav .menu .item .title {
    transition: all 0.2s ease-in-out;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.header .main .nav .menu .item:hover .title {
    background-color: #fff;
    cursor: default;
    color: #000;
}

.header .main .nav .menu .item .title .fa-solid {
    margin-left: 0.5rem;
    font-weight: thin;
    font-size: 0.8rem;
    display: block;
    transition: all 0.1s ease-in-out;
}

.header .main .nav .menu .item:hover .title .fa-solid {
    transform: rotate(90deg);
}

.header .main .nav .menu .item .toplink {
    transition: all 0.2s ease-in-out;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.header .main .nav .menu .item .toplink:hover {
    background-color: #fff;
    color: #000;
}

.header .main .nav .menu .item:hover .submenu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.header .main .nav .menu .item .submenu .sublink {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: translateX(2rem);
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    color: #666;
    display: block;
    white-space: nowrap;
    font-weight: 600;
}

.header .main .nav .menu .item .submenu li:not(:last-child) .sublink {
    border-bottom: 1px solid #ccc;
}

.header .main .nav .menu .item .submenu .sublink.showlink {
    opacity: 1;
    transform: translateX(0);
}

.header .main .nav .menu .item .submenu .sublink:hover {
    color: #000;
}

.header .main .nav .menu .item .submenu .category-header {
    font-size:0.8rem;
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    padding-left:1rem;
    font-weight:500;
    background-color:#ccc;
    display:block;
    color:#333;
}

.header .main .minimenu {
    display:none;
    color:#fff;
    font-size:3rem;
    cursor:pointer;
}

.header .main .nav .miniclose {
    display:none;
}

@media only screen and (max-width:1400px) {
    .header .subheader .stock .item {
        font-size: 1rem;
    }

    .header .subheader .socials span {
        font-size: 0.75rem;
    }

    .header .main .nav .menu .item .title,
    .header .main .nav .menu .item .toplink {
        font-size: 1rem;
    }

    .header .subheader .subscribe {
        font-size: 1.25rem;
    }
}

@media only screen and (max-width:1200px) {
    .header .main .nav ul {
        column-gap: 2rem;
    }
}

@media only screen and (max-width:800px) {
    .header .main .logo img {
        width:150px;
    }

    .header .subheader .subscribe {
        font-size:1rem;
    }
}

.header .main.m1400 .minimenu {
    display:block;
}

.header .main.m1400 .nav {
    position: fixed;
    background-color: rgba(33, 33, 33, 0.9);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity:0;
    pointer-events:none;
    transition:all 0.2s ease-in-out;
}

.header .main.m1400 .nav.showmenu {
    opacity:1;
    pointer-events:all;
}

.header.minimenuopen {
    height:100% !important;
    transform:unset !important;
    position:fixed !important;
}

.header .main.m1400 .nav .miniclose {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    cursor: pointer;
    display: block;
    color:#fff;
    font-size:3rem;
}

.header .main.m1400 .nav .menu {
    flex-direction: column;
    align-items: flex-start;
}

.header .main.m1400 .nav .menu .item {
    width: 100%;
}

.header .main.m1400 .nav .menu .item .title,
.header .main.m1400 .nav .menu .item .toplink {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    width: 100%;
}

.header .main.m1400 .nav .menu .item .title .text {
    flex-grow: 1;
    font-size: 1.5rem;
}

.header .main.m1400 .nav .menu .item .title .fa-solid {
    font-size: 1.5rem;
}

.header .main.m1400 .nav .menu .item .submenu {
    position: relative;
    width: 100%;
    display: none;
    top: 0;
    border-top-right-radius: 0;
    transition: unset;
    opacity: 1;
    transform: unset;
}

.header .main.m1400 .nav .menu .item .submenu .sublink {
    padding-left: 2rem;
}

.header .main.m1400 .nav .menu .item .title.titleclick {
    background-color: #fff;
    color: #000;
}

.header .main.m1400 .nav .menu .item .title.titleclick .fa-solid {
    transform: rotate(90deg);
}

/* Light mode header background on scroll */
.header.light.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Subheader */
.header.light .subheader {
    background-color: rgba(255, 255, 255, 0.6);
}

.header.light .subheader .stock .item {
    color: #222;
}

.header.light .subheader .subscribe {
    color: #000;
    background-color: #e5e5e5;
}

.header.light .subheader .socials span,
.header.light .subheader .socials a {
    color: #000;
}

/* Light theme overrides for contacts */
.header.light .subheader .contacts a { color: #000; }
.header.light .subheader .contacts a .fa-solid { color: #000; }
.header.light .subheader .contacts a span { color: rgba(0,0,0,0.7); }

/* Main header */
.header.light .main .logo .placeholder {
    color: #000;
    border: 2px solid #000;
}

.header.light .main .nav .menu .item .title,
.header.light .main .nav .menu .item .toplink {
    color: #000;
}

.header.light .main.m1400 .nav {
    background-color: rgba(255, 255, 255, 0.95);
}

.header.light .main.m1400 .nav .menu .item .title,
.header.light .main.m1400 .nav .menu .item .toplink {
    color: #000;
}

.header.light .main .minimenu {
    color:#000;
}
/* #endregion */

/* #region Footer Type 3 */
.footer .footbox.boxbox {
    border-radius: 1rem;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
}

.footer .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer .info .logo img {
    width: 12.5rem;
    height: auto;
    transition: all 0.2s ease-in-out;
}

.footer .info {
    color: #111;
}

.footer .info p {
    font-size: 1rem;
}

.footer .info .socials span {
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.footer .info .socials a {
    color: #fff;
    transition: all 0.2s ease-in-out;
    padding: 0.25rem;
    display: inline-block;
}

.footer .info .socials .sociallinks:hover a {
    opacity: 0.5;
}

.footer .info .socials .sociallinks a:hover {
    opacity: 1;
}

.footer .quicklinks h5 {
    font-weight: bold;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.footer .quicklinks a {
    display: table;
    color: #a6a47c;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    padding: 0.5rem 0;
}

.footer .quicklinks a:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer form {
    background-color: rgba(255,255,255,0.90);
    color: #111;
}

.footer form p {
    font-size: 1rem;
}

.footer form input {
    padding: 1rem;
    font-size: 1.25rem;
}

.footer form input[type="email"] {
    border-bottom: 1px solid #222;
}

.footer .contacts .contactitem {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
}

.footer .contacts .contactlabel {
    font-size: 1.5rem;
    color: #aaa;
    font-weight: bold;
}

.footer .contacts a {
    font-size: 1.5rem;
    color: #222;
    font-weight: bold;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer .sitenav {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.footer .sitenav ul {
    margin: 0;
}

.footer .sitenav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .sitenav .menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2rem;
}

.footer .sitenav .menu .title {
    color: #aaa;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer .sitenav .menu li a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.footer .sitenav .submenu li {
    margin-bottom: 0.75rem;
}

.footer .sitenav .submenu li:last-child {
    margin-bottom: 0;
}

.footer .subfooter {
    font-size: 1rem;
}

.footer .subfooter .subgrid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.footer .subfooter a {
    font-weight: bold;
    margin-left: 0.5rem;
}

.footer .subfooter a:hover {
    text-decoration: underline;
}

.footer.m1350 form {
    padding: 2rem;
}

.footer.m1000 .info {
    grid-template-columns: 1fr;
}

.footer.m1000 .footbox {
    padding-top: 2rem;
}

.footer.m1000 form {
    width: 100%;
}

.footer.m1000 .info {
    width: 100%;
    max-width: 37.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer.m1000 .quicklinks {
    display: none;
}

.footer.m1000 .subfooter .subgrid {
    grid-template-columns: 1fr;
    text-align: center;
}

.footer.m1000 .subfooter .subgrid > * {
    justify-self: center;
}

.footer.m600 form input {
    font-size: 1rem;
}

.footer.m600 form .forminputs {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.footer.m600 form .forminputs input {
    width: 100%;
    border-radius: 0.5rem;
}

.footer.m600 .subfooter {
    font-size: 0.75rem;
}

.footer.m600 .contacts .contactitem {
    grid-template-columns: 4rem 1fr;
}

.footer.m600 .contacts .contactlabel,
.footer.m600 .contacts a {
    font-size: 1.125rem;
}
/* #endregion */

/* #region Subpop Type 1 */
.subpop {
    position:fixed;
    z-index:9998;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    pointer-events:none;
}

.subpop.show {
    opacity:1;
    pointer-events:all;
}

.subpop .under {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:0;
    background:rgba(12, 12, 12, 0.9);
}

.subpop.show .under {
    height:100%;
}

.subpop .item {
    background-color:#eee;
    overflow:hidden;
    transform:translateY(3rem);
    opacity:0;
    pointer-events:none;
    margin:2rem;
    max-width:1200px;
}

.subpop .item.show {
    transform:translateY(0);
    opacity:1;
    pointer-events:all;
}

.subpop .item .text {
    text-align:center;
    color:#111;
    pointer-events:none;
    opacity:0;
    transform:translateY(3rem);
    overflow-y:scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.subpop .item .text::-webkit-scrollbar {
    display: none;
}

.subpop .item .text.show {
    pointer-events:all;
    opacity:1;
    transform:translateY(0);
}

.subpop .item .text img {
    height:5rem;
}

.subpop .item .text form input {
    background-color:#fff;
    padding:1rem;
    border-radius:0.5rem;
    width:100%;
    font-size:1.25rem;
}

.subpop .item .text form button {
    width:100%;
    margin-top:0.5rem;
}

.subpop .item .text a {
    font-weight:600;
    color:#111;
}

.subpop .item .text a:hover {
    text-decoration:underline;
}

.subpop .item .image {
    background-color:rgba(0, 0, 0, 0.25);
    width:25vw;
    background-size:cover;
    background-position:center;
}

.subpop .close {
    color:#fff;
    font-size:2rem;
    position:absolute;
    top:1rem;
    right:1rem;
    opacity:0.5;
}

.subpop .close:hover {
    opacity:1;
    cursor:pointer;
}

@media only screen and (max-width:1400px) {
    .subpop .item .text {
        padding:2rem;
    }
}

@media only screen and (max-width:1000px) {
    .subpop .item .text {
        padding:1rem;
    }
}

@media only screen and (max-width:800px) {
    .subpop .item .text img {
        height:4rem;
    }
}

@media only screen and (orientation: portrait) {
    .subpop .item {
        flex-direction:column-reverse;
    }
    .subpop .item .image {
        width:100%;
        aspect-ratio:16/9;
    }
    .subpop .item .text .padtop {
        padding:0;
    }
}
/* #endregion */

/* #region Sub Response */
.subresponse {
    position:fixed;
    z-index:9999;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    pointer-events:none;
    padding:1rem;
}

.subresponse.show {
    opacity:1;
    pointer-events:all;
}

.subresponse .under {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(40, 167, 69, 0.9);
}

.subresponse.suberror .under {
    background:rgba(120, 50, 50, 0.9);
}

.subresponse .item {
    color:#fff;
    border:2px solid #fff;
    text-align:center;
    transform:scale(1.25);
    opacity:0;
}

.subresponse.show .item {
    transform:scale(1);
    opacity:1;
}

.subresponse .item .fa-solid {
    font-size:3rem;
    display:block;
}

.subresponse .item .close {
    padding:1rem 3rem;
    font-weight:600;
    background:#fff;
    color:rgba(40, 167, 69, 1);
    border-radius:0.5rem;
}

.subresponse.suberror .item .close {
    color:rgba(120, 50, 50, 1);
}

.subresponse .item .close:hover {
    transform:scale(1.05);
    background:rgba(30, 125, 52, 1);
    color:#fff;
}

.subresponse.suberror .item .close:hover {
    background:rgba(120, 0, 0, 1);
}

.subresponse .item .text {
    opacity:0;
    transform:scale(1.25);
}

.subresponse .item .text.show {
    opacity:1;
    transform:scale(1);
}
/* #endregion */

/* #region NAV Comparison Section */
.nav-comparison {
    background: linear-gradient(135deg, #0f2a3b 0%, #1a4a64 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.nav-comparison__inner {
    z-index: 1;
}

.nav-comparison__header {
    text-align: center;
    margin-bottom: 2rem;
}

.nav-comparison__header h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nav-comparison__header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin: 0;
}

.nav-comparison__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 2rem;
    align-items: stretch;
}

.nav-comparison__card {
    background: rgba(255, 255, 255, 0.08);
    border: 0.125rem solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(0.5rem);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.nav-comparison__card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-0.25rem);
}

.nav-comparison__card--nav {
    border-color: rgba(206, 137, 70, 0.5);
}

.nav-comparison__card--nav .nav-comparison__value {
    color: #ce8946;
}

.nav-comparison__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.nav-comparison__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nav-comparison__sublabel {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.nav-comparison__breakdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.nav-comparison__breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-comparison__breakdown-label {
    text-align: left;
}

.nav-comparison__breakdown-value {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.nav-comparison__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.nav-comparison__vs span {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-comparison__discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: center;
}

.nav-comparison__discount-ring {
    --discount-percent: 0;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: 
        conic-gradient(
            from -90deg,
            #ce8946 0deg,
            #ce8946 calc(var(--discount-percent) * 3.6deg),
            rgba(255, 255, 255, 0.15) calc(var(--discount-percent) * 3.6deg),
            rgba(255, 255, 255, 0.15) 360deg
        );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.nav-comparison__discount-ring::before {
    content: '';
    position: absolute;
    inset: 0.375rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f2a3b 0%, #1a4a64 100%);
}

.nav-comparison__discount-ring.discount-positive {
    box-shadow: 0 0 2rem rgba(206, 137, 70, 0.4);
}

.nav-comparison__discount-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.nav-comparison__discount-ring.discount-positive .nav-comparison__discount-value {
    color: #ce8946;
}

/* Loading placeholder animation */
.nav-comparison__value.loading {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 200% 100%;
    animation: navShimmer 1.5s ease-in-out infinite;
    border-radius: 0.25rem;
    color: transparent !important;
    min-width: 8rem;
    min-height: 2.5rem;
}

.nav-comparison__discount-value.loading {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 200% 100%;
    animation: navShimmer 1.5s ease-in-out infinite;
    border-radius: 0.25rem;
    color: transparent !important;
    min-width: 3rem;
    min-height: 2rem;
}

@keyframes navShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.nav-comparison__discount-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .nav-comparison__value {
        font-size: 2rem;
    }
    
    .nav-comparison__breakdown {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .nav-comparison__breakdown-item {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .nav-comparison__grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 1.5rem;
    }
    
    .nav-comparison__vs {
        display: flex;
    }
    
    .nav-comparison__discount {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .nav-comparison__discount-ring {
        width: 5rem;
        height: 5rem;
    }
    
    .nav-comparison__discount-value {
        font-size: 1.5rem;
    }
    
    .nav-comparison__discount-label {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .nav-comparison__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-comparison__vs {
        display: none;
    }
    
    .nav-comparison__card {
        padding: 1.25rem 1.5rem;
    }
    
    .nav-comparison__value {
        font-size: 1.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .nav-comparison {
        padding: 1.5rem;
    }
    
    .nav-comparison__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-comparison__card {
        padding: 1.25rem;
    }
    
    .nav-comparison__header h3 {
        font-size: 1.5rem;
    }
    
    .nav-comparison__header p {
        font-size: 0.875rem;
    }
    
    .nav-comparison__value {
        font-size: 1.5rem;
    }
    
    .nav-comparison__discount {
        flex-direction: column;
    }
    
    .nav-comparison__discount-ring {
        width: 5rem;
        height: 5rem;
    }
    
    .nav-comparison__discount-ring::before {
        inset: 0.25rem;
    }
    
    .nav-comparison__discount-value {
        font-size: 1.25rem;
    }
}
/* #endregion */

/* #region Honeypot */
.firstnameform {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
/* #endregion */