/********** Template CSS **********/
:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

.navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/* Language Switcher */
.lang-switcher {
    align-items: center;
}
.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.15);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.lang-flag:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}
.lang-flag:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
}

/* Language Dropdown */
.lang-dropdown .lang-btn {
    background: transparent !important;
    color: #fff;
    border: none !important;
    backdrop-filter: none;
    box-shadow: none;
}
.lang-dropdown .lang-btn:hover {
    background: transparent;
}
.lang-dropdown .lang-btn .text-primary {
    color: #fff !important;
}
/* Circular flag icons in button and menu */
.lang-dropdown .lang-btn span:first-child,
.lang-dropdown .dropdown-item span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.lang-dropdown .lang-btn span:first-child {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.lang-dropdown .dropdown-item span:first-child {
    background: rgba(0, 0, 0, 0.06);
}
.lang-dropdown .dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    min-width: 220px;
    background-color: #fff;
}
.lang-dropdown .dropdown-item {
    padding: 12px 16px;
}
.lang-dropdown .dropdown-item.active,
.lang-dropdown .dropdown-item:active {
    background-color: var(--primary);
    color: #fff;
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background: url(../img/bg_scene.jpg) center center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

/* Navbar Logo */
.navbar-logo {
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Footer Logo */
.footer-logo {
    height: 60px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg_scene.jpg) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg_scene.jpg) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

/* Harakawa AI Dev helpers */
.img-cover { object-fit: cover; width: 100%; height: 100%; }
.round-56   { width:56px; height:56px; }
.round-72   { width:72px; height:72px; }
.badge-soft-primary { background: rgba(55,88,249,.12); color:#3758F9; }
.section-compact { padding-top: 48px; padding-bottom: 48px; }

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*** Custom Dropdown Styles ***/
.navbar-nav .dropdown-menu {
    min-width: 250px;
    max-height: none;
    overflow-y: visible;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary);
    color: white;
    transform: translateX(5px);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* Industries dropdown with columns */
.navbar-nav .dropdown:nth-child(4) .dropdown-menu {
    min-width: 400px;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}

.navbar-nav .dropdown:nth-child(4) .dropdown-menu .dropdown-item {
    width: 48%;
    margin: 0.2rem 1%;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

/* Responsive dropdown adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: none;
        max-height: none;
        overflow-y: visible;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 2rem;
        color: var(--dark);
    }
    
    .navbar-nav .dropdown:nth-child(4) .dropdown-menu {
        min-width: 100%;
        display: block;
        padding: 0;
    }
    
    .navbar-nav .dropdown:nth-child(4) .dropdown-menu .dropdown-item {
        width: 100%;
        margin: 0;
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

/* Insights Page Styles */
.insights-page {
    background-color: #f8f9fa;
}

/* Navbar Fixes for Insights Pages */
.insights-page .sticky-top {
    background: var(--primary);
    top: 0;
    z-index: 1000;
}

.insights-page .navbar {
    background: var(--primary) !important;
}

.insights-page .container-fluid.sticky-top {
    background: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.insight-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.insight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.insight-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-item:hover .insight-img img {
  transform: scale(1.1);
}

.insight-category {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 15px 15px 10px 15px;
  display: inline-block;
}

.insight-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 15px 15px 15px;
}

.insight-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.insight-title a:hover {
  color: var(--primary);
}

.insight-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.insight-meta {
  flex: 1;
}

.insight-author {
  font-weight: 600;
  color: #333;
  margin: 0;
  font-size: 14px;
}

.insight-date {
  color: #666;
  margin: 0;
  font-size: 12px;
}

.insight-item .d-flex {
  padding: 0 15px 15px 15px;
}

/* Insight Details Styles */
.insight-details {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.insight-details h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.insight-details .meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.insight-details .author-info {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.insight-details .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.insight-details .author-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.insight-details .author-details span {
  color: #666;
  font-size: 14px;
}

.insight-details .content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.insight-details .content p {
  margin-bottom: 20px;
}

/* Comments Section */
.comments-section {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.comments-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.comment-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-form {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

/* Bootstrap Layout Fix - Responsive */
.row {
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Desktop - Duas colunas lado a lado */
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }

  .col-lg-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
}

/* Tablet e Mobile - Uma coluna empilhada */
@media (max-width: 991.98px) {
  .col-lg-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    order: 2;
  }

  .col-lg-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    order: 1;
  }
}

/* Sidebar Styles */
.sidebar {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  margin-bottom: 30px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

/* Sidebar Responsiva - Uma coluna */
@media (max-width: 991.98px) {
  .sidebar {
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    padding: 20px;
    margin-top: 25px;
  }
}

@media (max-width: 575.98px) {
  .sidebar {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
  }
}

.widget-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Search Widget */
.search-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
  border: none;
  padding: 12px 20px;
  font-size: 14px;
}

.search-form .btn {
  border: none;
  padding: 12px 20px;
  background: var(--primary);
}

/* Categories Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--primary);
}

.category-list span {
  background: #e9ecef;
  color: #666;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

/* Recent Posts Widget */
.recent-post-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}

.recent-post-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 5px 0;
}

.recent-post-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: var(--primary);
}

.recent-post-content time {
  color: #666;
  font-size: 12px;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  background: #e9ecef;
  color: #666;
  padding: 6px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: var(--primary);
  color: white;
}

/* Pagination Styles */
.insights-pagination .pagination {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.insights-pagination .page-link {
  border: none;
  padding: 12px 16px;
  color: #666;
  background: #fff;
  transition: all 0.3s ease;
}

.insights-pagination .page-link:hover {
  background: var(--primary);
  color: white;
}

.insights-pagination .page-item.active .page-link {
  background: var(--primary);
  color: white;
}

.insights-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .insight-item {
    margin-bottom: 20px;
  }
  
  .insight-title {
    font-size: 16px;
  }
  
  .sidebar {
    margin-top: 30px;
    padding: 20px;
  }
  
  .widget-item {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* --- Harakawa cleanup: remove gradients, unify buttons, sizing --- */
.section-clean { background-color: #fff; }
.section-soft  { background-color: #f8f9fa; } /* like bg-light */
.no-gradient   { background-image: none !important; background: none !important; }

.btn-primary, .btn-primary:hover, .btn-primary:focus {
  border-radius: .5rem;           /* not pill */
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.btn-lg { padding:.75rem 1.25rem; font-weight:600; }

.h2-tight { font-size: clamp(1.6rem, 2.2vw, 2rem); line-height:1.2; }
.lead-soft { color:#6c757d; }

.card-clean   { border: 1px solid rgba(0,0,0,.08); border-radius:1rem; background:#fff; }
.stat-number  { font-size: clamp(2.25rem, 3.5vw, 2.75rem); font-weight:800; color: var(--bs-primary); }
.stat-text    { color:#6c757d; }

.icon-circle-56 { width:56px; height:56px; border-radius:50%; background:rgba(55,88,249,.1); display:inline-grid; place-items:center; color:var(--bs-primary); }

.overlay-45::before { content:""; position:absolute; inset:0; background:#0b0c2a; opacity:.45; }