* {
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bg-color);
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container{
    max-width: 1110px;
}

/* Navbar */
#mainNavbar{
    transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.custom-navbar {
    margin: auto;
}

.custom-navbar ul li {
    font-weight: 400;
}



.navbar-scrolled {
    /* From https://css.glass */
    background: #f1f4f57e !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(4.6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.33);

}

/* Intro */
.intro {
    text-align: center;
    position: relative;
}

/* Stock logo circles */
.stock-logo-circle {
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1;
    opacity: 0;
    animation: fadeInBubble 1s ease-in forwards;
}

/* Different animation delays and durations for each circle to create varied movement */
.intro .stock-logo-circle:nth-of-type(1) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble1 12s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.intro .stock-logo-circle:nth-of-type(2) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble2 14s ease-in-out infinite;
    animation-delay: 0.2s, 1.2s;
}

.intro .stock-logo-circle:nth-of-type(3) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble3 13s ease-in-out infinite;
    animation-delay: 0.4s, 1.4s;
}

.intro .stock-logo-circle:nth-of-type(4) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble4 15s ease-in-out infinite;
    animation-delay: 0.6s, 1.6s;
}

.intro .stock-logo-circle:nth-of-type(5) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble5 11s ease-in-out infinite;
    animation-delay: 0.1s, 1.1s;
}

.intro .stock-logo-circle:nth-of-type(6) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble6 13.5s ease-in-out infinite;
    animation-delay: 0.3s, 1.3s;
}

.intro .stock-logo-circle:nth-of-type(7) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble7 12.5s ease-in-out infinite;
    animation-delay: 0.5s, 1.5s;
}

.intro .stock-logo-circle:nth-of-type(8) {
    animation: fadeInBubble 1s ease-in forwards, floatBubble8 14.5s ease-in-out infinite;
    animation-delay: 0.7s, 1.7s;
}

.stock-logo-circle img {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Fade in animation on page load */
@keyframes fadeInBubble {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Different bubble floating animations for variety */
@keyframes floatBubble1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-12px) translateX(6px);
    }
    50% {
        transform: translateY(-6px) translateX(-4px);
    }
    75% {
        transform: translateY(-15px) translateX(4px);
    }
}

@keyframes floatBubble2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-10px) translateX(-5px);
    }
    66% {
        transform: translateY(-18px) translateX(7px);
    }
}

@keyframes floatBubble3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    20% {
        transform: translateY(-14px) translateX(5px);
    }
    40% {
        transform: translateY(-8px) translateX(-6px);
    }
    60% {
        transform: translateY(-16px) translateX(3px);
    }
    80% {
        transform: translateY(-5px) translateX(-3px);
    }
}

@keyframes floatBubble4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    30% {
        transform: translateY(-11px) translateX(-7px);
    }
    60% {
        transform: translateY(-19px) translateX(8px);
    }
    90% {
        transform: translateY(-7px) translateX(-4px);
    }
}

@keyframes floatBubble5 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-13px) translateX(4px);
    }
    50% {
        transform: translateY(-9px) translateX(-5px);
    }
    75% {
        transform: translateY(-17px) translateX(6px);
    }
}

@keyframes floatBubble6 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    40% {
        transform: translateY(-15px) translateX(-6px);
    }
    80% {
        transform: translateY(-10px) translateX(5px);
    }
}

@keyframes floatBubble7 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    20% {
        transform: translateY(-8px) translateX(7px);
    }
    50% {
        transform: translateY(-16px) translateX(-5px);
    }
    80% {
        transform: translateY(-12px) translateX(4px);
    }
}

@keyframes floatBubble8 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    30% {
        transform: translateY(-14px) translateX(5px);
    }
    60% {
        transform: translateY(-7px) translateX(-8px);
    }
    90% {
        transform: translateY(-18px) translateX(3px);
    }
}

/* Hide stock logo circles on mobile */
@media (max-width: 767px) {
    .stock-logo-circle {
        display: none;
    }
    .main-text{
        font-size: 3.125rem !important;
    }
    .quote h2 { 
        padding: 0 !important;
     }
}

/* Footer Styles */
.main-footer a:hover {
    color: var(--primary) !important;
    transition: color 0.3s ease;
}

.main-footer ul li {
    transition: transform 0.2s ease;
}

