@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --bg-0:#19221a;
    --bg-1:#212c22;
    --teal:#013a33;
    --glass-tint: #013a336b;
    --glass-border: #ffffff24;
    --text-hi:#fff;
    --text-lo: #ffffffbd;
    --accent:#4fd1b3;
    --accent-soft:#4fd1b32e;
    --danger:#e2584f;
    --glow:#4fd1b324;
}
    
 
body{
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto;
}

.hero-section {
    background-color: #000;
}

.bg-video {
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0000 0%, #0006 50%, #172219f2 100%);
    z-index: 1;
    pointer-events: none;
}

.content-wrapper {
    z-index: 2;
}

.custom-nav-pill {
    background-color: #fff;
    border: 4px solid #eaeaea;
    box-shadow: 0 8px 24px #00000026;
}

.nav-wrapper {
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.2s ease;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: #347979 !important;
    font-weight: 700 !important;
}

.btn-standard {
    padding: 10px 30px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 14px;
    letter-spacing: 0.5px;
}

.btn-primary-dark {
    background: linear-gradient(135deg, #1a3d3d 0%, #295c5c 100%);
    background-size: 200% auto;
    color: #fff !important;
    border: none;
    transition: 0.4s ease;
}

.btn-primary-dark:hover {
    background-position: right center;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #1a3d3d80;
}

.btn-translucent {
    background: linear-gradient(135deg, #ffffff40 0%, #ffffff0d 100%);
    color: white !important;
    backdrop-filter: blur(8px);
    border: 1px solid #fff3;
    transition: 0.4s ease;
}

.btn-translucent:hover {
    background: linear-gradient(135deg, #ffffff59 0%, #ffffff26 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #ffffff1a;
}

.btn-outline-nav {
    background: transparent;
    color: #333 !important;
    border: 1px solid #ccc;
    transition: 0.4s ease;
}

.btn-outline-nav:hover {
    background: #f8f9fa;
    border-color: #999;
    transform: translateY(-2px);
}

@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { 
    animation-delay: 0.1s; 
}

.delay-2 { 
    animation-delay: 0.3s; 
}

.delay-3 { 
    animation-delay: 0.5s; 
}

.delay-4 { 
    animation-delay: 0.7s; 
}

@keyframes cycle-tag {
    0% { 
        opacity: 0; 
        transform: translateY(15px) scale(0.95); 
        pointer-events: none; 
    }

    2% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        pointer-events: auto; 
    }

    18% { 
        opacity: 1; 
        transform: translateY(-10px) scale(1); 
        pointer-events: auto; 
    }

    20% { 
        opacity: 0; 
        transform: translateY(-15px) scale(0.95); 
        pointer-events: none; 
    }

    100% { 
        opacity: 0; 
        transform: translateY(-15px) scale(0.95); 
        pointer-events: none; 
    }
}

.floating-tag {
    padding: 8px 18px;
    border-radius: 50px;
    z-index: 15; 
    cursor: pointer;
    backdrop-filter: blur(12px);
    border: 1px solid #ffffff40;
    box-shadow: 0 6px 16px #00000026;
    opacity: 0; 
    animation: cycle-tag 15s linear infinite;
    transition: background 0.3s ease;
}

.floating-tag:hover {
    animation-play-state: paused;
    z-index: 25; 
    opacity: 1 !important;
}

.tag-title {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.tag-description {
    bottom: calc(100% + 18px); 
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #141414f2; 
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px #0000004d;
    pointer-events: none; 
    border: 1px solid #ffffff1a;
}

.tag-description::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #141414f2 transparent transparent;
}

.floating-tag:hover .tag-description {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tag-glass-1 { 
    background: #cf03; 
}

.tag-glass-2 { 
    background: #00b38640; 
}

.tag-glass-3 { 
    background: #1a3d3d73; 
}

.tag-glass-4 { 
    background: #8fb30040; 
}

.tag-glass-5 { 
    background: #295c5c59; 
} 

.tag-glass-1:hover { 
    background: #ccff0059; 
}

.tag-glass-2:hover { 
    background: #00b38673; 
}

.tag-glass-3:hover { 
    background: #1a3d3dbf; 
}

.tag-glass-4:hover { 
    background: #8fb30073; 
}

.tag-glass-5:hover { 
    background: #295c5ca6; 
} 

.tag-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.icon-solid-1 { 
    background-color: #cf0; 
}

.icon-solid-2 { 
    background-color: #00b386; 
}

.icon-solid-3 { 
    background-color: #1a3d3d; 
    border: 1px solid #fff6; 
}

.icon-solid-4 { 
    background-color: #8fb300; 
}

.icon-solid-5 { 
    background-color: #295c5c; 
}

.tag-icon::after {
    content: '+';
    position: absolute;
    font-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.icon-solid-1::after, .icon-solid-4::after { 
    color: #0009; 
}

.icon-solid-2::after, .icon-solid-3::after, .icon-solid-5::after { 
    color: #fffc; 
}

.tag-1 { 
    top: 25%; 
    left: 10%; 
    animation-delay: 0s; 
}

.tag-2 { 
    bottom: 40%; 
    right: 12%; 
    animation-delay: 3s; 
}

.tag-3 { 
    bottom: 25%; 
    left: 15%; 
    animation-delay: 6s; 
}

.tag-4 { 
    top: 30%; 
    right: 15%; 
    animation-delay: 9s; 
}

.tag-5 { 
    top: 45%; 
    left: 8%; 
    animation-delay: 12s; 
}

@media (width < 991.98px) {
    .floating-tag {
        display: none !important;
    }
}

/* Second Section */

.problem-section{
  padding:100px 0 90px;
  background:radial-gradient(ellipse at top, var(--bg-1) 0%, var(--bg-0) 65%);
}

.problem-section::before{
  content:"";
  position:absolute; 
  top:-140px; 
  left:50%; 
  transform:translateX(-50%);
  width:640px; height:420px;
  background:radial-gradient(circle, var(--glow) 0%, #4fd1b300 70%);
  filter:blur(6px);
  pointer-events:none;
}
 
.eyebrow{
  gap:8px;
  color:var(--accent); 
  font-size:.8rem;
  letter-spacing:.22em; 
  margin-bottom:18px;
}

.eyebrow .dot{ 
    width:6px; 
    height:6px; 
    border-radius:50%; 
    background:var(--accent); 
    box-shadow:0 0 10px 2px var(--accent-soft); 
}
 
.section-heading{
  font-weight:800; 
  color:var(--text-hi);
  max-width:780px;
}
 
.problem-card{
  position:relative;
  background: linear-gradient(135deg, #ffffff17, #fff0 45%), var(--glass-tint);
  backdrop-filter: blur(18px) saturate(150%);
  border:1px solid var(--glass-border);
  border-radius:22px;
  padding:28px 26px 30px;
  height:100%;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.problem-card:hover{ 
    transform:translateY(-6px); 
    border-color:#ffffff3d; 
    box-shadow:0 24px 44px -18px #0000008c; 
}
 
.card-kicker{ 
  font-size:.78rem;
  letter-spacing:.14em; 
  color:var(--accent); 
  margin-bottom:10px;
}

.card-title{ 
    font-weight:700; 
    color:var(--text-hi); 
    font-size:1.18rem; 
    margin-bottom:10px; 
}

.card-desc{ 
    color:var(--text-lo); 
    font-size:.92rem; 
    line-height:1.6; 
    margin:0; 
}
 
.icon-wrap{ 
    height:190px; 
    margin-bottom:22px; 
}

.iso-scene{ 
    inset:0; 
    perspective:700px; 
}

.ground-glow{ 
  border-radius:50%;
  background:radial-gradient(ellipse, #4fd1b338 0%, #4fd1b300 72%);
  filter:blur(2px); 
  z-index:0;
  width:168px; 
  height:16px; 
  left:50px; 
  top:170px;
}

.iso-rig{ 
  width:220px; 
  height:150px;
  transform-style:preserve-3d;
  transform:rotateX(-25deg) rotateY(-38deg);
  animation:rig-sway 8s ease-in-out infinite;
}

@keyframes rig-sway{
  0%,100%{ 
    transform:rotateX(-25deg) rotateY(-38deg); 
}

  50%{ 
    transform:rotateX(-21deg) rotateY(-31deg); 
}
}

.obj{ 
    transform-style:preserve-3d; 
}

.cube{ 
    position:relative; 
    width:var(--w); 
    height:var(--h); 
    transform-style:preserve-3d; 
}

.cube .f{ 
    position:absolute; 
    top:0; 
    left:0; 
    border:1px solid #ffffff29; 
    border-radius:3px; 
    background:var(--tone); 
}

.cube .f-top{  
    width:var(--w); 
    height:var(--d); 
    transform:rotateX(90deg) translateZ(calc(var(--h)/2)); 
    filter:brightness(1.5); 
}

.cube .f-front{ 
    width:var(--w); 
    height:var(--h); 
    transform:translateZ(calc(var(--d)/2)); 
    filter:brightness(1); 
}

.cube .f-side{ 
    width:var(--d); 
    height:var(--h); 
    transform:rotateY(90deg) translateZ(calc(var(--w)/2)); 
    filter:brightness(.55); 
}
 
.badge2d{
  border-radius:50%;
  background:#ffffff1a; 
  border:1px solid #ffffff38;
  color:var(--text-hi); 
  z-index:5;
  backdrop-filter: blur(6px);
}
 
@media (prefers-reduced-motion: reduce){
  .iso-rig, .obj, .badge2d, .cube{ 
    animation:none !important; 
}
}

.tower-bob{ 
    animation:tower-bob 3.4s ease-in-out infinite; 
}

@keyframes tower-bob{ 
    0%,100%{ 
        transform:translateY(0); 
    } 
    
    50%{ 
        transform:translateY(-7px); 
    } 
}

.gap-divider{
  width:0; 
  border-left:1px dashed #ffffff38;
  z-index:2;
}

.dept-badge{ 
    width:24px; 
    height:24px; 
    font-size:.72rem; 
}
 
.ticket-drop{ 
    animation:ticket-drop 3.6s ease-in-out infinite; 
}

@keyframes ticket-drop{
  0%{ 
    transform:translateY(-46px); 
    opacity:0; 
}

  22%{ 
    opacity:1; 
}

  40%{ 
    transform:translateY(0); 
    opacity:1; 
}

  85%{ 
    transform:translateY(0); 
    opacity:1; 
}

  100%{ 
    transform:translateY(0); 
    opacity:0; 
}
}

.sla-line{
  left:6px; 
  right:14px; 
  height:0;
  border-top:2px dashed #e2584fa6;
  z-index:2;
  top:66px;
}

.sla-label{
  font-size:.6rem; 
  letter-spacing:.1em; 
  color:var(--danger);
  font-weight:700; 
  z-index:2;
  top:56px; 
  right:10px;
}

.hourglass-badge{ 
    width:28px; 
    height:28px; 
    font-size:.85rem; 
    animation:hourglass-flip 3s ease-in-out infinite; 
    top:6px; 
    right:10px;
}

@keyframes hourglass-flip{ 
    0%,40%{ 
        transform:rotate(0deg); 
    }
    
    50%,90%{ 
        transform:rotate(180deg); 
    } 
    
    100%{ 
        transform:rotate(180deg); 
    } 
}

.flag-badge{
  width:20px; 
  height:20px; 
  font-size:.65rem; 
  color:#fff;
  background:var(--danger); 
  border-color:#fff6;
  animation:flag-pulse 3.6s ease-in-out infinite;
  top:34px; 
  left:150px;
}

@keyframes flag-pulse{ 
    0%,100%{ 
        box-shadow:0 0 0 0 #e2584f80;
    } 
    
    50%{ 
        box-shadow:0 0 0 6px #e2584f00;
    } 
}
 
.link-left{ 
    animation:link-left 3.2s ease-in-out infinite; 
}

.link-right{ 
    animation:link-right 3.2s ease-in-out infinite; 
}

@keyframes link-left{ 
    0%,100%{ 
        transform:translateX(0) rotate(-4deg); 
    } 
    
    50%{ 
        transform:translateX(-9px) rotate(-10deg); 
    } 
}

@keyframes link-right{ 
    0%,100%{ 
        transform:translateX(0) rotate(4deg); 
    }
     
    50%{ 
        transform:translateX(9px) rotate(10deg); 
    } 
}

.question-badge{ 
    width:28px; 
    height:28px; 
    font-size:.85rem; 
    animation:question-pulse 3.2s ease-in-out infinite; 
    top:14px; 
    left:50%;
}

@keyframes question-pulse{
  0%,100%{ 
    opacity:.5; 
    transform:translate(-50%,0) scale(.9); 
}

  50%{ 
    opacity:1; 
    transform:translate(-50%,0) scale(1.08); 
}
}

.search-badge{ 
    width:28px; 
    height:28px; 
    font-size:.85rem; 
    animation:search-sway 4.5s ease-in-out infinite; 
    bottom:26px; 
    right:26px;
}

@keyframes search-sway{ 
    0%,100%{ 
        transform:translateX(0) rotate(-6deg); 
    } 
    
    50%{ 
        transform:translateX(6px) rotate(6deg); 
        } 
        
    }

    .tower-1{
        left:10px; 
        top:88px;
    }

    .tower-2{
        left:56px; 
        top:72px;
    }

    .tower-3{
        left:102px; 
        top:94px;
    }

    .tower-4{
        left:148px; 
        top:80px;
    }

    .bob-1{
        --w:24px;
        --h:42px;
        --d:24px;
        --tone:#0f4a40; 

        animation-delay:0s;
    }

    .bob-2{
        --w:24px;
        --h:58px;
        --d:24px;
        --tone:#136b5c; 

        animation-delay:.5s;
    }

    .bob-3{
        --w:24px;
        --h:36px;
        --d:24px;
        --tone:#1c8a76; 

        animation-delay:1s;
    }

    .bob-4{
        --w:24px;
        --h:50px;
        --d:24px;
        --tone:#2ba68f; 

        animation-delay:1.5s;
    }

    .claims{
        left:56px; 
        top:82px;
    }

    .legal{
        left:102px; 
        top:66px;
    }

    .oversight{
        left:148px; 
        top:88px;
    }

    .service{
        left:194px; 
        top:74px;
    }

    .layer-1{
        left:70px; 
        top:112px;
    }

    .cube-1{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#0f4a40;
    }

    .layer-2{
        left:74px; 
        top:98px;
    }

    .cube-2{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#136b5c;
    }

    .layer-3{
        left:68px; 
        top:84px;
    }

    .cube-3{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#17806e;
    }

    .layer-4{
        left:73px; 
        top:70px;
    }

    .cube-4{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#1c9681;
    }

    .layer-5{
        left:69px; 
        top:56px;
    }

    .cube-5{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#23ad94;
    }

    .layer-6{
        left:71px; 
        top:40px;
    }

    .cube-6{
        --w:80px;
        --h:9px;
        --d:44px;
        --tone:#2ba68f;
    }

    .trust-layer-1{
        left:65px; 
        top:104px;
    }

    .trust-cube-1{
        --w:90px;
        --h:14px;
        --d:56px;
        --tone:#0f4a40;
    }

    .trust-layer-2{
        left:82px; 
        top:64px;
    }

    .trust-cube-2{
        --w:18px;
        --h:18px;
        --d:18px;
        --tone:#58c7ae;
    }

    .trust-layer-3{
        left:112px; 
        top:64px;
    }

    .trust-cube-3{
        --w:18px;
        --h:18px;
        --d:18px;
        --tone:#58c7ae;
    }

    .divider-1{
        left:50px; 
        top:30px; 
        height:100px;
    }

    .divider-2{
        left:96px; 
        top:30px; 
        height:100px;
    }

    .divider-3{
        left:142px; 
        top:30px; 
        height:100px;
    }

/* Third Section */

.scroll-anim-section {
    padding: 5rem 0;
}

.sticky-wrapper {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
}

.anim-title { 
    font-size: 1.5rem; 
}

.anim-desc { 
    font-size: 1rem; 
    line-height: 1.5; 
}

.mobile-text-pad { 
    padding-left: 10%; 
    padding-right: 10%; 
}

@media (width > 992px) {
    .anim-title { 
        font-size: 2.5rem; 
    }

    .mobile-text-pad {
        padding-left: 3rem !important; 
        padding-right: 0 !important;
    }
}

.box-container {
    align-items: flex-end;
    max-width: 3000px; 
    height: auto;
    min-height: 360px;
    padding-bottom: 200px;
}

.box-inside {
    bottom: 30px;
    width: 75%;
    height: 150px;
    background: #f0f3f8;
    border-radius: 10px;
    z-index: 1;
}

.box-front {
    position: absolute !important;
    bottom: 0;
    height: 140px; 
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 -5px 25px #0000000d;
    width: 450px !important;
}

.box-flap-left, .box-flap-right {
    position: absolute;
    top: -25px;
    width: 130px;
    height: 50px;
    background: #f8f9faf2;
    z-index: -1;
}

.box-flap-left {
    left: -15px;
    transform: rotate(-15deg);
    clip-path: polygon(0 100%, 100% 100%, 80% 0, 0 0);
}

.box-flap-right {
    right: -15px;
    transform: rotate(15deg) scaleX(-1);
    clip-path: polygon(0 100%, 100% 100%, 80% 0, 0 0);
}

.box-app-icon {
    bottom: -20px;
    width: 60px;
    height: 60px;
    background: #013b34; 
    border-radius: 16px;
}

.cards-wrapper {
    position: relative;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    z-index: 5; 
}

.feature-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 16px;
    opacity: 1;
    transform: none;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 35px #013b3426 !important;
}

.feature-card h6 {
    font-weight: 700;
    color: #013b34; 
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.feature-card p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
    padding-left: 2rem; 
}

@media (width > 992px) {
    .box-container { 
        max-width: 550px; 
        min-height: 400px;
    }

    .cards-wrapper { 
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .feature-card { 
        padding: 1.5rem 1.3rem; 
    }

    .feature-card h6 { 
        font-size: 0.97rem; 
        margin-bottom: 0.25rem; 
    }

    .feature-card p { 
        font-size: 0.85rem; 
        line-height: 1.4; 
    }
    
    .box-flap-left, .box-flap-right {
        width: 180px;
        height: 60px;
        top: -30px;
    }
}

.x-verdict-row {
    transition: background-color 0.2s ease-in-out, padding 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .x-verdict-row:hover {
    background-color: #2d6a4f !important;
    color: #fff !important; 
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom-color: #2d6a4f !important;
  }

  .x-verdict-row:hover * {
    color: #fff !important;
  }

  .lifecycle-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  .lifecycle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1rem #0000000d !important;
  }

  .text-brand-primary {
    color: #2d6a4f !important;
  }
  
  .heading-tight {
    letter-spacing: -1px;
  }
  
  .step-circle {
    width: 40px; 
    height: 40px; 
    color: #2d6a4f;
  }

  
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px -3px #0000001a !important;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    background-color: #e8f0ec;
    color: #2d6a4f;
  }

  .ops-layout {
    display: flex;
    flex-direction: row;
    gap: 0.90rem;
  }

  @media (width < 768px) {
    .ops-layout {
      flex-direction: column;
    }
  }

  .audit-wrapper {
    background-color: #0f172a;
  }
  
  .brand-accent {
    color: #2d6a4f !important;
  }
  
  .audit-step {
    border-left: 2px solid #ffffff1a;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  
  .audit-step:hover {
    border-left-color: #2d6a4f;
    transform: translateX(5px);
  }

  .text-light-muted {
    color: #94a3b8 !important;
  }

  .footer-logo{
    width: 150px;
  }

  .icon-bg{
    background-color: #2d6a4f;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .text-success{
    color: #013b34 !important;
  }

  .bg-success{
    background-color: #013b34 !important;
  }

  .bg-badge{
    background-color: #013b341b !important;
  }

  .toogle-bg{
    background-color: #013b34 !important;
  }

    .bento-grid { 
    gap: 0.50rem; 
  }
  
  @media (width > 992px) {
    .bento-grid { 
      grid-template-columns: repeat(3, 1fr) !important; 
      grid-auto-rows: minmax(140px, auto) !important; 
    }

    .bento-intake { 
      grid-area: 1 / 1 / 4 / 2 !important; 
    }

    .bento-triage { 
      grid-area: 1 / 2 / 2 / 3 !important; 
    }

    .bento-evidence { 
      grid-area: 2 / 2 / 3 / 3 !important; 
    }

    .bento-verdict { 
      grid-area: 1 / 3 / 3 / 4 !important; 
    }

    .bento-audit { 
      grid-area: 3 / 2 / 4 / 4 !important; 
    }
  }

  .icon-box { 
    width: 48px; 
    height: 48px; 
  }

  .hover-lift { 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }

  .hover-lift:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px -4px #00000014 !important; 
  }

  .pattern-grid::before {
    content: ""; 
    position: absolute; 
    inset: -10% -10% 40% 40%;
    background: linear-gradient(#e2e8f0 1.5px, transparent 1.5px), linear-gradient(90deg, #e2e8f0 1.5px, transparent 1.5px);
    background-size: 32px 32px; 
    opacity: 0.6; 
    transform: rotate(5deg); 
    pointer-events: none; 
    z-index: 0;
  }

  .pattern-dots::before {
    content: ""; 
    position: absolute; 
    inset: 0 0 0 40%;
    background: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 16px 16px; 
    opacity: 0.35; 
    pointer-events: none; 
    z-index: 0;
  }

  .bento-intake, .bento-triage, .bento-evidence, .bento-verdict, .bento-audit{
    border: 5px solid #f0f0f0 !important;
  }

  .trust-wrapper {
    background-color: #121212;
  }

  .trust-glow {
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #10b98126 0%, #12121200 70%);
    pointer-events: none;
    z-index: 0;
  }

  .feature-row {
    background: #ffffff08;
    border: 1px solid #ffffff0d;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .feature-row:hover {
    background: #ffffff0f;
    border-color: #10b9814d;
  }

  .trust-icon-box {
    width: 52px;
    height: 52px;
    background: #10b9811a;
    color: #10b981;
    border-radius: 0.75rem;
    font-size: 1.25rem;
  }

  .btn-green-glow {
    background-color: #10b981;
    color: #121212;
    border: none;
    font-weight: 600;
    box-shadow: 0 0 20px #10b9814d;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
  }
  
  .btn-green-glow:hover {
    box-shadow: 0 0 30px #10b98180;
    transform: translateY(-2px);
    color: #121212;
  }

  .btn-outline-custom {
    color: #fff;
    border: 1px solid #fff3;
    font-weight: 500;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .btn-outline-custom:hover {
    border-color: #ffffff80;
    background-color: #ffffff0d;
    color: #fff;
  }

  .feature-icon{
    background-color: #1a3d3d;
    width: 45px !important;
    height: 45px !important;
}

.dropdown-item{
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background-color: #f0f0f0;
  margin: 5px 0;
}

.dropdown-item:hover{
  background-color: #2d6a4f;
  color: #fff;
}

.dropdown-menu{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    top: 50px !important;
}

@media (width < 768px) {
  .bg-video, .hero-section {
    height: 110vh !important;
  }

  /* Keep the home hero copy vertically centred, matching the other mobile heroes. */
  .home-hero {
    height: 100svh !important;
    min-height: 100svh;
    align-items: center !important;
    padding-bottom: 0 !important;
  }

  .home-hero .bg-video {
    height: 100svh !important;
  }

  .home-hero .content-wrapper {
    margin-bottom: 0 !important;
  }

  .home-hero .content-wrapper > .row > div > .d-flex {
    flex-wrap: wrap;
  }
}

.font-ent-badge{
  font-size: 10px;
}

.module-cardent .icon-wrapperent {
    width: 48px;
    height: 48px;
    background-color: #effff0; 
    color: #1a3d3d; 
    font-size: 1.25rem;
}

.section-padding {
    padding: 60px 0;
}

.how-it-works-section{
    padding-top: 120px !important;
}

form .form-control{
    border-radius: 12px;
    background: #ededed;
    border: none;
    font-size: 15px;
    padding: 15px;
}

@media (width < 768px) {
  .box-front {
      width: 300px !important;
  }
}

.hero-wrapper {
    background: linear-gradient(#ffffff13, #fffa), url('/assets/images/white-bg-verdict.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.evidence-blinker {
    animation: blinker 1.2s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

@media (width < 991.98px) {
    html.menu-open,
    body.menu-open,
    html:has(.navbar-content.show),
    body:has(.navbar-content.show) {
        overflow: hidden;
        overscroll-behavior: none;
    }

    .custom-toggler span { 
        display: block; 
        height: 2px; 
        width: 25px; 
        background: #212529; 
        margin: 5px 0; 
        transition: 0.3s; 
    }

    .custom-toggler[aria-expanded="true"] span:nth-child(1) { 
        transform: translateY(7px) rotate(45deg); 
    }

    .custom-toggler[aria-expanded="true"] span:nth-child(2) { 
        opacity: 0; 
    }

    .custom-toggler[aria-expanded="true"] span:nth-child(3) { 
        transform: translateY(-7px) rotate(-45deg); 
    }

    .navbar-content {
        position: fixed; 
        top: 75px; 
        left: 10px; 
        width: 98vw; 
        height: 85vh; 
        background: #fff; 
        padding: 1rem; 
        overflow-y: auto; 
        border-radius: 15px; 
        border: 3px solid #dfdfdf;
    }

    .navbar-nav { 
        align-items: flex-start !important; 
        width: 100%; 
    }

    .nav-item { 
        width: 100%; 
        text-align: left; 
        margin-bottom: 1rem; 
    }

    .dropdown-menu { 
        text-align: left; 
        border: none; 
        padding-left: 1rem; 
    }

    .navbar-content .d-flex {
        flex-direction: column; 
        width: 100%; 
        margin-top: 1.5rem !important; 
    }

    .navbar-content .btn-standard {
        width: 100%; 
        text-align: center; 
        display: block; 
        margin-bottom: 0.5rem; 
    }

    .navbar-content {
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out; 
    }
    
    .navbar-content.collapse:not(.show) {
        display: block !important; 
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px); 
    }

    .navbar-content.collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-content.collapsing {
        height: 85vh !important; 
        opacity: 0.5;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
}

.navbar-content .custom-social-row {
    flex-direction: row !important;
}

body, html{
    overflow-x: hidden !important;
}