.main-footer ul li:hover {
    transform: translateX(5px);
}


.intro .demo {
    margin: auto; 
    width: -webkit-fill-available;
    border-radius: 20px 20px 0 0;
}

.intro p{
    max-width: 700px;
    text-align: center;
    margin: auto;
    font-weight: 400;
    color: var(--anti-light);
}

.intro .image-part {
    position: relative;
}

.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px; /* enough to fit glow + line */
    pointer-events: none;
    z-index: 1;
}
  
/* Gradient-based glow */
.glow-gradient-blue {
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
    height: 100px;
    background: linear-gradient(
        to right,
        #394dff00 0%,
        #394dff 40%,
        #394dff 60%,
        #394dff00 100%
    );
    filter: blur(100px);
}

.glow-gradient-light-blue {
    position: absolute;
    left: 0;
    top: -25px;
    width: 100%;
    height: 70px;
    background: linear-gradient(
        to right,
        #8894ff00 0%,
        #8894ff 40%,
        #8894ff 60%,
        #8894ff00 100%
    );
    filter: blur(30px);
}

.glow-gradient-white {
    position: absolute;
    left: 0;
    top: -7px;
    width: 100%;
    height: 20px;
    background: linear-gradient(
        to right,
        #ffffff00 0%,
        #ffffff71 40%,
        #ffffff71 60%,
        #ffffff00 100%
    );
    filter: blur(10px);
}

/* The white line */
.glow-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.75) 55%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
    );
}

/* Quote */
.quote {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 100px 0;
    position: relative;
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/dots_worlds.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.quote > * {
    position: relative;
    z-index: 1;
}

.quote h2{
    text-align: center;
    color: white;
    font-weight: 600;
    padding: 0 80px;
}

/* Features */
.features {
    padding-top: 100px;
}

.features .block {
    margin: 10px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* From https://css.glass */
    background: #ffffff !important;
    border-radius: 20px;
    padding: 30px 30px 0 30px;
    height: 300px;
}

.features .block i {
    font-size: 40px;
    color: var(--secondary);
    padding-bottom: 25px;
}

.features .block a {
    
}

.features .block p {
    font-size: 15px;
}

/* How to start */

.hts {
    padding-top: 100px;
}

.hts .container {

}

.hts .container .row {
    border-radius: 30px;
}

.hts .block{
    border-radius: 30px;
    background: white;
    height: 300px;
    padding: 50px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hts .block .step-number{
    display: block;
    width: 100%;
    font-size: 50px;
    text-align: left;
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.number-badge {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 25px;
    background-color: var(--secondary);
    font-size: 50px;
    font-weight: bold;
    color: white;
    line-height: 70px;
}

/* App Section */
.app{
    padding-top: 100px;
    padding-bottom: 100px;
}

.app-block{
    border-radius: 30px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.app-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/line_pattern.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.app-block > * {
    position: relative;
    z-index: 1;
}

/* Stocks intro */
.stocks-intro .container {
    padding: 20px;
    padding-bottom: 0;
    margin-top: 100px;
}

.stocks-intro .container .row {
    border-radius: 30px;
    overflow: hidden;
}

.stocks-intro .left-side{
    background: white;
    padding: 50px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stocks-intro .right-side{
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    height: 500px;
    position: relative;
}

.stocks-intro .right-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/line_pattern.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.stocks-intro .right-side > * {
    position: relative;
    z-index: 1;
}

.carousel {
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    > * {
        flex: 0 0 100%;
    }
  }

.carousel .card {
    display: block !important;
    background: #0000007e !important;
    width: 200px !important;
    height: 60px !important;
    border-radius: 60px;
    display: block;
    justify-content: center;
    align-items: center;
  }

.carousel .card .logo {
    margin: 5px;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    float: left;
}

.carousel .card .memo {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertical centering */
    height: 100%; /* or a fixed height like 100px */
}

.carousel .card .memo .tag{
    font-weight: bold;
    color: white;
}

.carousel .card .memo .price span:first-child{
    font-weight: 400;
    color: white;
}

.carousel .card .memo .price span:nth-child(2).loss{
    font-weight: 400;
    color: rgb(255, 0, 72);
}

.carousel .card .memo .price span:nth-child(2).profit{
    font-weight: 400;
    color: rgb(0, 255, 178);
}

.carousel  .group {
    display: flex;
    gap: 20px;
    /* Add padding to the right to create a gap between the last and first card. */
    padding-right: 20px;
    will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling 30s linear infinite;
  }

  .carousel  .group-reverse {
    display: flex;
    gap: 20px;
    /* Add padding to the right to create a gap between the last and first card. */
    padding-right: 20px;
    will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling-reverse 30s linear infinite;
  }

  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes scrolling-reverse {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }

/* Partners */
.partners img {
    display: block;
    margin: auto;
    padding-top: 100px;
}
/* Badge */
.badge-custom {
    position: relative;
    z-index: 2;
    display: inline-block;
    border-radius: 30px;
    padding: 10px 20px 10px 10px;
    background-color: white;
    color: black;
    font-weight: bold;
}

.badge-custom i {
    display: inline-block;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.badge-custom span {
    padding-left: 5px;
}

.badge-custom.gold i {
    color: white;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Text */
.primary-text{
    text-align: center;
    font-weight: bold;
    margin: auto;
    padding-bottom: 30px;
    color: var(--anti);
}

/* Main page headings - capitalize all h1 and h2 */
h1, h2 {
    text-transform: uppercase !important;
}

.color-primary {
    color: var(--primary);
}

.color-anti-light {
    color: var(--anti-light);
}

.weight-bold {
    font-weight: bold;
}

.custom-link { 
    color: var(--secondary) !important;
    text-decoration: none;
    font-size: 12px;
}

.custom-link i{ 

    color: var(--secondary) !important;
    font-size: 12px !important;
}

p {
    font-weight: 400;
    color: var(--anti-light);
}

/* buttons */
.primary-button {
    padding: 10px 40px;
    border-radius: 50px;
}

.lang-button {
    padding: 5px 20px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--text-strong);
    color: var(--text-strong);

}

.second-button {
    padding: 10px 40px;
    border-radius: 50px;
}


/* FAQ */

.faq {
    width: 100%;
    background: white;
    padding: 50px 0 100px 0;
}

.faq .accordion-button:not(.collapsed){
    color: var(--primary)
}
.faq .accordion-body{
    color: var(--anti-light);
    font-weight: 100;
}
.faq .accordion-item {
    border: none;
    border-bottom: 1px solid var(--bg-color);
}
.faq .accordion-button {
    box-shadow: none !important;
}
.faq .accordion-button:not(.collapsed) {
    background-color: transparent !important; /* keep clean look */
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/dots_worlds.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.testimonial > * {
    position: relative;
    z-index: 1;
}

.testimonial .row {
    margin: auto;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial .image-block {
    padding: 0;
    position: relative;
    height: 300px; /* or whatever block height you want */
    overflow: hidden; /* prevents overflow */
}
.testimonial .image-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%; /* how tall the gradient is */
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none; /* doesn’t block clicks */
  }

.testimonial .image-block .text-block{
    color: white;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 10px;
    z-index: 2; /* above gradient */
}


.testimonial .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills block, crops excess */
}

.testimonial .quote-block {
    position: relative;
    height: 300px;
}

.testimonial .quote-block img {
    opacity: 0.5;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial small {
    display: block;
}

.testimonial p{
    color: black;
}

.testimonial .white-badge{
    position: relative;
    z-index: 2;
    display: inline-block;
    border-radius: 30px;
    padding: 10px 20px 10px 20px;
    background: #f1f4f53c !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: bold;
}

/* Carousel indicators */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators [data-bs-target] {
    background-color: var(--bg-color);   /* normal dots */
}

.carousel-indicators .active {
    background-color: white;     /* active dot */
}

/* Waitlist join page */
.ticker-wall{
    height: 100dvh;              /* use 100vh if you prefer */
    display: flex;
    flex-direction: column;
    justify-content: space-around; 
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.ticker-wall .carousel{
    width: -webkit-fill-available;
    display: flex;              /* if not already */
    justify-content: flex-start;/* don't spread items */
    align-items: center;
    gap: 0;                     /* control spacing yourself */
    overflow: hidden;           /* typical for marquee */
  }
  
  /* Each duplicated group (original + aria-hidden copy) */
  .ticker-wall .carousel .group,
  .ticker-wall .carousel .group-reverse{
    display: inline-flex;       /* intrinsic width */
    gap: 20px;                  /* spacing between cards INSIDE a group */
    flex: 0 0 auto;             /* never grow/shrink */
    will-change: transform;
  }
  
  /* Optional: no extra space after the last group if you ever stop the loop */
  .ticker-wall .carousel .group:last-child,
  .ticker-wall .carousel .group-reverse:last-child{
    margin-right: 0;
  }

.waitlist-container {
    min-height: 100vh;       /* full screen height */
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}

.ticket {
    padding: 50px 50px;
    background: var(--bg-color);
    position: relative;
    line-height: 50px;
}

/* Typography tweaks */
.ticket .strong-text {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.05;
    margin-bottom: 8px;
  }
  
  .ticket .small {
    display: block;
    font-size: 0.95rem;
    color: #6b7280; /* gray-500 */
    margin-top: 6px;
  }
  
  /* Perforation (dashed line) */
  .ticket::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    border-top: 2px dashed white;
    pointer-events: none;
    z-index: 1;
  }
  
  /* Left punch hole (visual "cutout") */
  .ticket::after,
  .ticket .punch-right {
    /* We'll keep ::after for watermark, and use an extra pseudo element for left punch.
       Instead, create two custom pseudo elements using an inner wrapper technique below. */
  }
  
  /* Use two absolutely positioned circular "holes" that match the page background */
  .ticket .punch-left,
  .ticket .punch-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white; /* same as page background to look like a cutout */
    z-index: 2;
    pointer-events: none;
  }
  
  /* place them slightly outside the ticket edge */
  .ticket .punch-left { left: calc(-1 * (50px / 2)); }
  .ticket .punch-right { right: calc(-1 * (50px / 2)); }
  
  /* Watermark logo at bottom-right */
  .ticket .watermark {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0; /* behind text */
  }
  
  /* Make sure text sits above the watermark and dashed line */
  .ticket > * { position: relative; z-index: 3; }

  .invite-code {
    background: var(--bg-color);
    display: inline-block;
    padding: 10px 40px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 40px;
  }

  /* Company Information Styles - Robinhood Style */
  .company-about {
    line-height: 1.6;
  }

  .company-about p {
    color: var(--anti-light);
    font-size: 0.95rem;
  }

  .company-about #toggleAbout,
  .company-about #toggleAboutLess {
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-weight: 500;
  }

  .company-about #toggleAbout:hover,
  .company-about #toggleAboutLess:hover {
    opacity: 0.8;
    text-decoration: underline;
  }

  /* Company Info Items */
  .company-info-item {
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .company-info-item:hover {
    background-color: var(--bg-color);
  }

  .company-info-item .strong-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
  }

  /* Stat Items */
  .stat-item {
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .stat-item:hover {
    background-color: var(--bg-color);
  }

  .stat-value {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .stat-item .stat-value .profit-badge,
  .stat-item .stat-value .loss-badge {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  /* Enhanced badges for stats */
  .stat-item .profit-badge {
    background-color: color-mix(in srgb, var(--green) 12%, transparent);
    color: var(--green);
    font-weight: 600;
  }

  .stat-item .loss-badge {
    background-color: color-mix(in srgb, var(--red) 12%, transparent);
    color: var(--red);
    font-weight: 600;
  }

  /* Section headers with icons */
  .company-info-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .company-info-section h5 i {
    font-size: 1.2rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .company-info-item,
    .stat-item {
      padding: 0.5rem;
    }

    .company-info-item .strong-text,
    .stat-value {
      font-size: 0.9rem;
    }

    .stat-item .stat-value .profit-badge,
    .stat-item .stat-value .loss-badge {
      font-size: 0.85rem;
      padding: 3px 6px;
    }
  }

  /* Clean dividers */
  .company-info-section hr {
    margin: 1.5rem 0;
    opacity: 0.1;
  }

  /* Block padding for company info */
  .block .p-4 {
    padding: 1.5rem !important;
  }

  /* Icon spacing */
  .company-info-item i,
  .stat-item i {
    flex-shrink: 0;
  }

  /* Responsive feature images */
  .responsive-feature-img {
    width: 100%;
  }

  @media (min-width: 768px) {
    .responsive-feature-img {
      width: 80%;
    }
  }